X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=wmadec_filter.c;h=1f72293273f32cac61b39ad669af2b0310b146ff;hp=aab7cf94f76adc0311aa6cd925da00ad5d8323a4;hb=d5538ff0dd9f6531a1a319b49c32bd72597fb2c3;hpb=75cf863ef7a7cf5fe346f098ffb07a472b8366ec diff --git a/wmadec_filter.c b/wmadec_filter.c index aab7cf94..1f722932 100644 --- a/wmadec_filter.c +++ b/wmadec_filter.c @@ -1010,7 +1010,7 @@ static int wma_decode_block(struct private_wmadec_data *pwd) } next: for (ch = 0; ch < pwd->ahi.channels; ch++) { - int n4, index; + int n4, idx; n = pwd->block_len; n4 = pwd->block_len / 2; @@ -1020,8 +1020,8 @@ next: memset(pwd->output, 0, sizeof(pwd->output)); /* multiply by the window and add in the frame */ - index = (pwd->frame_len / 2) + pwd->block_pos - n4; - wma_window(pwd, &pwd->frame_out[ch][index]); + idx = (pwd->frame_len / 2) + pwd->block_pos - n4; + wma_window(pwd, &pwd->frame_out[ch][idx]); } /* update block number */