Commit cbcbf439 authored by Robert Swain's avatar Robert Swain

Fix index to ff_sine_windows[]. Previously the index was usually in reverse

order.

Originally committed as revision 14940 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent e43b0a73
......@@ -302,8 +302,8 @@ int ff_wma_init(AVCodecContext * avctx, int flags2)
for(i = 0; i < s->nb_block_sizes; i++) {
int n;
n = 1 << (s->frame_len_bits - i);
ff_sine_window_init(ff_sine_windows[i], n);
s->windows[i] = ff_sine_windows[i];
ff_sine_window_init(ff_sine_windows[s->frame_len_bits - i - 7], n);
s->windows[i] = ff_sine_windows[s->frame_len_bits - i - 7];
}
s->reset_block_lengths = 1;
......
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