diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2007-05-08 23:29:07 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2007-05-08 23:29:07 +0000 |
commit | 679c2294cbc9e003da74433b485294a1186c98f4 (patch) | |
tree | 6d9447ee03a80f93078607792972f6077a707480 /libavcodec/ac3_parser.c | |
parent | 99ff31dc750e8ac562b529c3ec374cfbb3e66157 (diff) | |
download | ffmpeg-679c2294cbc9e003da74433b485294a1186c98f4.tar.gz |
cosmetics: rename for consistency after previous aac and ac3 parsers move
Originally committed as revision 8942 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ac3_parser.c')
-rw-r--r-- | libavcodec/ac3_parser.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/ac3_parser.c b/libavcodec/ac3_parser.c index 0563b8b2b1..4758ef2b51 100644 --- a/libavcodec/ac3_parser.c +++ b/libavcodec/ac3_parser.c @@ -145,7 +145,7 @@ static int ac3_sync(const uint8_t *buf, int *channels, int *sample_rate, static int ac3_parse_init(AVCodecParserContext *s1) { - AC3ParseContext *s = s1->priv_data; + AACAC3ParseContext *s = s1->priv_data; s->inbuf_ptr = s->inbuf; s->header_size = AC3_HEADER_SIZE; s->sync = ac3_sync; @@ -155,8 +155,8 @@ static int ac3_parse_init(AVCodecParserContext *s1) AVCodecParser ac3_parser = { { CODEC_ID_AC3 }, - sizeof(AC3ParseContext), + sizeof(AACAC3ParseContext), ac3_parse_init, - ac3_parse, + ff_aac_ac3_parse, NULL, }; |