summaryrefslogtreecommitdiff
path: root/libavcodec/mpegaudio.c
diff options
context:
space:
mode:
authorRoberto Togni <r_togni@tiscali.it>2005-10-18 20:16:43 +0000
committerRoberto Togni <r_togni@tiscali.it>2005-10-18 20:16:43 +0000
commitd9b1c197e5f99655328b713b7100e3125139546a (patch)
tree341d43d7b40c5533c6f35db90c13050a2ff8200b /libavcodec/mpegaudio.c
parentea7e68b1e2e3983198cac5814720d6f7655299bc (diff)
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.c2
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)))