diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-12-10 02:06:50 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-12-10 02:06:50 +0100 |
commit | a93369845783a5a63e713c143cab2c550a6ccd82 (patch) | |
tree | 582b1a0ac80490ef54f09287c5613dfdb6154ca6 /libavcodec/ac3dsp.c | |
parent | b7d8484f272b7a5a2ed9db76d5182dbd6e3e6992 (diff) | |
parent | 30b39164256999efc8d77edc85e2e0b963c24834 (diff) | |
download | ffmpeg-a93369845783a5a63e713c143cab2c550a6ccd82.tar.gz |
Merge commit '30b39164256999efc8d77edc85e2e0b963c24834'
* commit '30b39164256999efc8d77edc85e2e0b963c24834':
ac3dec: make downmix() take array of pointers to channel data
Conflicts:
libavcodec/ac3dsp.c
libavcodec/ac3dsp.h
Merged-by: Michael Niedermayer <michaelni@gmx.at>
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 927741183f..6df3a68a45 100644 --- a/libavcodec/ac3dsp.c +++ b/libavcodec/ac3dsp.c @@ -214,7 +214,7 @@ static void ac3_sum_square_butterfly_float_c(float sum[4], } } -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; |