ac3: fix memleak in fixed-point encoder

caused by typo in mdct_end
pull/2/head
Janne Grunau 14 years ago
parent a14c08247d
commit 6ad2bafcfd
  1. 2
      libavcodec/ac3enc_fixed.c

@ -36,7 +36,7 @@
*/ */
static av_cold void mdct_end(AC3MDCTContext *mdct) static av_cold void mdct_end(AC3MDCTContext *mdct)
{ {
ff_fft_end(&mdct->fft); ff_mdct_end(&mdct->fft);
} }

Loading…
Cancel
Save