Commit f4d73f0f authored by Michael Niedermayer's avatar Michael Niedermayer

mpegvideo: check return value of ff_MPV_common_init()

Fixes CID703621
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 8cda27b7
...@@ -530,6 +530,7 @@ int ff_mpeg_update_thread_context(AVCodecContext *dst, ...@@ -530,6 +530,7 @@ int ff_mpeg_update_thread_context(AVCodecContext *dst,
const AVCodecContext *src) const AVCodecContext *src)
{ {
int i; int i;
int err;
MpegEncContext *s = dst->priv_data, *s1 = src->priv_data; MpegEncContext *s = dst->priv_data, *s1 = src->priv_data;
if (dst == src) if (dst == src)
...@@ -547,12 +548,12 @@ int ff_mpeg_update_thread_context(AVCodecContext *dst, ...@@ -547,12 +548,12 @@ int ff_mpeg_update_thread_context(AVCodecContext *dst,
if (s1->context_initialized){ if (s1->context_initialized){
s->picture_range_start += MAX_PICTURE_COUNT; s->picture_range_start += MAX_PICTURE_COUNT;
s->picture_range_end += 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) { if (s->height != s1->height || s->width != s1->width || s->context_reinit) {
int err;
s->context_reinit = 0; s->context_reinit = 0;
s->height = s1->height; s->height = s1->height;
s->width = s1->width; s->width = s1->width;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment