[FFmpeg-cvslog] mpegvideo: check return value of ff_MPV_common_init()
Michael Niedermayer
git at videolan.org
Sun Oct 14 00:14:06 CEST 2012
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sat Oct 13 23:48:00 2012 +0200| [f4d73f0fb55e0b5931c859ddb4d2d1617b60d560] | committer: Michael Niedermayer
mpegvideo: check return value of ff_MPV_common_init()
Fixes CID703621
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f4d73f0fb55e0b5931c859ddb4d2d1617b60d560
---
libavcodec/mpegvideo.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c
index cc2bcca..ad36ee4 100644
--- a/libavcodec/mpegvideo.c
+++ b/libavcodec/mpegvideo.c
@@ -530,6 +530,7 @@ int ff_mpeg_update_thread_context(AVCodecContext *dst,
const AVCodecContext *src)
{
int i;
+ int err;
MpegEncContext *s = dst->priv_data, *s1 = src->priv_data;
if (dst == src)
@@ -547,12 +548,12 @@ int ff_mpeg_update_thread_context(AVCodecContext *dst,
if (s1->context_initialized){
s->picture_range_start += MAX_PICTURE_COUNT;
s->picture_range_end += MAX_PICTURE_COUNT;
- ff_MPV_common_init(s);
+ if((err = ff_MPV_common_init(s)) < 0)
+ return err;
}
}
if (s->height != s1->height || s->width != s1->width || s->context_reinit) {
- int err;
s->context_reinit = 0;
s->height = s1->height;
s->width = s1->width;
More information about the ffmpeg-cvslog
mailing list