mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 19:30:05 +00:00
avcodec/libopenh264dec: check for ff_set_dimensions() return value
Was removed by accident in e9b6212de2
.
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
e9b6212de2
commit
93dfc4f174
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user