diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2009-10-14 05:28:24 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2009-10-14 05:28:24 +0000 |
commit | 6d924b5a5f39e33a02c4b39cc5892911bb508d4e (patch) | |
tree | ce4410c381b5672151cadacb10cf1fddd706593d /libavcodec/loco.c | |
parent | ea09f691943091bf831befcf9f18288ccdcb6acf (diff) | |
download | ffmpeg-6d924b5a5f39e33a02c4b39cc5892911bb508d4e.tar.gz |
Release frame after decoding is done
Originally committed as revision 20231 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/loco.c')
-rw-r--r-- | libavcodec/loco.c | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/libavcodec/loco.c b/libavcodec/loco.c index 4fd64f4bda..9a01810c44 100644 --- a/libavcodec/loco.c +++ b/libavcodec/loco.c @@ -275,6 +275,17 @@ static av_cold int decode_init(AVCodecContext *avctx){ return 0; } +static av_cold int decode_end(AVCodecContext *avctx){ + LOCOContext * const l = avctx->priv_data; + AVFrame *pic = &l->pic; + + if (pic->data[0]) + avctx->release_buffer(avctx, pic); + av_freep(&l->pic); + + return 0; +} + AVCodec loco_decoder = { "loco", CODEC_TYPE_VIDEO, @@ -282,7 +293,7 @@ AVCodec loco_decoder = { sizeof(LOCOContext), decode_init, NULL, - NULL, + decode_end, decode_frame, CODEC_CAP_DR1, .long_name = NULL_IF_CONFIG_SMALL("LOCO"), |