From 40914d97ccf78ec26eabc9150fc6180ebce9dcd9 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 13 May 2010 18:06:44 +0000 Subject: [PATCH] 1.0 and the resulting exactly representable value must be marked as float as well, gcc is hopelessly trash. Originally committed as revision 23119 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/mpegaudiodec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/mpegaudiodec.c b/libavcodec/mpegaudiodec.c index 3196673..7b3f6f4 100644 --- a/libavcodec/mpegaudiodec.c +++ b/libavcodec/mpegaudiodec.c @@ -40,7 +40,7 @@ #include "mathops.h" #if CONFIG_FLOAT -# define SHR(a,b) ((a)*(1.0/(1<<(b)))) +# define SHR(a,b) ((a)*(1.0f/(1<<(b)))) # define compute_antialias compute_antialias_float # define FIXR_OLD(a) ((int)((a) * FRAC_ONE + 0.5)) # define FIXR(x) ((float)(x)) -- 2.7.4