Remove duplicated MUL16 macro definition, fixes the warning:

libavcodec/ac3enc.c:119:1: warning: "MUL16" redefined

Originally committed as revision 17832 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun 2009-03-05 22:17:12 +00:00
parent 35690321a7
commit 27127202d6

View File

@ -116,8 +116,6 @@ static av_cold void fft_init(int ln)
qim = (by - ay) >> 1;\
}
#define MUL16(a,b) ((a) * (b))
#define CMUL(pre, pim, are, aim, bre, bim) \
{\
pre = (MUL16(are, bre) - MUL16(aim, bim)) >> 15;\