Browse Source

avcodec/svq3: Fix memleak of last_pic_for_ec

Found-by: jamrial
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.7
Michael Niedermayer 10 years ago
parent
commit
3cd666cfbc
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      libavcodec/svq3.c

+ 2
- 0
libavcodec/svq3.c View File

@@ -902,6 +902,8 @@ static av_cold int svq3_decode_init(AVCodecContext *avctx)
// we will overwrite it later during decoding
av_frame_free(&h->cur_pic.f);

av_frame_free(&h->last_pic_for_ec.f);

ff_h264dsp_init(&h->h264dsp, 8, 1);
av_assert0(h->sps.bit_depth_chroma == 0);
ff_h264_pred_init(&h->hpc, AV_CODEC_ID_SVQ3, 8, 1);


Loading…
Cancel
Save