summaryrefslogtreecommitdiff
path: root/libavcodec/vp8.c
diff options
context:
space:
mode:
authorJason Garrett-Glaser <darkshikari@gmail.com>2010-07-26 07:10:30 +0000
committerJason Garrett-Glaser <darkshikari@gmail.com>2010-07-26 07:10:30 +0000
commitfca05ea8a047afbc6bddb319ab659a445670a451 (patch)
treedb884cf0968471b3f9cb81f0b0befcde0bb09a5a /libavcodec/vp8.c
parent2701fd40f9bd2fa0ed95c8496cb1e949203f48ab (diff)
VP8: add missing free
Fixes a tiny memory leak. Originally committed as revision 24504 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vp8.c')
-rw-r--r--libavcodec/vp8.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/vp8.c b/libavcodec/vp8.c
index 2d1b502730..1136f38a86 100644
--- a/libavcodec/vp8.c
+++ b/libavcodec/vp8.c
@@ -210,6 +210,7 @@ static void vp8_decode_flush(AVCodecContext *avctx)
memset(s->framep, 0, sizeof(s->framep));
av_freep(&s->macroblocks_base);
+ av_freep(&s->filter_strength);
av_freep(&s->intra4x4_pred_mode_base);
av_freep(&s->top_nnz);
av_freep(&s->edge_emu_buffer);