From 679c2294cbc9e003da74433b485294a1186c98f4 Mon Sep 17 00:00:00 2001 From: Aurelien Jacobs Date: Tue, 8 May 2007 23:29:07 +0000 Subject: cosmetics: rename for consistency after previous aac and ac3 parsers move Originally committed as revision 8942 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/aac_ac3_parser.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libavcodec/aac_ac3_parser.h') diff --git a/libavcodec/aac_ac3_parser.h b/libavcodec/aac_ac3_parser.h index 03a6368ee7..a97ffd162c 100644 --- a/libavcodec/aac_ac3_parser.h +++ b/libavcodec/aac_ac3_parser.h @@ -23,16 +23,16 @@ #ifndef AAC_AC3_PARSER_H #define AAC_AC3_PARSER_H -typedef struct AC3ParseContext { +typedef struct AACAC3ParseContext { uint8_t *inbuf_ptr; int frame_size; int header_size; int (*sync)(const uint8_t *buf, int *channels, int *sample_rate, int *bit_rate, int *samples); uint8_t inbuf[8192]; /* input buffer */ -} AC3ParseContext; +} AACAC3ParseContext; -int ac3_parse(AVCodecParserContext *s1, +int ff_aac_ac3_parse(AVCodecParserContext *s1, AVCodecContext *avctx, const uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size); -- cgit v1.2.3