From cce540c5e736e5873aef3a906b7231ce7b28df14 Mon Sep 17 00:00:00 2001 From: Robert Swain Date: Fri, 15 Aug 2008 10:31:11 +0000 Subject: [PATCH] Don't try to free shared ff_sine_* tables pointed to by s->windows[] Originally committed as revision 14775 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/wma.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/libavcodec/wma.c b/libavcodec/wma.c index 423852b..6c7e14b 100644 --- a/libavcodec/wma.c +++ b/libavcodec/wma.c @@ -366,8 +366,6 @@ int ff_wma_end(AVCodecContext *avctx) for(i = 0; i < s->nb_block_sizes; i++) ff_mdct_end(&s->mdct_ctx[i]); - for(i = 0; i < s->nb_block_sizes; i++) - av_free(s->windows[i]); if (s->use_exp_vlc) { free_vlc(&s->exp_vlc); -- 2.7.4