35 #define BITSTREAM_READER_LE
46 #define V_MAX_VLCS (1 << 16)
47 #define V_MAX_PARTITIONS (1 << 20)
160 (13.1f * atan(0.00074f * (x)) + 2.24f * atan(1.85e-8f * (x) * (x)) + 1e-4f * (x))
162 static const char idx_err_str[] =
"Index value %d out of range (0 - %d) for %s at %s:%i\n";
163 #define VALIDATE_INDEX(idx, limit) \
165 av_log(vc->avctx, AV_LOG_ERROR,\
167 (int)(idx), (int)(limit - 1), #idx, __FILE__, __LINE__);\
168 return AVERROR_INVALIDDATA;\
170 #define GET_VALIDATED_INDEX(idx, bits, limit) \
172 idx = get_bits(gb, bits);\
173 VALIDATE_INDEX(idx, limit)\
178 double mant =
val & 0x1fffff;
179 long exp = (
val & 0x7fe00000
L) >> 21;
180 if (
val & 0x80000000)
182 return ldexp(mant,
exp - 20 - 768);
197 for (
i = 0;
i < vc->residue_count;
i++)
206 for (
i = 0;
i < vc->codebook_count; ++
i) {
213 for (
i = 0;
i < vc->floor_count; ++
i) {
214 if (vc->floors[
i].floor_type == 0) {
217 av_freep(&vc->floors[
i].data.t0.book_list);
226 for (
i = 0;
i < vc->mapping_count; ++
i) {
242 uint32_t *tmp_vlc_codes =
NULL;
244 uint16_t *codebook_multiplicands =
NULL;
247 vc->codebook_count =
get_bits(gb, 8) + 1;
249 ff_dlog(
NULL,
" Codebooks: %d \n", vc->codebook_count);
251 vc->codebooks =
av_mallocz(vc->codebook_count *
sizeof(*vc->codebooks));
255 if (!vc->codebooks ||
256 !tmp_vlc_bits || !tmp_vlc_codes || !codebook_multiplicands) {
261 for (
cb = 0;
cb < vc->codebook_count; ++
cb) {
263 unsigned ordered, t, entries, used_entries = 0;
269 " %u. Codebook setup data corrupt.\n",
cb);
277 " %u. Codebook's dimension is invalid (%d).\n",
285 " %u. Codebook has too many entries (%u).\n",
293 ff_dlog(
NULL,
" codebook_dimensions %d, codebook_entries %u\n",
306 for (ce = 0; ce < entries; ++ce) {
309 tmp_vlc_bits[ce] =
get_bits(gb, 5) + 1;
312 tmp_vlc_bits[ce] = 0;
317 used_entries = entries;
318 for (ce = 0; ce < entries; ++ce)
319 tmp_vlc_bits[ce] =
get_bits(gb, 5) + 1;
322 unsigned current_entry = 0;
323 unsigned current_length =
get_bits(gb, 5) + 1;
325 ff_dlog(
NULL,
" ordered, current length: %u\n", current_length);
327 used_entries = entries;
328 for (; current_entry < used_entries && current_length <= 32; ++current_length) {
337 for (
i = current_entry;
i < number+current_entry; ++
i)
338 if (
i < used_entries)
339 tmp_vlc_bits[
i] = current_length;
341 current_entry+=number;
343 if (current_entry>used_entries) {
363 unsigned codebook_value_bits =
get_bits(gb, 4) + 1;
364 unsigned codebook_sequence_p =
get_bits1(gb);
366 ff_dlog(
NULL,
" We expect %d numbers for building the codevectors. \n",
367 codebook_lookup_values);
369 codebook_delta_value, codebook_minimum_value);
371 for (
i = 0;
i < codebook_lookup_values; ++
i) {
372 codebook_multiplicands[
i] =
get_bits(gb, codebook_value_bits);
374 ff_dlog(
NULL,
" multiplicands*delta+minmum : %e \n",
375 (
float)codebook_multiplicands[
i] * codebook_delta_value + codebook_minimum_value);
376 ff_dlog(
NULL,
" multiplicand %u\n", codebook_multiplicands[
i]);
391 for (j = 0,
i = 0;
i < entries; ++
i) {
394 if (tmp_vlc_bits[
i]) {
396 unsigned lookup_offset =
i;
398 ff_dlog(vc->avctx,
"Lookup offset %u ,",
i);
400 for (k = 0; k <
dim; ++k) {
401 unsigned multiplicand_offset = lookup_offset % codebook_lookup_values;
402 codebook_setup->
codevectors[j *
dim + k] = codebook_multiplicands[multiplicand_offset] * codebook_delta_value + codebook_minimum_value + last;
403 if (codebook_sequence_p)
405 lookup_offset/=codebook_lookup_values;
407 tmp_vlc_bits[j] = tmp_vlc_bits[
i];
409 ff_dlog(vc->avctx,
"real lookup offset %u, vector: ", j);
410 for (k = 0; k <
dim; ++k)
418 if (j != used_entries) {
423 entries = used_entries;
437 for (t = 0; t < entries; ++t)
438 if (tmp_vlc_bits[t] >= codebook_setup->
maxdepth)
439 codebook_setup->
maxdepth = tmp_vlc_bits[t];
449 entries, tmp_vlc_bits,
sizeof(*tmp_vlc_bits),
450 sizeof(*tmp_vlc_bits), tmp_vlc_codes,
451 sizeof(*tmp_vlc_codes),
sizeof(*tmp_vlc_codes),
460 av_free(codebook_multiplicands);
467 av_free(codebook_multiplicands);
476 unsigned i, vorbis_time_count =
get_bits(gb, 6) + 1;
478 for (
i = 0;
i < vorbis_time_count; ++
i) {
479 unsigned vorbis_tdtransform =
get_bits(gb, 16);
481 ff_dlog(
NULL,
" Vorbis time domain transform %u: %u\n",
482 vorbis_time_count, vorbis_tdtransform);
484 if (vorbis_tdtransform) {
496 static int create_map(vorbis_context *vc,
unsigned floor_number);
504 vc->floor_count =
get_bits(gb, 6) + 1;
506 vc->floors =
av_mallocz(vc->floor_count *
sizeof(*vc->floors));
510 for (
i = 0;
i < vc->floor_count; ++
i) {
518 int maximum_class = -1;
519 unsigned rangebits, rangemax, floor1_values = 2;
533 ff_dlog(
NULL,
" %d. floor %d partition class %d \n",
538 ff_dlog(
NULL,
" maximum class %d \n", maximum_class);
540 for (j = 0; j <= maximum_class; ++j) {
544 ff_dlog(
NULL,
" %d floor %d class dim: %d subclasses %d \n",
i, j,
578 "A rangebits value of 0 is not compliant with the Vorbis I specification.\n");
581 rangemax = (1 << rangebits);
582 if (rangemax > vc->blocksize[1] / 2) {
584 "Floor value is too large for blocksize: %u (%"PRIu32
")\n",
585 rangemax, vc->blocksize[1] / 2);
595 ff_dlog(
NULL,
" %u. floor1 Y coord. %d\n", floor1_values,
607 unsigned max_codebook_dim = 0;
624 "Floor 0 bark map size is 0.\n");
643 if (vc->codebooks[book_idx].dimensions > max_codebook_dim)
644 max_codebook_dim = vc->codebooks[book_idx].dimensions;
694 vc->residue_count =
get_bits(gb, 6)+1;
695 vc->residues =
av_mallocz(vc->residue_count *
sizeof(*vc->residues));
699 ff_dlog(
NULL,
" There are %d residues. \n", vc->residue_count);
701 for (
i = 0;
i < vc->residue_count; ++
i) {
704 unsigned high_bits, low_bits;
714 if (res_setup->
begin>res_setup->
end ||
717 "partition out of bounds: type, begin, end, size, blocksize: %"PRIu16
", %"PRIu32
", %"PRIu32
", %u, %"PRIu32
"\n",
734 ff_dlog(
NULL,
" begin %"PRIu32
" end %"PRIu32
" part.size %u classif.s %"PRIu8
" classbook %"PRIu8
"\n",
743 cascade[j] = (high_bits << 3) + low_bits;
750 for (k = 0; k < 8; ++k) {
751 if (cascade[j]&(1 << k)) {
754 ff_dlog(
NULL,
" %u class cascade depth %u book: %d\n",
755 j, k, res_setup->
books[j][k]);
760 res_setup->
books[j][k] = -1;
775 vc->mapping_count =
get_bits(gb, 6)+1;
776 vc->mappings =
av_mallocz(vc->mapping_count *
sizeof(*vc->mappings));
780 ff_dlog(
NULL,
" There are %d mappings. \n", vc->mapping_count);
782 for (
i = 0;
i < vc->mapping_count; ++
i) {
786 av_log(vc->avctx,
AV_LOG_ERROR,
"Other mappings than type 0 are not compliant with the Vorbis I specification. \n");
797 if (vc->audio_channels < 2) {
799 "Square polar channel mapping with less than two channels is not compliant with the Vorbis I specification.\n");
805 sizeof(*mapping_setup->
angle));
825 if (mapping_setup->
submaps>1) {
827 sizeof(*mapping_setup->
mux));
828 if (!mapping_setup->
mux)
831 for (j = 0; j < vc->audio_channels; ++j)
835 for (j = 0; j < mapping_setup->
submaps; ++j) {
840 ff_dlog(
NULL,
" %u mapping %u submap : floor %d, residue %d\n",
i, j,
850 static int create_map(vorbis_context *vc,
unsigned floor_number)
858 for (blockflag = 0; blockflag < 2; ++blockflag) {
859 n = vc->blocksize[blockflag] / 2;
860 floors[floor_number].
data.
t0.
map[blockflag] =
862 if (!floors[floor_number].
data.t0.map[blockflag])
866 vf = &floors[floor_number].
data.
t0;
868 for (idx = 0; idx < n; ++idx) {
869 map[idx] = floor(
BARK((vf->rate * idx) / (2.0f * n)) *
870 (vf->bark_map_size /
BARK(vf->rate / 2.0f)));
871 if (vf->bark_map_size-1 <
map[idx])
872 map[idx] = vf->bark_map_size - 1;
875 vf->map_size[blockflag] = n;
878 for (idx = 0; idx <= n; ++idx) {
879 ff_dlog(
NULL,
"floor0 map: map at pos %d is %"PRId32
"\n", idx,
map[idx]);
890 vc->mode_count =
get_bits(gb, 6) + 1;
891 vc->modes =
av_mallocz(vc->mode_count *
sizeof(*vc->modes));
895 ff_dlog(
NULL,
" There are %d modes.\n", vc->mode_count);
897 for (
i = 0;
i < vc->mode_count; ++
i) {
905 ff_dlog(
NULL,
" %u mode: blockflag %d, windowtype %d, transformtype %d, mapping %d\n",
922 av_log(vc->avctx,
AV_LOG_ERROR,
" Vorbis setup header packet corrupt (no vorbis signature). \n");
927 av_log(vc->avctx,
AV_LOG_ERROR,
" Vorbis setup header packet corrupt (codebooks). \n");
931 av_log(vc->avctx,
AV_LOG_ERROR,
" Vorbis setup header packet corrupt (time domain transforms). \n");
939 av_log(vc->avctx,
AV_LOG_ERROR,
" Vorbis setup header packet corrupt (residues). \n");
943 av_log(vc->avctx,
AV_LOG_ERROR,
" Vorbis setup header packet corrupt (mappings). \n");
951 av_log(vc->avctx,
AV_LOG_ERROR,
" Vorbis setup header packet corrupt (framing flag). \n");
968 av_log(vc->avctx,
AV_LOG_ERROR,
" Vorbis id header packet corrupt (no vorbis signature). \n");
973 vc->audio_channels =
get_bits(gb, 8);
974 if (vc->audio_channels <= 0) {
979 if (vc->audio_samplerate <= 0) {
988 if (bl0 > 13 || bl0 < 6 || bl1 > 13 || bl1 < 6 || bl1 < bl0) {
989 av_log(vc->avctx,
AV_LOG_ERROR,
" Vorbis id header packet corrupt (illegal blocksize). \n");
992 vc->blocksize[0] = (1 << bl0);
993 vc->blocksize[1] = (1 << bl1);
998 av_log(vc->avctx,
AV_LOG_ERROR,
" Vorbis id header packet corrupt (framing flag not set). \n");
1002 vc->channel_residues =
av_malloc_array(vc->blocksize[1] / 2, vc->audio_channels *
sizeof(*vc->channel_residues));
1003 vc->saved =
av_mallocz_array(vc->blocksize[1] / 4, vc->audio_channels *
sizeof(*vc->saved));
1004 if (!vc->channel_residues || !vc->saved)
1007 vc->previous_window = -1;
1015 ff_dlog(
NULL,
" vorbis version %"PRIu32
" \n audio_channels %"PRIu8
" \n audio_samplerate %"PRIu32
" \n bitrate_max %"PRIu32
" \n bitrate_nom %"PRIu32
" \n bitrate_min %"PRIu32
" \n blk_0 %"PRIu32
" blk_1 %"PRIu32
" \n ",
1016 vc->version, vc->audio_channels, vc->audio_samplerate, vc->bitrate_maximum, vc->bitrate_nominal, vc->bitrate_minimum, vc->blocksize[0], vc->blocksize[1]);
1035 const uint8_t *header_start[3];
1057 if (hdr_type != 1) {
1069 if (hdr_type != 5) {
1080 if (vc->audio_channels > 8)
1085 avctx->
channels = vc->audio_channels;
1099 float *lsp = vf->lsp;
1102 unsigned blockflag = vc->modes[vc->mode_number].blockflag;
1104 if (!vf->amplitude_bits)
1107 amplitude =
get_bits64(&vc->gb, vf->amplitude_bits);
1108 if (amplitude > 0) {
1110 unsigned idx, lsp_len = 0;
1114 if (book_idx >= vf->num_books) {
1118 ff_dlog(
NULL,
"floor0 dec: booknumber: %u\n", book_idx);
1119 codebook = vc->codebooks[vf->book_list[book_idx]];
1124 while (lsp_len<vf->order) {
1135 ff_dlog(
NULL,
"floor0 dec: vector offset: %d\n", vec_off);
1137 for (idx = 0; idx < codebook.
dimensions; ++idx)
1138 lsp[lsp_len+idx] = codebook.
codevectors[vec_off+idx] + last;
1139 last = lsp[lsp_len+idx-1];
1146 for (idx = 0; idx < lsp_len; ++idx)
1147 ff_dlog(
NULL,
"floor0 dec: coeff at %d is %f\n", idx, lsp[idx]);
1153 int order = vf->order;
1154 float wstep =
M_PI / vf->bark_map_size;
1156 for (
i = 0;
i < order;
i++)
1157 lsp[
i] = 2.0
f * cos(lsp[
i]);
1159 ff_dlog(
NULL,
"floor0 synth: map_size = %"PRIu32
"; m = %d; wstep = %f\n",
1160 vf->map_size[blockflag], order, wstep);
1163 while (i < vf->map_size[blockflag]) {
1164 int j, iter_cond = vf->map[blockflag][
i];
1167 float two_cos_w = 2.0f * cos(wstep * iter_cond);
1170 for (j = 0; j + 1 < order; j += 2) {
1171 q *= lsp[j] - two_cos_w;
1172 p *= lsp[j + 1] - two_cos_w;
1175 p *= p * (2.0f - two_cos_w);
1176 q *= q * (2.0f + two_cos_w);
1178 q *= two_cos_w-lsp[j];
1181 p *= p * (4.f - two_cos_w * two_cos_w);
1189 q =
exp((((amplitude*vf->amplitude_offset) /
1190 (((1ULL << vf->amplitude_bits) - 1) * sqrt(p + q)))
1191 - vf->amplitude_offset) * .11512925f);
1196 }
while (vf->map[blockflag][
i] == iter_cond);
1214 uint16_t range_v[4] = { 256, 128, 86, 64 };
1215 unsigned range = range_v[vf->multiplier - 1];
1216 uint16_t floor1_Y[258];
1217 uint16_t floor1_Y_final[258];
1218 int floor1_flag[258];
1219 unsigned partition_class, cdim, cbits, csub, cval,
offset,
i, j;
1220 int book, adx, ady, dy, off, predicted, err;
1231 ff_dlog(
NULL,
"floor 0 Y %d floor 1 Y %d \n", floor1_Y[0], floor1_Y[1]);
1234 for (
i = 0;
i < vf->partitions; ++
i) {
1235 partition_class = vf->partition_class[
i];
1236 cdim = vf->class_dimensions[partition_class];
1237 cbits = vf->class_subclasses[partition_class];
1238 csub = (1 << cbits) - 1;
1244 cval =
get_vlc2(gb, vc->codebooks[vf->class_masterbook[partition_class]].vlc.table,
1245 vc->codebooks[vf->class_masterbook[partition_class]].nb_bits, 3);
1247 for (j = 0; j < cdim; ++j) {
1248 book = vf->subclass_books[partition_class][cval & csub];
1250 ff_dlog(
NULL,
"book %d Cbits %u cval %u bits:%d\n",
1253 cval = cval >> cbits;
1255 int v =
get_vlc2(gb, vc->codebooks[book].vlc.table,
1256 vc->codebooks[book].nb_bits, 3);
1274 floor1_Y_final[0] = floor1_Y[0];
1275 floor1_Y_final[1] = floor1_Y[1];
1277 for (
i = 2;
i < vf->x_list_dim; ++
i) {
1278 unsigned val, highroom, lowroom, room, high_neigh_offs, low_neigh_offs;
1280 low_neigh_offs = vf->list[
i].low;
1281 high_neigh_offs = vf->list[
i].high;
1282 dy = floor1_Y_final[high_neigh_offs] - floor1_Y_final[low_neigh_offs];
1283 adx = vf->list[high_neigh_offs].x - vf->list[low_neigh_offs].x;
1285 err = ady * (vf->list[
i].x - vf->list[low_neigh_offs].x);
1288 predicted = floor1_Y_final[low_neigh_offs] - off;
1290 predicted = floor1_Y_final[low_neigh_offs] + off;
1294 highroom = range-predicted;
1295 lowroom = predicted;
1296 if (highroom < lowroom) {
1297 room = highroom * 2;
1302 floor1_flag[low_neigh_offs] = 1;
1303 floor1_flag[high_neigh_offs] = 1;
1306 if (highroom > lowroom) {
1307 floor1_Y_final[
i] = av_clip_uint16(
val - lowroom + predicted);
1309 floor1_Y_final[
i] = av_clip_uint16(predicted -
val + highroom - 1);
1313 floor1_Y_final[
i] = av_clip_uint16(predicted - (
val + 1) / 2);
1315 floor1_Y_final[
i] = av_clip_uint16(predicted +
val / 2);
1320 floor1_Y_final[
i] = av_clip_uint16(predicted);
1323 ff_dlog(
NULL,
" Decoded floor(%d) = %u / val %u\n",
1324 vf->list[
i].x, floor1_Y_final[
i],
val);
1340 int partition_count,
1349 for (p = 0, j = 0; j < ch_used; ++j) {
1350 if (!do_not_decode[j]) {
1360 "Invalid vlc code decoding %d channel.", j);
1365 for (
i = partition_count + c_p_c - 1;
i >= partition_count;
i--) {
1366 if (
i < ptns_to_read)
1370 for (
i = partition_count + c_p_c - 1;
i >= partition_count;
i--) {
1371 temp2 = (((uint64_t)
temp) * inverse_class) >> 32;
1373 if (
i < ptns_to_read)
1395 unsigned c_p_c = vc->codebooks[vr->
classbook].dimensions;
1397 unsigned pass, ch_used,
i, j, k, l;
1398 unsigned max_output = (ch - 1) * vlen;
1400 int libvorbis_bug = 0;
1403 for (j = 1; j < ch; ++j)
1404 do_not_decode[0] &= do_not_decode[j];
1405 if (do_not_decode[0])
1408 max_output += vr->
end / ch;
1411 max_output += vr->
end;
1414 if (max_output > ch_left * vlen) {
1415 if (max_output <= ch_left * vlen + vr->partition_size*ch_used/ch) {
1424 ff_dlog(
NULL,
" residue type 0/1/2 decode begin, ch: %d cpc %d \n", ch, c_p_c);
1427 int voffset, partition_count, j_times_ptns_to_read;
1429 voffset = vr->
begin;
1430 for (partition_count = 0; partition_count < ptns_to_read;) {
1432 int ret =
setup_classifs(vc, vr, do_not_decode, ch_used, partition_count, ptns_to_read);
1436 for (
i = 0; (
i < c_p_c) && (partition_count < ptns_to_read); ++
i) {
1437 for (j_times_ptns_to_read = 0, j = 0; j < ch_used; ++j) {
1440 if (!do_not_decode[j]) {
1441 unsigned vqclass = classifs[j_times_ptns_to_read + partition_count];
1444 if (vqbook >= 0 && vc->codebooks[vqbook].codevectors) {
1446 unsigned dim = vc->codebooks[vqbook].dimensions;
1452 voffs = voffset+j*vlen;
1453 for (k = 0; k <
step; ++k) {
1458 for (l = 0; l <
dim; ++l)
1461 }
else if (vr_type == 1) {
1462 voffs = voffset + j * vlen;
1463 for (k = 0; k <
step; ++k) {
1468 for (l = 0; l <
dim; ++l, ++voffs) {
1471 ff_dlog(
NULL,
" pass %d offs: %d curr: %f change: %f cv offs.: %d \n",
1475 }
else if (vr_type == 2 && ch == 2 && (voffset & 1) == 0 && (
dim & 1) == 0) {
1476 voffs = voffset >> 1;
1479 for (k = 0; k <
step; ++k) {
1485 vec[voffs + k + vlen] += codebook.
codevectors[coffs + 1];
1487 }
else if (
dim == 4) {
1488 for (k = 0; k <
step; ++k, voffs += 2) {
1494 vec[voffs + 1 ] += codebook.
codevectors[coffs + 2];
1495 vec[voffs + vlen ] += codebook.
codevectors[coffs + 1];
1496 vec[voffs + vlen + 1] += codebook.
codevectors[coffs + 3];
1499 for (k = 0; k <
step; ++k) {
1504 for (l = 0; l <
dim; l += 2, voffs++) {
1506 vec[voffs + vlen] += codebook.
codevectors[coffs + l + 1];
1508 ff_dlog(
NULL,
" pass %d offs: %d curr: %f change: %f cv offs.: %d+%d \n",
1509 pass, voffset / ch + (voffs % ch) * vlen,
1510 vec[voffset / ch + (voffs % ch) * vlen],
1515 }
else if (vr_type == 2) {
1516 unsigned voffs_div = ch == 1 ? voffset :
FASTDIV(voffset, ch);
1517 unsigned voffs_mod = voffset - voffs_div * ch;
1519 for (k = 0; k <
step; ++k) {
1524 for (l = 0; l <
dim; ++l) {
1525 vec[voffs_div + voffs_mod * vlen] +=
1528 ff_dlog(
NULL,
" pass %d offs: %d curr: %f change: %f cv offs.: %d+%d \n",
1529 pass, voffs_div + voffs_mod * vlen,
1530 vec[voffs_div + voffs_mod * vlen],
1533 if (++voffs_mod == ch) {
1542 j_times_ptns_to_read += ptns_to_read;
1548 if (libvorbis_bug && !
pass) {
1549 for (j = 0; j < ch_used; ++j) {
1550 if (!do_not_decode[j]) {
1552 vc->codebooks[vr->
classbook].nb_bits, 3);
1563 float *vec,
unsigned vlen,
1568 else if (vr->
type == 1)
1570 else if (vr->
type == 0)
1581 for (
i = 0;
i < blocksize;
i++) {
1584 ang[
i] = mag[
i] - ang[
i];
1586 float temp = ang[
i];
1594 float temp = ang[
i];
1608 int previous_window = vc->previous_window;
1609 unsigned mode_number, blockflag, blocksize;
1614 float *ch_res_ptr = vc->channel_residues;
1616 unsigned res_num = 0;
1618 unsigned ch_left = vc->audio_channels;
1626 if (vc->mode_count == 1) {
1631 vc->mode_number = mode_number;
1632 mapping = &vc->mappings[vc->modes[mode_number].mapping];
1634 ff_dlog(
NULL,
" Mode number: %u , mapping: %d , blocktype %d\n", mode_number,
1635 vc->modes[mode_number].mapping, vc->modes[mode_number].blockflag);
1637 blockflag = vc->modes[mode_number].blockflag;
1638 blocksize = vc->blocksize[blockflag];
1639 vlen = blocksize / 2;
1642 if (previous_window < 0)
1643 previous_window =
code>>1;
1644 }
else if (previous_window < 0)
1645 previous_window = 0;
1647 memset(ch_res_ptr, 0,
sizeof(
float) * vc->audio_channels * vlen);
1648 for (
i = 0;
i < vc->audio_channels; ++
i)
1649 memset(floor_ptr[
i], 0, vlen *
sizeof(floor_ptr[0][0]));
1653 for (
i = 0;
i < vc->audio_channels; ++
i) {
1668 no_residue[
i] =
ret;
1674 if (!(no_residue[mapping->
magnitude[
i]] & no_residue[mapping->
angle[
i]])) {
1676 no_residue[mapping->
angle[
i]] = 0;
1687 for (j = 0; j < vc->audio_channels; ++j) {
1688 if ((mapping->
submaps == 1) || (
i == mapping->
mux[j])) {
1689 res_chan[j] = res_num;
1690 if (no_residue[j]) {
1691 do_not_decode[ch] = 1;
1693 do_not_decode[ch] = 0;
1710 ch_res_ptr += ch * vlen;
1722 mag = vc->channel_residues+res_chan[mapping->
magnitude[
i]] * blocksize / 2;
1723 ang = vc->channel_residues+res_chan[mapping->
angle[
i]] * blocksize / 2;
1724 vc->dsp.vorbis_inverse_coupling(mag, ang, blocksize / 2);
1729 mdct = &vc->mdct[blockflag];
1731 for (j = vc->audio_channels-1;j >= 0; j--) {
1732 ch_res_ptr = vc->channel_residues + res_chan[j] * blocksize / 2;
1733 vc->fdsp->vector_fmul(floor_ptr[j], floor_ptr[j], ch_res_ptr, blocksize / 2);
1734 mdct->
imdct_half(mdct, ch_res_ptr, floor_ptr[j]);
1739 retlen = (blocksize + vc->blocksize[previous_window]) / 4;
1740 for (j = 0; j < vc->audio_channels; j++) {
1741 unsigned bs0 = vc->blocksize[0];
1742 unsigned bs1 = vc->blocksize[1];
1743 float *residue = vc->channel_residues + res_chan[j] * blocksize / 2;
1744 float *saved = vc->saved + j * bs1 / 4;
1745 float *
ret = floor_ptr[j];
1746 float *buf = residue;
1747 const float *
win = vc->win[blockflag & previous_window];
1749 if (blockflag == previous_window) {
1750 vc->fdsp->vector_fmul_window(
ret, saved, buf,
win, blocksize / 4);
1751 }
else if (blockflag > previous_window) {
1752 vc->fdsp->vector_fmul_window(
ret, saved, buf,
win, bs0 / 4);
1753 memcpy(
ret+bs0/2, buf+bs0/4, ((bs1-bs0)/4) *
sizeof(
float));
1755 memcpy(
ret, saved, ((bs1 - bs0) / 4) *
sizeof(
float));
1756 vc->fdsp->vector_fmul_window(
ret + (bs1 - bs0) / 4, saved + (bs1 - bs0) / 4, buf,
win, bs0 / 4);
1758 memcpy(saved, buf + blocksize / 4, blocksize / 4 *
sizeof(
float));
1761 vc->previous_window = blockflag;
1768 int *got_frame_ptr,
AVPacket *avpkt)
1771 int buf_size = avpkt->
size;
1775 float *channel_ptrs[255];
1780 if (*buf == 1 && buf_size > 7) {
1791 if (vc->audio_channels > 8)
1796 avctx->
channels = vc->audio_channels;
1801 if (*buf == 3 && buf_size > 7) {
1806 if (*buf == 5 && buf_size > 7 && vc->channel_residues && !vc->modes) {
1818 if (!vc->channel_residues || !vc->modes) {
1824 frame->nb_samples = vc->blocksize[1] / 2;
1828 if (vc->audio_channels > 8) {
1829 for (
i = 0;
i < vc->audio_channels;
i++)
1830 channel_ptrs[
i] = (
float *)
frame->extended_data[
i];
1832 for (
i = 0;
i < vc->audio_channels;
i++) {
1834 channel_ptrs[ch] = (
float *)
frame->extended_data[
i];
1844 if (!vc->first_frame) {
1845 vc->first_frame = 1;
1851 ff_dlog(
NULL,
"parsed %d bytes %d bits, returned %d samples (*ch*bits) \n",
1876 memset(vc->saved, 0, (vc->blocksize[1] / 4) * vc->audio_channels *
1877 sizeof(*vc->saved));
1879 vc->previous_window = -1;
1880 vc->first_frame = 0;
1888 .priv_data_size =
sizeof(vorbis_context),