summaryrefslogtreecommitdiff
path: root/libavcodec/ac3enc.c
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2011-03-20 13:31:36 -0400
committerJustin Ruggles <justin.ruggles@gmail.com>2011-03-22 21:08:30 -0400
commite6e9823488b4cf42778411f1239592f0787e121e (patch)
treedcdb0a902e921957a3e0b912c56a73d7fb67422d /libavcodec/ac3enc.c
parente971d81364e93feae8c399075a3be2643192e031 (diff)
Add apply_window_int16() to DSPContext with x86-optimized versions and use it
in the ac3_fixed encoder.
Diffstat (limited to 'libavcodec/ac3enc.c')
-rw-r--r--libavcodec/ac3enc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ac3enc.c b/libavcodec/ac3enc.c
index 202e611cc0..6a7610c322 100644
--- a/libavcodec/ac3enc.c
+++ b/libavcodec/ac3enc.c
@@ -167,7 +167,7 @@ static av_cold int mdct_init(AVCodecContext *avctx, AC3MDCTContext *mdct,
static void mdct512(AC3MDCTContext *mdct, CoefType *out, SampleType *in);
static void apply_window(DSPContext *dsp, SampleType *output, const SampleType *input,
- const SampleType *window, int n);
+ const SampleType *window, unsigned int len);
static int normalize_samples(AC3EncodeContext *s);