From 90350d73f8b6bb281d9028ad1adf4805a8bce717 Mon Sep 17 00:00:00 2001 From: Alex Converse Date: Wed, 13 May 2009 17:57:58 +0000 Subject: Allow parsing and decoding of ADTS AAC files with channel config = 0 Originally committed as revision 18815 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/aac_parser.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'libavcodec/aac_parser.c') diff --git a/libavcodec/aac_parser.c b/libavcodec/aac_parser.c index ab8e092dda..30ce04d4ad 100644 --- a/libavcodec/aac_parser.c +++ b/libavcodec/aac_parser.c @@ -44,9 +44,6 @@ int ff_aac_parse_header(GetBitContext *gbc, AACADTSHeaderInfo *hdr) skip_bits1(gbc); /* private_bit */ ch = get_bits(gbc, 3); /* channel_configuration */ - if(!ff_mpeg4audio_channels[ch]) - return AAC_AC3_PARSE_ERROR_CHANNEL_CFG; - skip_bits1(gbc); /* original/copy */ skip_bits1(gbc); /* home */ -- cgit v1.2.3