mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 03:59:43 +00:00
avcodec/libutvideodec: free coded_frame with av_frame_free() instead if av_free*
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
4c1b4ae1ba
commit
7102083a26
@ -174,7 +174,7 @@ static av_cold int utvideo_decode_close(AVCodecContext *avctx)
|
||||
UtVideoContext *utv = (UtVideoContext *)avctx->priv_data;
|
||||
|
||||
/* Free output */
|
||||
av_freep(&avctx->coded_frame);
|
||||
av_frame_free(&avctx->coded_frame);
|
||||
av_freep(&utv->buffer);
|
||||
|
||||
/* Finish decoding and clean up the instance */
|
||||
|
Loading…
Reference in New Issue
Block a user