diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2010-02-23 07:41:29 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2010-02-23 07:41:29 +0000 |
commit | 60819e694ee5733741da91ebc237b20621de5bc3 (patch) | |
tree | d593d3880bd84f7caaac1d1edc20f2496e638abc /libavcodec/indeo5.c | |
parent | 4f974de6f6282d6ecfe4c976d07ee20b782d0be8 (diff) | |
download | ffmpeg-60819e694ee5733741da91ebc237b20621de5bc3.tar.gz |
10l trocadero: Indeo 5 decoder did not free custom VLCs for macroblock and
block decoding at exit, so prevent that memory leak now.
Originally committed as revision 21983 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/indeo5.c')
-rw-r--r-- | libavcodec/indeo5.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/indeo5.c b/libavcodec/indeo5.c index e7ec538c39..050ee2b1a8 100644 --- a/libavcodec/indeo5.c +++ b/libavcodec/indeo5.c @@ -860,6 +860,9 @@ static av_cold int decode_close(AVCodecContext *avctx) ff_ivi_free_buffers(&ctx->planes[0]); + if (ctx->mb_vlc_cust.table) + free_vlc(&ctx->mb_vlc_cust); + if (ctx->frame.data[0]) avctx->release_buffer(avctx, &ctx->frame); |