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/ac3dec.h | |
parent | b8f3ab8e6a7ce3627764da53b809628c828d4047 (diff) | |
download | ffmpeg-30b39164256999efc8d77edc85e2e0b963c24834.tar.gz |
ac3dec: make downmix() take array of pointers to channel data
Diffstat (limited to 'libavcodec/ac3dec.h')
-rw-r--r-- | libavcodec/ac3dec.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/ac3dec.h b/libavcodec/ac3dec.h index 910698d2ab..1e8ee68e61 100644 --- a/libavcodec/ac3dec.h +++ b/libavcodec/ac3dec.h @@ -197,6 +197,10 @@ typedef struct AC3DecodeContext { FmtConvertContext fmt_conv; ///< optimized conversion functions ///@} + float *outptr[AC3_MAX_CHANNELS]; + float *xcfptr[AC3_MAX_CHANNELS]; + float *dlyptr[AC3_MAX_CHANNELS]; + ///@name Aligned arrays DECLARE_ALIGNED(16, int, fixed_coeffs)[AC3_MAX_CHANNELS][AC3_MAX_COEFS]; ///< fixed-point transform coefficients DECLARE_ALIGNED(32, float, transform_coeffs)[AC3_MAX_CHANNELS][AC3_MAX_COEFS]; ///< transform coefficients |