1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-07-23 12:41:29 +02:00

VP8: add missing free

Fixes a tiny memory leak.

Originally committed as revision 24504 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Jason Garrett-Glaser 2010-07-26 07:10:30 +00:00
parent 2701fd40f9
commit fca05ea8a0

View File

@ -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);