diff options
author | Clément Bœsch <u@pkh.me> | 2015-02-28 10:36:16 +0100 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2015-03-02 21:27:21 +0100 |
commit | 546d69eb43e831bb67a8a0d54a8762a315710c94 (patch) | |
tree | 0f25608330566a2abfaa205d06be99b66f9671f0 /libavcodec/y41penc.c | |
parent | cb39fe9336539f7a88c5ac8e2ad6c840338c0306 (diff) | |
download | ffmpeg-546d69eb43e831bb67a8a0d54a8762a315710c94.tar.gz |
avcodec: use av_frame_free() for coded_frame
Diffstat (limited to 'libavcodec/y41penc.c')
-rw-r--r-- | libavcodec/y41penc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/y41penc.c b/libavcodec/y41penc.c index 8f67944adf..477861880e 100644 --- a/libavcodec/y41penc.c +++ b/libavcodec/y41penc.c @@ -84,7 +84,7 @@ static int y41p_encode_frame(AVCodecContext *avctx, AVPacket *pkt, static av_cold int y41p_encode_close(AVCodecContext *avctx) { - av_freep(&avctx->coded_frame); + av_frame_free(&avctx->coded_frame); return 0; } |