summaryrefslogtreecommitdiff
path: root/libavcodec/aac_ac3_parser.c
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2008-01-03 22:41:59 +0000
committerJustin Ruggles <justin.ruggles@gmail.com>2008-01-03 22:41:59 +0000
commitbd03aa1556ffeb490fc28794859acd8ef50abbe2 (patch)
tree1c0653fd789043355dde1d9be0839bda6725026a /libavcodec/aac_ac3_parser.c
parent95c21842708ee36be60c1186bfb8d51d4129b368 (diff)
remove workaround which is no longer needed due to
AVCodecContext.request_channels Originally committed as revision 11386 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, 0 insertions, 7 deletions
diff --git a/libavcodec/aac_ac3_parser.c b/libavcodec/aac_ac3_parser.c
index fc6249ede4..f384a0a3e8 100644
--- a/libavcodec/aac_ac3_parser.c
+++ b/libavcodec/aac_ac3_parser.c
@@ -60,14 +60,7 @@ int ff_aac_ac3_parse(AVCodecParserContext *s1,
s->frame_size = len;
/* update codec info */
avctx->sample_rate = sample_rate;
- /* set channels,except if the user explicitly requests 1 or 2 channels, XXX/FIXME this is a bit ugly */
- if(avctx->codec_id == CODEC_ID_AC3){
- if(avctx->channels!=1 && avctx->channels!=2){
- avctx->channels = channels;
- }
- } else {
avctx->channels = channels;
- }
avctx->bit_rate = bit_rate;
avctx->frame_size = samples;
}