summaryrefslogtreecommitdiff
path: root/libavcodec/aac_ac3_parser.c
diff options
context:
space:
mode:
authorAurelien Jacobs <aurel@gnuage.org>2007-05-08 23:29:07 +0000
committerAurelien Jacobs <aurel@gnuage.org>2007-05-08 23:29:07 +0000
commit679c2294cbc9e003da74433b485294a1186c98f4 (patch)
tree6d9447ee03a80f93078607792972f6077a707480 /libavcodec/aac_ac3_parser.c
parent99ff31dc750e8ac562b529c3ec374cfbb3e66157 (diff)
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.c')
-rw-r--r--libavcodec/aac_ac3_parser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/aac_ac3_parser.c b/libavcodec/aac_ac3_parser.c
index 4dcf3974f1..b07f93acf0 100644
--- a/libavcodec/aac_ac3_parser.c
+++ b/libavcodec/aac_ac3_parser.c
@@ -23,12 +23,12 @@
#include "parser.h"
#include "aac_ac3_parser.h"
-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)
{
- AC3ParseContext *s = s1->priv_data;
+ AACAC3ParseContext *s = s1->priv_data;
const uint8_t *buf_ptr;
int len, sample_rate, bit_rate, channels, samples;