mirror of https://git.ffmpeg.org/ffmpeg.git
flush remaining data from parser at EOF
Originally committed as revision 3748 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
732ce18eab
commit
f48c0551ca
|
@ -187,7 +187,12 @@ int ff_combine_frame(ParseContext *pc, int next, uint8_t **buf, int *buf_size)
|
||||||
for(; pc->overread>0; pc->overread--){
|
for(; pc->overread>0; pc->overread--){
|
||||||
pc->buffer[pc->index++]= pc->buffer[pc->overread_index++];
|
pc->buffer[pc->index++]= pc->buffer[pc->overread_index++];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* flush remaining if EOF */
|
||||||
|
if(!*buf_size && next == END_NOT_FOUND){
|
||||||
|
next= 0;
|
||||||
|
}
|
||||||
|
|
||||||
pc->last_index= pc->index;
|
pc->last_index= pc->index;
|
||||||
|
|
||||||
/* copy into buffer end return */
|
/* copy into buffer end return */
|
||||||
|
|
Loading…
Reference in New Issue