From 771c86c13d7133035e53f7aeb14407ae5dca6453 Mon Sep 17 00:00:00 2001 From: Martin Storsjö Date: Sat, 10 Jul 2010 09:14:19 +0000 Subject: Fix a leak in the AAC encoder Originally committed as revision 24159 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/psymodel.c | 1 + 1 file changed, 1 insertion(+) (limited to 'libavcodec/psymodel.c') diff --git a/libavcodec/psymodel.c b/libavcodec/psymodel.c index f87dbcf277..a85c29baaa 100644 --- a/libavcodec/psymodel.c +++ b/libavcodec/psymodel.c @@ -123,5 +123,6 @@ av_cold void ff_psy_preprocess_end(struct FFPsyPreprocessContext *ctx) for (i = 0; i < ctx->avctx->channels; i++) ff_iir_filter_free_state(ctx->fstate[i]); av_freep(&ctx->fstate); + av_free(ctx); } -- cgit v1.2.3