]> git.sesse.net Git - ffmpeg/commitdiff
do not set channels before checking request_channels
authorJustin Ruggles <justin.ruggles@gmail.com>
Sat, 5 Jan 2008 15:18:15 +0000 (15:18 +0000)
committerJustin Ruggles <justin.ruggles@gmail.com>
Sat, 5 Jan 2008 15:18:15 +0000 (15:18 +0000)
Originally committed as revision 11414 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/aac_ac3_parser.c

index 46824fbbdabe26e6bde6f3686f8051e38dcb1d39..8a83aae1155f5d04c540df915d5c1df76cc8a665 100644 (file)
@@ -60,13 +60,14 @@ int ff_aac_ac3_parse(AVCodecParserContext *s1,
                     s->frame_size = len;
                     /* update codec info */
                     avctx->sample_rate = sample_rate;
-                    avctx->channels = channels;
                     /* allow downmixing to mono or stereo for AC3 */
                     if(avctx->request_channels > 0 &&
                             avctx->request_channels < channels &&
                             avctx->request_channels <= 2 &&
                             avctx->codec_id == CODEC_ID_AC3) {
                         avctx->channels = avctx->request_channels;
+                    } else {
+                        avctx->channels = channels;
                     }
                     avctx->bit_rate = bit_rate;
                     avctx->frame_size = samples;