[FFmpeg-cvslog] mathops: remove ancient confusing comment

Mans Rullgard git at videolan.org
Tue May 17 05:19:50 CEST 2011


ffmpeg | branch: master | Mans Rullgard <mans at mansr.com> | Mon May 16 21:31:06 2011 +0100| [005db470115ebe2c973688bed9695356f487d674] | committer: Mans Rullgard

mathops: remove ancient confusing comment

Signed-off-by: Mans Rullgard <mans at mansr.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=005db470115ebe2c973688bed9695356f487d674
---

 libavcodec/mathops.h |    3 ---
 1 files changed, 0 insertions(+), 3 deletions(-)

diff --git a/libavcodec/mathops.h b/libavcodec/mathops.h
index 547bc1a..d74bc1e 100644
--- a/libavcodec/mathops.h
+++ b/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;
 }



More information about the ffmpeg-cvslog mailing list