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/mpegaudiodsp.h | |
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/mpegaudiodsp.h')
-rw-r--r-- | libavcodec/mpegaudiodsp.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/mpegaudiodsp.h b/libavcodec/mpegaudiodsp.h index c24ea4117e..2997b3fefb 100644 --- a/libavcodec/mpegaudiodsp.h +++ b/libavcodec/mpegaudiodsp.h @@ -40,6 +40,8 @@ void ff_mpadsp_init(MPADSPContext *s); extern int32_t ff_mpa_synth_window_fixed[]; extern float ff_mpa_synth_window_float[]; +extern const int32_t ff_mpa_enwindow[257]; + void ff_mpa_synth_filter_fixed(MPADSPContext *s, int32_t *synth_buf_ptr, int *synth_buf_offset, int32_t *window, int *dither_state, |