1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-07-11 14:30:22 +02:00

ac3: fix memleak in fixed-point encoder

caused by typo in mdct_end
This commit is contained in:
Janne Grunau
2011-04-25 18:56:40 +02:00
parent a14c08247d
commit 6ad2bafcfd

View File

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