From b35c67e58bcbc35857c21c0f42fc9c18d9ed33e9 Mon Sep 17 00:00:00 2001 From: Justin Ruggles Date: Sun, 30 Dec 2007 22:28:17 +0000 Subject: [PATCH] pass an AC3DecodeContext to ac3_downmix() instead of multiple arguments Originally committed as revision 11359 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/ac3dec.c | 26 ++++++++++++-------------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/libavcodec/ac3dec.c b/libavcodec/ac3dec.c index bf17ac8f20..55794a6ff5 100644 --- a/libavcodec/ac3dec.c +++ b/libavcodec/ac3dec.c @@ -735,27 +735,26 @@ static inline void do_imdct(AC3DecodeContext *s) /** * Downmix the output to mono or stereo. */ -static void ac3_downmix(float samples[AC3_MAX_CHANNELS][256], int fbw_channels, - int output_mode, float coef[AC3_MAX_CHANNELS][2]) +static void ac3_downmix(AC3DecodeContext *s) { int i, j; float v0, v1, s0, s1; for(i=0; i<256; i++) { v0 = v1 = s0 = s1 = 0.0f; - for(j=0; jfbw_channels; j++) { + v0 += s->output[j][i] * s->downmix_coeffs[j][0]; + v1 += s->output[j][i] * s->downmix_coeffs[j][1]; + s0 += s->downmix_coeffs[j][0]; + s1 += s->downmix_coeffs[j][1]; } v0 /= s0; v1 /= s1; - if(output_mode == AC3_CHMODE_MONO) { - samples[0][i] = (v0 + v1) * LEVEL_MINUS_3DB; - } else if(output_mode == AC3_CHMODE_STEREO) { - samples[0][i] = v0; - samples[1][i] = v1; + if(s->output_mode == AC3_CHMODE_MONO) { + s->output[0][i] = (v0 + v1) * LEVEL_MINUS_3DB; + } else if(s->output_mode == AC3_CHMODE_STEREO) { + s->output[0][i] = v0; + s->output[1][i] = v1; } } } @@ -1053,8 +1052,7 @@ static int ac3_parse_audio_block(AC3DecodeContext *s, int blk) /* downmix output if needed */ if(s->channels != s->out_channels && !((s->output_mode & AC3_OUTPUT_LFEON) && s->fbw_channels == s->out_channels)) { - ac3_downmix(s->output, s->fbw_channels, s->output_mode, - s->downmix_coeffs); + ac3_downmix(s); } /* convert float to 16-bit integer */