diff options
author | Loren Merritt <lorenm@u.washington.edu> | 2008-08-12 23:45:46 +0000 |
---|---|---|
committer | Loren Merritt <lorenm@u.washington.edu> | 2008-08-12 23:45:46 +0000 |
commit | 557ac0c4481b619ad5fdb92ec994ab982ad8a7dd (patch) | |
tree | fa31078bcd5afbc2f2b7ec71d044d514599a5436 /libavcodec/ac3dec.h | |
parent | 0e55ba723b94f2cd21e0af56543d1ec8566052a4 (diff) | |
download | ffmpeg-557ac0c4481b619ad5fdb92ec994ab982ad8a7dd.tar.gz |
optimize ac3_downmix.
1.3x faster 5.1->stereo, 1.9x faster 5.1->mono.
Originally committed as revision 14719 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ac3dec.h')
-rw-r--r-- | libavcodec/ac3dec.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/ac3dec.h b/libavcodec/ac3dec.h index 46e74d9828..8b6c057cfc 100644 --- a/libavcodec/ac3dec.h +++ b/libavcodec/ac3dec.h @@ -99,7 +99,6 @@ typedef struct { int channels; ///< number of total channels int lfe_ch; ///< index of LFE channel float downmix_coeffs[AC3_MAX_CHANNELS][2]; ///< stereo downmix coefficients - float downmix_coeff_adjust[2]; ///< adjustment needed for each output channel when downmixing int downmixed; ///< indicates if coeffs are currently downmixed int output_mode; ///< output channel configuration int out_channels; ///< number of output channels |