summaryrefslogtreecommitdiffstats
path: root/libavcodec/mathops.h
diff options
context:
space:
mode:
authorMans Rullgard <mans@mansr.com>2011-05-16 21:31:06 +0100
committerMans Rullgard <mans@mansr.com>2011-05-16 21:34:39 +0100
commit005db470115ebe2c973688bed9695356f487d674 (patch)
tree9ea8d9797e07b4a3d85b6ae8abecbe86fd918a37 /libavcodec/mathops.h
parentc540061f3f552daa3724289b59b0a7a3692ad740 (diff)
downloadffmpeg-streaming-005db470115ebe2c973688bed9695356f487d674.zip
ffmpeg-streaming-005db470115ebe2c973688bed9695356f487d674.tar.gz
mathops: remove ancient confusing comment
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/mathops.h')
-rw-r--r--libavcodec/mathops.h3
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;
}
OpenPOWER on IntegriCloud