summaryrefslogtreecommitdiff
path: root/libavcodec/aac_ac3_parser.c
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2008-01-05 05:36:00 +0000
committerJustin Ruggles <justin.ruggles@gmail.com>2008-01-05 05:36:00 +0000
commitf228eb737b6cb92a476e41ca68429455962d3681 (patch)
treea2d15db265d78554359c6322367e52e94d2fdae8 /libavcodec/aac_ac3_parser.c
parent9bd005bdbcb6494557cff7392a141fb3f9c3c761 (diff)
adjust output channels based on AVCodecContext.request_channels in AC3 parser
Originally committed as revision 11412 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/aac_ac3_parser.c')
-rw-r--r--libavcodec/aac_ac3_parser.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/libavcodec/aac_ac3_parser.c b/libavcodec/aac_ac3_parser.c
index c5d7c8a5ca..46824fbbda 100644
--- a/libavcodec/aac_ac3_parser.c
+++ b/libavcodec/aac_ac3_parser.c
@@ -61,6 +61,13 @@ int ff_aac_ac3_parse(AVCodecParserContext *s1,
/* 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;
+ }
avctx->bit_rate = bit_rate;
avctx->frame_size = samples;
}