From 86433cc6f5fced88de1a19c837b42fe625516069 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Tue, 11 May 2010 14:49:48 +0000 Subject: [PATCH] Remove unused FRAC_RND() macro from mpegaudiodec.c. Originally committed as revision 23086 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/mpegaudiodec.c | 1 - 1 file changed, 1 deletion(-) diff --git a/libavcodec/mpegaudiodec.c b/libavcodec/mpegaudiodec.c index 40383a8143..0655d41d82 100644 --- a/libavcodec/mpegaudiodec.c +++ b/libavcodec/mpegaudiodec.c @@ -41,7 +41,6 @@ /* WARNING: only correct for posititive numbers */ #define FIXR(a) ((int)((a) * FRAC_ONE + 0.5)) -#define FRAC_RND(a) (((a) + (FRAC_ONE/2)) >> FRAC_BITS) #define FIXHR(a) ((int)((a) * (1LL<<32) + 0.5))