diff options
author | Måns Rullgård <mans@mansr.com> | 2007-06-16 22:58:43 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2007-06-16 22:58:43 +0000 |
commit | c2d08dc0d78e85e6a45abb33e587b8a66a2de754 (patch) | |
tree | 20cea5fcc8aa1f191fcb3206819aedc35fecd0b6 /libavcodec/mpegaudioenc.c | |
parent | 41e4c556e93156cab184e5af9b246a4cf07c54ab (diff) | |
download | ffmpeg-c2d08dc0d78e85e6a45abb33e587b8a66a2de754.tar.gz |
move a couple of macros and structs to mpegaudio.h
Originally committed as revision 9343 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegaudioenc.c')
-rw-r--r-- | libavcodec/mpegaudioenc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/mpegaudioenc.c b/libavcodec/mpegaudioenc.c index d0506c6b70..ede44927c2 100644 --- a/libavcodec/mpegaudioenc.c +++ b/libavcodec/mpegaudioenc.c @@ -31,7 +31,6 @@ /* currently, cannot change these constants (need to modify quantization stage) */ #define MUL(a,b) (((int64_t)(a) * (int64_t)(b)) >> FRAC_BITS) -#define FIX(a) ((int)((a) * (1 << FRAC_BITS))) #define SAMPLES_BUF_SIZE 4096 |