mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
handle init error in ffmpeg12
Originally committed as revision 1141 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
80663785f7
commit
288daa8452
@ -1582,7 +1582,7 @@ static int mpeg_decode_slice(AVCodecContext *avctx,
|
||||
if (s->first_slice) {
|
||||
s->first_slice = 0;
|
||||
if(MPV_frame_start(s, avctx) < 0)
|
||||
return -1;
|
||||
return -2;
|
||||
}
|
||||
|
||||
init_get_bits(&s->gb, buf, buf_size);
|
||||
@ -1928,8 +1928,9 @@ static int mpeg_decode_frame(AVCodecContext *avctx,
|
||||
}
|
||||
*data_size = sizeof(AVPicture);
|
||||
goto the_end;
|
||||
}else if(ret==-1){
|
||||
}else if(ret<0){
|
||||
printf("Error while decoding slice\n");
|
||||
if(ret<-1) return -1;
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user