Browse Source

VP8: add missing free

Fixes a tiny memory leak.

Originally committed as revision 24504 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/n0.8
Jason Garrett-Glaser 15 years ago
parent
commit
fca05ea8a0
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      libavcodec/vp8.c

+ 1
- 0
libavcodec/vp8.c 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);


Loading…
Cancel
Save