From f23a68dff367ef9a397dda17aaebf189934179b9 Mon Sep 17 00:00:00 2001 From: Ivan Kalvachev <ikalvachev@gmail.com> Date: Sat, 26 Jul 2003 23:31:13 +0000 Subject: [PATCH] make MPV_frame_start fail on get_buffer failer Originally committed as revision 2089 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/mpegvideo.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c index 737cd0d1c8f..af6dd611e50 100644 --- a/libavcodec/mpegvideo.c +++ b/libavcodec/mpegvideo.c @@ -981,7 +981,8 @@ alloc: if(s->current_picture_ptr) pic->coded_picture_number= s->current_picture_ptr->coded_picture_number+1; - alloc_picture(s, (Picture*)pic, 0); + if( alloc_picture(s, (Picture*)pic, 0) < 0) + return -1; s->current_picture_ptr= &s->picture[i]; } -- GitLab