diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-04-18 03:09:01 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-04-18 03:09:01 +0000 |
commit | 8c731c9743d1e815a62af09730f7f0c4050b217d (patch) | |
tree | d8f9897d85a93635c702717063286dd3dd0b6ac5 /libavcodec/aac_ac3_parser.c | |
parent | 37ff38c69f2c5780e218072589fe9d4ce6a1a1f0 (diff) | |
download | ffmpeg-8c731c9743d1e815a62af09730f7f0c4050b217d.tar.gz |
remove AACAC3FrameFlag
Originally committed as revision 12888 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/aac_ac3_parser.c')
-rw-r--r-- | libavcodec/aac_ac3_parser.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/aac_ac3_parser.c b/libavcodec/aac_ac3_parser.c index 1193647e90..c72965a76f 100644 --- a/libavcodec/aac_ac3_parser.c +++ b/libavcodec/aac_ac3_parser.c @@ -29,7 +29,6 @@ int ff_aac_ac3_parse(AVCodecParserContext *s1, const uint8_t *buf, int buf_size) { AACAC3ParseContext *s = s1->priv_data; - AACAC3FrameFlag frame_flag; const uint8_t *buf_ptr; int len; @@ -51,7 +50,7 @@ int ff_aac_ac3_parse(AVCodecParserContext *s1, if (s->frame_size == 0) { if ((s->inbuf_ptr - s->inbuf) == s->header_size) { - len = s->sync(s, &frame_flag); + len = s->sync(s); if (len == 0) { /* no sync found : move by one byte (inefficient, but simple!) */ memmove(s->inbuf, s->inbuf + 1, s->header_size - 1); |