Commit 76ec34a5 authored by Benjamin Larsson's avatar Benjamin Larsson

Remove redundant code forgotten in the split

Originally committed as revision 19810 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent b52b0913
......@@ -206,13 +206,6 @@ static av_cold void init_atrac3_transforms(ATRAC3Context *q) {
mdct_window[511-i] = mdct_window[i];
}
/* Generate the QMF window. */
for (i=0 ; i<24; i++) {
s = qmf_48tap_half[i] * 2.0;
qmf_window[i] = s;
qmf_window[47 - i] = s;
}
/* Initialize the MDCT transform. */
ff_mdct_init(&mdct_ctx, 9, 1, 1.0);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment