mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
10l
Originally committed as revision 1826 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
067ff8b1ee
commit
cfcff63685
@ -2241,9 +2241,9 @@ static int mpeg_decode_frame(AVCodecContext *avctx,
|
||||
for(;;) {
|
||||
/* find start next code */
|
||||
start_code = find_start_code(&buf_ptr, buf_end);
|
||||
if (start_code < 0){
|
||||
printf("missing end of picture\n");
|
||||
return FFMAX(1, buf_ptr - buf - s2->parse_context.last_index);
|
||||
if (start_code < 0){
|
||||
// printf("missing end of picture\n");
|
||||
return FFMAX(0, buf_ptr - buf - s2->parse_context.last_index);
|
||||
}
|
||||
|
||||
/* prepare data for next start code */
|
||||
|
Loading…
Reference in New Issue
Block a user