mirror of https://git.ffmpeg.org/ffmpeg.git
indeo3: check ff_set_dimensions return value
CC: libav-stable@libav.org Bug-Id: CID 1135740
This commit is contained in:
parent
8e104619a6
commit
c6d7c201df
|
@ -944,7 +944,8 @@ static int decode_frame_headers(Indeo3DecodeContext *ctx, AVCodecContext *avctx,
|
|||
free_frame_buffers(ctx);
|
||||
if ((res = allocate_frame_buffers(ctx, avctx)) < 0)
|
||||
return res;
|
||||
ff_set_dimensions(avctx, width, height);
|
||||
if ((res = ff_set_dimensions(avctx, width, height)) < 0)
|
||||
return res;
|
||||
}
|
||||
|
||||
y_offset = bytestream2_get_le32(&gb);
|
||||
|
|
Loading…
Reference in New Issue