diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2011-01-13 15:28:06 -0500 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-01-22 17:53:28 +0000 |
commit | 3b924294ea0ab891cf28fb30f26962a7960f7f37 (patch) | |
tree | 8ba0fef5760cd4f4f863ac70d627f930863038e8 /libavcodec/ac3enc_fixed.c | |
parent | 6eabb0d3ad42b91c1b4c298718c29961f7c1653a (diff) | |
download | ffmpeg-3b924294ea0ab891cf28fb30f26962a7960f7f37.tar.gz |
ac3enc: use dsputil functions in apply_window()
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/ac3enc_fixed.c')
-rw-r--r-- | libavcodec/ac3enc_fixed.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ac3enc_fixed.c b/libavcodec/ac3enc_fixed.c index 3723b08b96..dfd218ec72 100644 --- a/libavcodec/ac3enc_fixed.c +++ b/libavcodec/ac3enc_fixed.c @@ -251,7 +251,7 @@ static void mdct512(AC3MDCTContext *mdct, int32_t *out, int16_t *in) /** * Apply KBD window to input samples prior to MDCT. */ -static void apply_window(int16_t *output, const int16_t *input, +static void apply_window(DSPContext *dsp, int16_t *output, const int16_t *input, const int16_t *window, int n) { int i; |