cosmetics: rename for consistency after previous aac and ac3 parsers move

Originally committed as revision 8942 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Aurelien Jacobs
2007-05-08 23:29:07 +00:00
parent 99ff31dc75
commit 679c2294cb
4 changed files with 11 additions and 11 deletions

View File

@@ -80,7 +80,7 @@ static int aac_sync(const uint8_t *buf, int *channels, int *sample_rate,
static int aac_parse_init(AVCodecParserContext *s1)
{
AC3ParseContext *s = s1->priv_data;
AACAC3ParseContext *s = s1->priv_data;
s->inbuf_ptr = s->inbuf;
s->header_size = AAC_HEADER_SIZE;
s->sync = aac_sync;
@@ -90,8 +90,8 @@ static int aac_parse_init(AVCodecParserContext *s1)
AVCodecParser aac_parser = {
{ CODEC_ID_AAC },
sizeof(AC3ParseContext),
sizeof(AACAC3ParseContext),
aac_parse_init,
ac3_parse,
ff_aac_ac3_parse,
NULL,
};