[FFmpeg-cvslog] ac3: fix memleak in fixed-point encoder

Janne Grunau git at videolan.org
Wed Apr 27 00:53:59 CEST 2011


ffmpeg | branch: oldabi | Janne Grunau <janne-libav at jannau.net> | Mon Apr 25 18:56:40 2011 +0200| [6ad2bafcfd4c90cc0e3923f90699aa77d3cf7803] | committer: Janne Grunau

ac3: fix memleak in fixed-point encoder

caused by typo in mdct_end

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=6ad2bafcfd4c90cc0e3923f90699aa77d3cf7803
---

 libavcodec/ac3enc_fixed.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libavcodec/ac3enc_fixed.c b/libavcodec/ac3enc_fixed.c
index 720d87d..e643841 100644
--- a/libavcodec/ac3enc_fixed.c
+++ b/libavcodec/ac3enc_fixed.c
@@ -36,7 +36,7 @@
  */
 static av_cold void mdct_end(AC3MDCTContext *mdct)
 {
-    ff_fft_end(&mdct->fft);
+    ff_mdct_end(&mdct->fft);
 }
 
 



More information about the ffmpeg-cvslog mailing list