You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02: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:
@@ -92,7 +92,7 @@ static int svc_decode_frame(AVCodecContext *avctx, void *data,
|
|||||||
SVCContext *s = avctx->priv_data;
|
SVCContext *s = avctx->priv_data;
|
||||||
SBufferInfo info = { 0 };
|
SBufferInfo info = { 0 };
|
||||||
uint8_t* ptrs[3];
|
uint8_t* ptrs[3];
|
||||||
int linesize[3];
|
int ret, linesize[3];
|
||||||
AVFrame *avframe = data;
|
AVFrame *avframe = data;
|
||||||
DECODING_STATE state;
|
DECODING_STATE state;
|
||||||
|
|
||||||
@@ -106,7 +106,9 @@ static int svc_decode_frame(AVCodecContext *avctx, void *data,
|
|||||||
return avpkt->size;
|
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
|
// The decoder doesn't (currently) support decoding into a user
|
||||||
// provided buffer, so do a copy instead.
|
// provided buffer, so do a copy instead.
|
||||||
if (ff_get_buffer(avctx, avframe, 0) < 0) {
|
if (ff_get_buffer(avctx, avframe, 0) < 0) {
|
||||||
|
Reference in New Issue
Block a user