OSDN Git Service

ac3: fix memleak in fixed-point encoder
authorJanne Grunau <janne-libav@jannau.net>
Mon, 25 Apr 2011 16:56:40 +0000 (18:56 +0200)
committerJanne Grunau <janne-libav@jannau.net>
Mon, 25 Apr 2011 18:27:05 +0000 (20:27 +0200)
caused by typo in mdct_end

libavcodec/ac3enc_fixed.c

index 720d87d..e643841 100644 (file)
@@ -36,7 +36,7 @@
  */
 static av_cold void mdct_end(AC3MDCTContext *mdct)
 {
-    ff_fft_end(&mdct->fft);
+    ff_mdct_end(&mdct->fft);
 }