mathops: remove ancient confusing comment
authorMans Rullgard <mans@mansr.com>
Mon, 16 May 2011 20:31:06 +0000 (21:31 +0100)
committerMans Rullgard <mans@mansr.com>
Mon, 16 May 2011 20:34:39 +0000 (21:34 +0100)
Signed-off-by: Mans Rullgard <mans@mansr.com>
libavcodec/mathops.h

index 547bc1a..d74bc1e 100644 (file)
@@ -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;
 }