projects
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
133ac89
)
part 1 of EAC3 support
author
Michael Niedermayer
<michaelni@gmx.at>
Sat, 19 Apr 2008 02:28:24 +0000
(
02:28
+0000)
committer
Michael Niedermayer
<michaelni@gmx.at>
Sat, 19 Apr 2008 02:28:24 +0000
(
02:28
+0000)
Originally committed as revision 12896 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavcodec/aac_ac3_parser.c
patch
|
blob
|
blame
|
history
diff --git
a/libavcodec/aac_ac3_parser.c
b/libavcodec/aac_ac3_parser.c
index
8d7e20c
..
ad8f04e
100644
(file)
--- a/
libavcodec/aac_ac3_parser.c
+++ b/
libavcodec/aac_ac3_parser.c
@@
-33,9
+33,10
@@
int ff_aac_ac3_parse(AVCodecParserContext *s1,
int len, i;
int new_frame_start;
+get_next:
i=END_NOT_FOUND;
if(s->remaining_size <= buf_size){
- if(s->remaining_size){
+ if(s->remaining_size
&& !s->need_next_header
){
i= s->remaining_size;
s->remaining_size = 0;
}else{ //we need a header first
@@
-50,6
+51,8
@@
int ff_aac_ac3_parse(AVCodecParserContext *s1,
}else{
i-= s->header_size -1;
s->remaining_size = len + i;
+ if(!new_frame_start)
+ goto get_next;
}
}
}