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.h | |
parent | b8f3ab8e6a7ce3627764da53b809628c828d4047 (diff) | |
download | ffmpeg-30b39164256999efc8d77edc85e2e0b963c24834.tar.gz |
ac3dec: make downmix() take array of pointers to channel data
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 723d1096ae..882eb7681a 100644 --- a/libavcodec/ac3dsp.h +++ b/libavcodec/ac3dsp.h @@ -126,7 +126,7 @@ typedef struct AC3DSPContext { void (*extract_exponents)(uint8_t *exp, int32_t *coef, int nb_coefs); - 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; |