Commit 9305ccc9 authored by michael's avatar michael

indent


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14172 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 1759aa41
...@@ -682,25 +682,25 @@ static int wma_decode_block(WMACodecContext *s) ...@@ -682,25 +682,25 @@ static int wma_decode_block(WMACodecContext *s)
next: next:
for(ch = 0; ch < s->nb_channels; ch++) { for(ch = 0; ch < s->nb_channels; ch++) {
int n4, index, n; int n4, index, n;
n = s->block_len; n = s->block_len;
n4 = s->block_len / 2; n4 = s->block_len / 2;
if(s->channel_coded[ch]){ if(s->channel_coded[ch]){
s->mdct_ctx[bsize].fft.imdct_calc(&s->mdct_ctx[bsize], s->mdct_ctx[bsize].fft.imdct_calc(&s->mdct_ctx[bsize],
s->output, s->coefs[ch], s->mdct_tmp); s->output, s->coefs[ch], s->mdct_tmp);
}else }else
memset(s->output, 0, sizeof(s->output)); memset(s->output, 0, sizeof(s->output));
/* multiply by the window and add in the frame */ /* multiply by the window and add in the frame */
index = (s->frame_len / 2) + s->block_pos - n4; index = (s->frame_len / 2) + s->block_pos - n4;
wma_window(s, &s->frame_out[ch][index]); wma_window(s, &s->frame_out[ch][index]);
/* specific fast case for ms-stereo : add to second /* specific fast case for ms-stereo : add to second
channel if it is not coded */ channel if it is not coded */
if (s->ms_stereo && !s->channel_coded[1]) { if (s->ms_stereo && !s->channel_coded[1]) {
wma_window(s, &s->frame_out[1][index]); wma_window(s, &s->frame_out[1][index]);
} }
} }
/* update block number */ /* update block number */
......
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