Module: libav
Branch: master
Commit: 6ad2bafcfd4c90cc0e3923f90699aa77d3cf7803

Author:    Janne Grunau <[email protected]>
Committer: Janne Grunau <[email protected]>
Date:      Mon Apr 25 18:56:40 2011 +0200

ac3: fix memleak in fixed-point encoder

caused by typo in mdct_end

---

 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);
 }
 
 

_______________________________________________
libav-commits mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-commits

Reply via email to