[FFmpeg-cvslog] xbm: use av_frame_free on close
Vittorio Giovara
git at videolan.org
Fri Mar 28 04:46:46 CET 2014
ffmpeg | branch: master | Vittorio Giovara <vittorio.giovara at gmail.com> | Mon Mar 17 01:20:53 2014 +0100| [792e4c21f212979f0e29bcdf107cb6b4f51645a4] | committer: Vittorio Giovara
xbm: use av_frame_free on close
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=792e4c21f212979f0e29bcdf107cb6b4f51645a4
---
libavcodec/xbmenc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/xbmenc.c b/libavcodec/xbmenc.c
index d6657dc..517e569 100644
--- a/libavcodec/xbmenc.c
+++ b/libavcodec/xbmenc.c
@@ -69,7 +69,7 @@ static int xbm_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
static av_cold int xbm_encode_close(AVCodecContext *avctx)
{
- av_freep(&avctx->coded_frame);
+ av_frame_free(&avctx->coded_frame);
return 0;
}
More information about the ffmpeg-cvslog
mailing list