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/aac_ac3_parser.h | |
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/aac_ac3_parser.h')
-rw-r--r-- | libavcodec/aac_ac3_parser.h | 6 |
1 files changed, 3 insertions, 3 deletions
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); |