diff options
author | Mans Rullgard <mans@mansr.com> | 2012-09-13 19:35:18 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2012-12-09 15:52:01 +0000 |
commit | 30b39164256999efc8d77edc85e2e0b963c24834 (patch) | |
tree | 0b927b8bbcf6cf72206db8ef84894227bb0520e0 /libavcodec/ac3dsp.c | |
parent | b8f3ab8e6a7ce3627764da53b809628c828d4047 (diff) | |
download | ffmpeg-30b39164256999efc8d77edc85e2e0b963c24834.tar.gz |
ac3dec: make downmix() take array of pointers to channel data
Diffstat (limited to 'libavcodec/ac3dsp.c')
-rw-r--r-- | libavcodec/ac3dsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ac3dsp.c b/libavcodec/ac3dsp.c index 7e7a80802d..ef19f6a449 100644 --- a/libavcodec/ac3dsp.c +++ b/libavcodec/ac3dsp.c @@ -171,7 +171,7 @@ static void ac3_extract_exponents_c(uint8_t *exp, int32_t *coef, int nb_coefs) } } -static void ac3_downmix_c(float (*samples)[256], float (*matrix)[2], +static void ac3_downmix_c(float **samples, float (*matrix)[2], int out_ch, int in_ch, int len) { int i, j; |