avcodec/mpegvideo: Use "goto fail" for all error paths in ff_mpv_common_frame_size_change()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit 2762323c37)

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer
2014-09-07 12:52:24 +02:00
parent 6f02de4ee8
commit 0fc229450f

View File

@@ -1115,7 +1115,7 @@ int ff_MPV_common_frame_size_change(MpegEncContext *s)
if ((s->width || s->height) && if ((s->width || s->height) &&
av_image_check_size(s->width, s->height, 0, s->avctx)) av_image_check_size(s->width, s->height, 0, s->avctx))
return AVERROR_INVALIDDATA; goto fail;
if ((err = init_context_frame(s))) if ((err = init_context_frame(s)))
goto fail; goto fail;