Browse Source

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
tags/v0.6
Diego Biurrun 17 years ago
parent
commit
27127202d6
1 changed files with 0 additions and 2 deletions
  1. +0
    -2
      libavcodec/ac3enc.c

+ 0
- 2
libavcodec/ac3enc.c 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;\


Loading…
Cancel
Save