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
This commit is contained in:
parent
e43b0a7316
commit
cbcbf439b9
@ -302,8 +302,8 @@ int ff_wma_init(AVCodecContext * avctx, int flags2)
|
|||||||
for(i = 0; i < s->nb_block_sizes; i++) {
|
for(i = 0; i < s->nb_block_sizes; i++) {
|
||||||
int n;
|
int n;
|
||||||
n = 1 << (s->frame_len_bits - i);
|
n = 1 << (s->frame_len_bits - i);
|
||||||
ff_sine_window_init(ff_sine_windows[i], n);
|
ff_sine_window_init(ff_sine_windows[s->frame_len_bits - i - 7], n);
|
||||||
s->windows[i] = ff_sine_windows[i];
|
s->windows[i] = ff_sine_windows[s->frame_len_bits - i - 7];
|
||||||
}
|
}
|
||||||
|
|
||||||
s->reset_block_lengths = 1;
|
s->reset_block_lengths = 1;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user