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.h | |
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.h')
-rw-r--r-- | libavcodec/ac3dsp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ac3dsp.h b/libavcodec/ac3dsp.h index 7269c5744d..bafbc8995e 100644 --- a/libavcodec/ac3dsp.h +++ b/libavcodec/ac3dsp.h @@ -132,7 +132,7 @@ typedef struct AC3DSPContext { void (*sum_square_butterfly_float)(float sum[4], const float *coef0, const float *coef1, int len); - void (*downmix)(float (*samples)[256], float (*matrix)[2], int out_ch, + void (*downmix)(float **samples, float (*matrix)[2], int out_ch, int in_ch, int len); } AC3DSPContext; |