From 005db470115ebe2c973688bed9695356f487d674 Mon Sep 17 00:00:00 2001 From: Mans Rullgard Date: Mon, 16 May 2011 21:31:06 +0100 Subject: mathops: remove ancient confusing comment Signed-off-by: Mans Rullgard --- libavcodec/mathops.h | 3 --- 1 file changed, 3 deletions(-) (limited to 'libavcodec/mathops.h') diff --git a/libavcodec/mathops.h b/libavcodec/mathops.h index 547bc1aa4f..d74bc1ed70 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; } -- cgit v1.2.1