Commit 8629e756 authored by Michael Niedermayer's avatar Michael Niedermayer

part 1 of EAC3 support

Originally committed as revision 12896 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 133ac890
......@@ -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;
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment