comparison ac3_parser.c @ 7769:e5f7a43f63ae libavcodec

create a separate codec_id for E-AC-3
author jbr
date Mon, 01 Sep 2008 14:33:54 +0000
parents 1a93d3bbe3ee
children c34d5e164b22
comparison
equal deleted inserted replaced
7768:152573e499c9 7769:e5f7a43f63ae
186 return 0; 186 return 0;
187 } 187 }
188 188
189 189
190 AVCodecParser ac3_parser = { 190 AVCodecParser ac3_parser = {
191 { CODEC_ID_AC3 }, 191 { CODEC_ID_AC3, CODEC_ID_EAC3 },
192 sizeof(AACAC3ParseContext), 192 sizeof(AACAC3ParseContext),
193 ac3_parse_init, 193 ac3_parse_init,
194 ff_aac_ac3_parse, 194 ff_aac_ac3_parse,
195 ff_parse_close, 195 ff_parse_close,
196 }; 196 };