Browse Source

Add missing release_buffer at decode end for asv1 decoder.

Originally committed as revision 20241 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Reimar Döffinger 16 years ago
parent
commit
77edf86648
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      libavcodec/asv1.c

+ 3
- 0
libavcodec/asv1.c View File

@@ -607,6 +607,9 @@ static av_cold int decode_end(AVCodecContext *avctx){
av_freep(&a->picture.qscale_table);
a->bitstream_buffer_size=0;

if(a->picture.data[0])
avctx->release_buffer(avctx, &a->picture);

return 0;
}



Loading…
Cancel
Save