summaryrefslogtreecommitdiff
path: root/libavcodec/ac3dec.h
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2017-03-22 11:11:28 +0100
committerClément Bœsch <u@pkh.me>2017-03-22 11:29:46 +0100
commite39d4ff150f45d82aabafa5a34f5c9ec7a829d15 (patch)
tree907c884f1148517e9cd97bf647bde28825d217ea /libavcodec/ac3dec.h
parent8ddadf56f621ddaeaa877e5739c03645ee7e57f8 (diff)
parent43717469f9daa402f6acb48997255827a56034e9 (diff)
downloadffmpeg-e39d4ff150f45d82aabafa5a34f5c9ec7a829d15.tar.gz
Merge commit '43717469f9daa402f6acb48997255827a56034e9'
* commit '43717469f9daa402f6acb48997255827a56034e9': ac3dsp: Reverse matrix in/out order in downmix() Merged-by: Clément Bœsch <u@pkh.me>
Diffstat (limited to 'libavcodec/ac3dec.h')
-rw-r--r--libavcodec/ac3dec.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ac3dec.h b/libavcodec/ac3dec.h
index 495e9a69a1..bac661c167 100644
--- a/libavcodec/ac3dec.h
+++ b/libavcodec/ac3dec.h
@@ -159,7 +159,7 @@ typedef struct AC3DecodeContext {
int fbw_channels; ///< number of full-bandwidth channels
int channels; ///< number of total channels
int lfe_ch; ///< index of LFE channel
- SHORTFLOAT downmix_coeffs[AC3_MAX_CHANNELS][2]; ///< stereo downmix coefficients
+ SHORTFLOAT *downmix_coeffs[2]; ///< stereo downmix coefficients
int downmixed; ///< indicates if coeffs are currently downmixed
int output_mode; ///< output channel configuration
int out_channels; ///< number of output channels