52 #define JOINT_STEREO 0x12
55 #define SAMPLES_PER_FRAME 1024
138 for (i = 0; i < 128; i++)
139 FFSWAP(
float, input[i], input[255 - i]);
156 uint32_t *output = (uint32_t *)out;
158 off = (intptr_t)input & 3;
159 buf = (
const uint32_t *)(input - off);
161 c =
av_be2ne32((0x537F6103U >> (off * 8)) | (0x537F6103U << (32 - (off * 8))));
165 for (i = 0; i < bytes / 4; i++)
166 output[i] = c ^ buf[i];
180 for (i = 0, j = 255; i < 128; i++, j--) {
181 float wi = sin(((i + 0.5) / 256.0 - 0.5) *
M_PI) + 1.0;
182 float wj = sin(((j + 0.5) / 256.0 - 0.5) *
M_PI) + 1.0;
183 float w = 0.5 * (wi * wi + wj * wj);
210 int coding_flag,
int *mantissas,
213 int i, code, huff_symb;
218 if (coding_flag != 0) {
223 for (i = 0; i < num_codes; i++) {
231 for (i = 0; i < num_codes; i++) {
243 for (i = 0; i < num_codes; i++) {
244 huff_symb =
get_vlc2(gb, spectral_coeff_tab[selector-1].
table,
245 spectral_coeff_tab[selector-1].
bits, 3);
247 code = huff_symb >> 1;
253 for (i = 0; i < num_codes; i++) {
254 huff_symb =
get_vlc2(gb, spectral_coeff_tab[selector - 1].
table,
255 spectral_coeff_tab[selector - 1].
bits, 3);
270 int num_subbands, coding_mode, i, j, first, last, subband_size;
271 int subband_vlc_index[32], sf_index[32];
279 for (i = 0; i <= num_subbands; i++)
280 subband_vlc_index[i] =
get_bits(gb, 3);
283 for (i = 0; i <= num_subbands; i++) {
284 if (subband_vlc_index[i] != 0)
288 for (i = 0; i <= num_subbands; i++) {
292 subband_size = last - first;
294 if (subband_vlc_index[i] != 0) {
299 mantissas, subband_size);
306 for (j = 0; first < last; first++, j++)
307 output[first] = mantissas[j] * scale_factor;
310 memset(output + first, 0, subband_size *
sizeof(*output));
330 int nb_components, coding_mode_selector, coding_mode;
331 int band_flags[4], mantissa[8];
332 int component_count = 0;
337 if (nb_components == 0)
340 coding_mode_selector =
get_bits(gb, 2);
341 if (coding_mode_selector == 2)
344 coding_mode = coding_mode_selector & 1;
346 for (i = 0; i < nb_components; i++) {
347 int coded_values_per_component, quant_step_index;
349 for (b = 0; b <= num_bands; b++)
352 coded_values_per_component =
get_bits(gb, 3);
355 if (quant_step_index <= 1)
358 if (coding_mode_selector == 3)
361 for (b = 0; b < (num_bands + 1) * 4; b++) {
362 int coded_components;
364 if (band_flags[b >> 2] == 0)
369 for (c = 0; c < coded_components; c++) {
371 int sf_index, coded_values, max_coded_values;
375 if (component_count >= 64)
381 coded_values = coded_values_per_component + 1;
382 coded_values =
FFMIN(max_coded_values, coded_values);
388 mantissa, coded_values);
393 for (m = 0; m < coded_values; m++)
394 cmp->
coef[m] = mantissa[m] * scale_factor;
401 return component_count;
418 for (b = 0; b <= num_bands; b++) {
426 if (j && loc[j] <= loc[j - 1])
433 gain[b].num_points = 0;
449 int i, j, last_pos = -1;
450 float *input, *output;
452 for (i = 0; i < num_components; i++) {
453 last_pos =
FFMAX(components[i].pos + components[i].num_coefs, last_pos);
454 input = components[i].
coef;
455 output = &spectrum[components[i].
pos];
457 for (j = 0; j < components[i].num_coefs; j++)
458 output[j] += input[j];
464 #define INTERPOLATE(old, new, nsample) \
465 ((old) + (nsample) * 0.125 * ((new) - (old)))
470 int i, nsample,
band;
471 float mc1_l, mc1_r, mc2_l, mc2_r;
473 for (i = 0, band = 0; band < 4 * 256; band += 256, i++) {
474 int s1 = prev_code[i];
475 int s2 = curr_code[i];
486 for (; nsample < band + 8; nsample++) {
487 float c1 = su1[nsample];
488 float c2 = su2[nsample];
489 c2 = c1 *
INTERPOLATE(mc1_l, mc2_l, nsample - band) +
492 su2[nsample] = c1 * 2.0 -
c2;
499 for (; nsample < band + 256; nsample++) {
500 float c1 = su1[nsample];
501 float c2 = su2[nsample];
502 su1[nsample] = c2 * 2.0;
503 su2[nsample] = (c1 -
c2) * 2.0;
507 for (; nsample < band + 256; nsample++) {
508 float c1 = su1[nsample];
509 float c2 = su2[nsample];
510 su1[nsample] = (c1 +
c2) * 2.0;
511 su2[nsample] = c2 * -2.0;
516 for (; nsample < band + 256; nsample++) {
517 float c1 = su1[nsample];
518 float c2 = su2[nsample];
519 su1[nsample] = c1 +
c2;
520 su2[nsample] = c1 -
c2;
535 ch[0] = (index & 7) / 7.0;
536 ch[1] = sqrt(2 - ch[0] * ch[0]);
538 FFSWAP(
float, ch[0], ch[1]);
548 if (p3[1] != 7 || p3[3] != 7) {
552 for (band = 256; band < 4 * 256; band += 256) {
553 for (nsample = band; nsample < band + 8; nsample++) {
554 su1[nsample] *=
INTERPOLATE(w[0][0], w[0][1], nsample - band);
555 su2[nsample] *=
INTERPOLATE(w[1][0], w[1][1], nsample - band);
557 for(; nsample < band + 256; nsample++) {
558 su1[nsample] *= w[1][0];
559 su2[nsample] *= w[1][1];
575 int channel_num,
int coding_mode)
577 int band,
ret, num_subbands, last_tonal, num_bands;
616 num_bands =
FFMAX((last_tonal + 256) >> 8, num_bands);
620 for (band = 0; band < 4; band++) {
622 if (band <= num_bands)
631 256, &output[band * 256]);
662 for (i = 0; i < avctx->
block_align / 2; i++, ptr1++, ptr2--)
672 for (i = 4; *ptr1 == 0xF8; i++, ptr1++) {
687 for (i = 0; i < 4; i++) {
708 for (i = 0; i < avctx->
channels; i++) {
722 for (i = 0; i < avctx->
channels; i++) {
723 float *p1 = out_samples[i];
724 float *p2 = p1 + 256;
725 float *p3 = p2 + 256;
726 float *p4 = p3 + 256;
736 int *got_frame_ptr,
AVPacket *avpkt)
740 int buf_size = avpkt->
size;
745 if (buf_size < avctx->block_align) {
747 "Frame too small (%d bytes). Truncated file?\n", buf_size);
783 for (i = 0; i < 7; i++) {
795 static int static_init_done;
797 int version, delay, samples_per_frame, frame_factor;
806 if (!static_init_done)
808 static_init_done = 1;
814 bytestream_get_le16(&edata_ptr));
818 bytestream_get_le16(&edata_ptr));
819 frame_factor = bytestream_get_le16(&edata_ptr);
821 bytestream_get_le16(&edata_ptr));
840 version = bytestream_get_be32(&edata_ptr);
841 samples_per_frame = bytestream_get_be16(&edata_ptr);
842 delay = bytestream_get_be16(&edata_ptr);
866 if (delay != 0x88E) {
911 for (i = 0; i < 4; i++) {