mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-06 23:31:13 +00:00
Reindent code folowing previous commit (r20019)
Originally committed as revision 20020 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
b11d40d12e
commit
f49bcde63b
@ -119,33 +119,33 @@ static int at1_imdct_block(AT1SUCtx* su, AT1Ctx *q)
|
|||||||
num_blocks = 1 << log2_block_count;
|
num_blocks = 1 << log2_block_count;
|
||||||
|
|
||||||
if (num_blocks == 1) {
|
if (num_blocks == 1) {
|
||||||
/* mdct block size in samples: 128 (long mode, low & mid bands), */
|
/* mdct block size in samples: 128 (long mode, low & mid bands), */
|
||||||
/* 256 (long mode, high band) and 32 (short mode, all bands) */
|
/* 256 (long mode, high band) and 32 (short mode, all bands) */
|
||||||
block_size = band_samples >> log2_block_count;
|
block_size = band_samples >> log2_block_count;
|
||||||
|
|
||||||
/* calc transform size in bits according to the block_size_mode */
|
/* calc transform size in bits according to the block_size_mode */
|
||||||
nbits = mdct_long_nbits[band_num] - log2_block_count;
|
nbits = mdct_long_nbits[band_num] - log2_block_count;
|
||||||
|
|
||||||
if (nbits != 5 && nbits != 7 && nbits != 8)
|
if (nbits != 5 && nbits != 7 && nbits != 8)
|
||||||
return -1;
|
return -1;
|
||||||
} else {
|
} else {
|
||||||
block_size = 32;
|
block_size = 32;
|
||||||
nbits = 5;
|
nbits = 5;
|
||||||
}
|
}
|
||||||
|
|
||||||
start_pos = 0;
|
start_pos = 0;
|
||||||
prev_buf = &su->spectrum[1][ref_pos + band_samples - 16];
|
prev_buf = &su->spectrum[1][ref_pos + band_samples - 16];
|
||||||
for (j=0; j < num_blocks; j++) {
|
for (j=0; j < num_blocks; j++) {
|
||||||
at1_imdct(q, &q->spec[pos], &su->spectrum[0][ref_pos + start_pos], nbits, band_num);
|
at1_imdct(q, &q->spec[pos], &su->spectrum[0][ref_pos + start_pos], nbits, band_num);
|
||||||
|
|
||||||
/* overlap and window */
|
/* overlap and window */
|
||||||
q->dsp.vector_fmul_window(&q->bands[band_num][start_pos], prev_buf,
|
q->dsp.vector_fmul_window(&q->bands[band_num][start_pos], prev_buf,
|
||||||
&su->spectrum[0][ref_pos + start_pos], ff_sine_32, 0, 16);
|
&su->spectrum[0][ref_pos + start_pos], ff_sine_32, 0, 16);
|
||||||
|
|
||||||
prev_buf = &su->spectrum[0][ref_pos+start_pos + 16];
|
prev_buf = &su->spectrum[0][ref_pos+start_pos + 16];
|
||||||
start_pos += block_size;
|
start_pos += block_size;
|
||||||
pos += block_size;
|
pos += block_size;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (num_blocks == 1)
|
if (num_blocks == 1)
|
||||||
memcpy(q->bands[band_num] + 32, &su->spectrum[0][ref_pos + 16], 240 * sizeof(float));
|
memcpy(q->bands[band_num] + 32, &su->spectrum[0][ref_pos + 16], 240 * sizeof(float));
|
||||||
|
Loading…
Reference in New Issue
Block a user