summaryrefslogtreecommitdiff
path: root/libavcodec/ac3dsp.c
diff options
context:
space:
mode:
authorMans Rullgard <mans@mansr.com>2012-09-13 19:35:18 +0100
committerMans Rullgard <mans@mansr.com>2012-12-09 15:52:01 +0000
commit30b39164256999efc8d77edc85e2e0b963c24834 (patch)
tree0b927b8bbcf6cf72206db8ef84894227bb0520e0 /libavcodec/ac3dsp.c
parentb8f3ab8e6a7ce3627764da53b809628c828d4047 (diff)
ac3dec: make downmix() take array of pointers to channel data
Diffstat (limited to 'libavcodec/ac3dsp.c')
-rw-r--r--libavcodec/ac3dsp.c2
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;