diff options
author | Roberto Togni <r_togni@tiscali.it> | 2005-10-18 20:16:43 +0000 |
---|---|---|
committer | Roberto Togni <r_togni@tiscali.it> | 2005-10-18 20:16:43 +0000 |
commit | d9b1c197e5f99655328b713b7100e3125139546a (patch) | |
tree | 341d43d7b40c5533c6f35db90c13050a2ff8200b /libavcodec/mpegaudio.c | |
parent | ea7e68b1e2e3983198cac5814720d6f7655299bc (diff) | |
download | ffmpeg-d9b1c197e5f99655328b713b7100e3125139546a.tar.gz |
QDM2 compatible decoder
Originally committed as revision 4649 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegaudio.c')
-rw-r--r-- | libavcodec/mpegaudio.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/mpegaudio.c b/libavcodec/mpegaudio.c index 190aa1590c..7a0b0a31ce 100644 --- a/libavcodec/mpegaudio.c +++ b/libavcodec/mpegaudio.c @@ -28,8 +28,6 @@ /* currently, cannot change these constants (need to modify quantization stage) */ -#define FRAC_BITS 15 -#define WFRAC_BITS 14 #define MUL(a,b) (((int64_t)(a) * (int64_t)(b)) >> FRAC_BITS) #define FIX(a) ((int)((a) * (1 << FRAC_BITS))) |