[FFmpeg-cvslog] r24159 - trunk/libavcodec/psymodel.c
mstorsjo
subversion
Sat Jul 10 11:14:20 CEST 2010
Author: mstorsjo
Date: Sat Jul 10 11:14:19 2010
New Revision: 24159
Log:
Fix a leak in the AAC encoder
Modified:
trunk/libavcodec/psymodel.c
Modified: trunk/libavcodec/psymodel.c
==============================================================================
--- trunk/libavcodec/psymodel.c Sat Jul 10 09:55:06 2010 (r24158)
+++ trunk/libavcodec/psymodel.c Sat Jul 10 11:14:19 2010 (r24159)
@@ -123,5 +123,6 @@ av_cold void ff_psy_preprocess_end(struc
for (i = 0; i < ctx->avctx->channels; i++)
ff_iir_filter_free_state(ctx->fstate[i]);
av_freep(&ctx->fstate);
+ av_free(ctx);
}
More information about the ffmpeg-cvslog
mailing list