diff options
author | Mans Rullgard <mans@mansr.com> | 2012-08-23 18:47:49 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2012-08-24 10:45:39 +0100 |
commit | 2e2b8ef8e0b2b407fd43914bdf83f46084954f6d (patch) | |
tree | 9ace374eb2deec663b555ea133c2d3589665b6f5 /libavcodec/mpegaudioenc.c | |
parent | 4d7adec8bd211d3900563955f2e0863dfb3bf7e8 (diff) | |
download | ffmpeg-2e2b8ef8e0b2b407fd43914bdf83f46084954f6d.tar.gz |
mpegaudio: move ff_mpa_enwindow to a separate file
This table is used only by mpegaudiodsp and mpegaudioenc. Separating
it allows dropping some dependencies from mpc[78] and qdm2.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/mpegaudioenc.c')
-rw-r--r-- | libavcodec/mpegaudioenc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/mpegaudioenc.c b/libavcodec/mpegaudioenc.c index 36777d4804..ab9e0fa54d 100644 --- a/libavcodec/mpegaudioenc.c +++ b/libavcodec/mpegaudioenc.c @@ -34,6 +34,7 @@ #define WFRAC_BITS 14 /* fractional bits for window */ #include "mpegaudio.h" +#include "mpegaudiodsp.h" /* currently, cannot change these constants (need to modify quantization stage) */ |