diff options
author | Jason Garrett-Glaser <darkshikari@gmail.com> | 2010-07-26 07:10:30 +0000 |
---|---|---|
committer | Jason Garrett-Glaser <darkshikari@gmail.com> | 2010-07-26 07:10:30 +0000 |
commit | fca05ea8a047afbc6bddb319ab659a445670a451 (patch) | |
tree | db884cf0968471b3f9cb81f0b0befcde0bb09a5a /libavcodec | |
parent | 2701fd40f9bd2fa0ed95c8496cb1e949203f48ab (diff) | |
download | ffmpeg-fca05ea8a047afbc6bddb319ab659a445670a451.tar.gz |
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')
-rw-r--r-- | libavcodec/vp8.c | 1 |
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); |