comparison aac_ac3_parser.c @ 4942:b42e963c8149 libavcodec

cosmetics: rename for consistency after previous aac and ac3 parsers move
author aurel
date Tue, 08 May 2007 23:29:07 +0000
parents c3ee5c30c297
children 0168cd384df3
comparison
equal deleted inserted replaced
4941:c3ee5c30c297 4942:b42e963c8149
21 */ 21 */
22 22
23 #include "parser.h" 23 #include "parser.h"
24 #include "aac_ac3_parser.h" 24 #include "aac_ac3_parser.h"
25 25
26 int ac3_parse(AVCodecParserContext *s1, 26 int ff_aac_ac3_parse(AVCodecParserContext *s1,
27 AVCodecContext *avctx, 27 AVCodecContext *avctx,
28 const uint8_t **poutbuf, int *poutbuf_size, 28 const uint8_t **poutbuf, int *poutbuf_size,
29 const uint8_t *buf, int buf_size) 29 const uint8_t *buf, int buf_size)
30 { 30 {
31 AC3ParseContext *s = s1->priv_data; 31 AACAC3ParseContext *s = s1->priv_data;
32 const uint8_t *buf_ptr; 32 const uint8_t *buf_ptr;
33 int len, sample_rate, bit_rate, channels, samples; 33 int len, sample_rate, bit_rate, channels, samples;
34 34
35 *poutbuf = NULL; 35 *poutbuf = NULL;
36 *poutbuf_size = 0; 36 *poutbuf_size = 0;