mathops: remove ancient confusing comment

Signed-off-by: Mans Rullgard <mans@mansr.com>
pull/2/head
Mans Rullgard 14 years ago
parent c540061f3f
commit 005db47011
  1. 3
      libavcodec/mathops.h

@ -45,9 +45,6 @@
#endif
#ifndef MULH
//gcc 3.4 creates an incredibly bloated mess out of this
//# define MULH(a,b) (((int64_t)(a) * (int64_t)(b))>>32)
static av_always_inline int MULH(int a, int b){
return ((int64_t)(a) * (int64_t)(b))>>32;
}

Loading…
Cancel
Save