From 30b39164256999efc8d77edc85e2e0b963c24834 Mon Sep 17 00:00:00 2001 From: Mans Rullgard Date: Thu, 13 Sep 2012 19:35:18 +0100 Subject: ac3dec: make downmix() take array of pointers to channel data --- libavcodec/ac3dsp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/ac3dsp.c') 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; -- cgit v1.2.3