Commit 93dfc4f1 authored by James Almer's avatar James Almer

avcodec/libopenh264dec: check for ff_set_dimensions() return value

Was removed by accident in e9b6212d.
Signed-off-by: 's avatarJames Almer <jamrial@gmail.com>
parent e9b6212d
......@@ -92,7 +92,7 @@ static int svc_decode_frame(AVCodecContext *avctx, void *data,
SVCContext *s = avctx->priv_data;
SBufferInfo info = { 0 };
uint8_t* ptrs[3];
int linesize[3];
int ret, linesize[3];
AVFrame *avframe = data;
DECODING_STATE state;
......@@ -106,7 +106,9 @@ static int svc_decode_frame(AVCodecContext *avctx, void *data,
return avpkt->size;
}
ff_set_dimensions(avctx, info.UsrData.sSystemBuffer.iWidth, info.UsrData.sSystemBuffer.iHeight);
ret = ff_set_dimensions(avctx, info.UsrData.sSystemBuffer.iWidth, info.UsrData.sSystemBuffer.iHeight);
if (ret < 0)
return ret;
// The decoder doesn't (currently) support decoding into a user
// provided buffer, so do a copy instead.
if (ff_get_buffer(avctx, avframe, 0) < 0) {
......
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