mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
indent
Originally committed as revision 14172 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
7ee18c1781
commit
4972a2464b
@ -682,25 +682,25 @@ static int wma_decode_block(WMACodecContext *s)
|
||||
|
||||
next:
|
||||
for(ch = 0; ch < s->nb_channels; ch++) {
|
||||
int n4, index, n;
|
||||
int n4, index, n;
|
||||
|
||||
n = s->block_len;
|
||||
n4 = s->block_len / 2;
|
||||
if(s->channel_coded[ch]){
|
||||
n = s->block_len;
|
||||
n4 = s->block_len / 2;
|
||||
if(s->channel_coded[ch]){
|
||||
s->mdct_ctx[bsize].fft.imdct_calc(&s->mdct_ctx[bsize],
|
||||
s->output, s->coefs[ch], s->mdct_tmp);
|
||||
}else
|
||||
memset(s->output, 0, sizeof(s->output));
|
||||
s->output, s->coefs[ch], s->mdct_tmp);
|
||||
}else
|
||||
memset(s->output, 0, sizeof(s->output));
|
||||
|
||||
/* multiply by the window and add in the frame */
|
||||
index = (s->frame_len / 2) + s->block_pos - n4;
|
||||
wma_window(s, &s->frame_out[ch][index]);
|
||||
/* multiply by the window and add in the frame */
|
||||
index = (s->frame_len / 2) + s->block_pos - n4;
|
||||
wma_window(s, &s->frame_out[ch][index]);
|
||||
|
||||
/* specific fast case for ms-stereo : add to second
|
||||
channel if it is not coded */
|
||||
if (s->ms_stereo && !s->channel_coded[1]) {
|
||||
wma_window(s, &s->frame_out[1][index]);
|
||||
}
|
||||
/* specific fast case for ms-stereo : add to second
|
||||
channel if it is not coded */
|
||||
if (s->ms_stereo && !s->channel_coded[1]) {
|
||||
wma_window(s, &s->frame_out[1][index]);
|
||||
}
|
||||
}
|
||||
|
||||
/* update block number */
|
||||
|
Loading…
Reference in New Issue
Block a user