mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/snowenc: Check av_frame_ref() return value
Fixes CID1026740 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
a38758a97e
commit
385fe984fc
|
@ -1622,7 +1622,9 @@ static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
|
|||
|
||||
ff_snow_frame_start(s);
|
||||
av_frame_unref(avctx->coded_frame);
|
||||
av_frame_ref(avctx->coded_frame, s->current_picture);
|
||||
ret = av_frame_ref(avctx->coded_frame, s->current_picture);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
s->m.current_picture_ptr= &s->m.current_picture;
|
||||
s->m.current_picture.f = s->current_picture;
|
||||
|
|
Loading…
Reference in New Issue