mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-25 20:50:09 +00:00
Set coded_frame to NULL when closing a codec, since it might
be invalid after the codec is "gone". Originally committed as revision 23101 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
521cfa4aae
commit
b3ab319944
@ -709,6 +709,7 @@ av_cold int avcodec_close(AVCodecContext *avctx)
|
||||
if (avctx->codec && avctx->codec->close)
|
||||
avctx->codec->close(avctx);
|
||||
avcodec_default_free_buffers(avctx);
|
||||
avctx->coded_frame = NULL;
|
||||
av_freep(&avctx->priv_data);
|
||||
if(avctx->codec && avctx->codec->encode)
|
||||
av_freep(&avctx->extradata);
|
||||
|
Loading…
Reference in New Issue
Block a user