36 #define BITSTREAM_READER_LE
48 #define V_MAX_VLCS (1 << 16)
49 #define V_MAX_PARTITIONS (1 << 20)
165 (13.1f * atan(0.00074f * (x)) + 2.24f * atan(1.85e-8f * (x) * (x)) + 1e-4f * (x))
167 static const char idx_err_str[] =
"Index value %d out of range (0 - %d) for %s at %s:%i\n";
168 #define VALIDATE_INDEX(idx, limit) \
170 av_log(vc->avctx, AV_LOG_ERROR,\
172 (int)(idx), (int)(limit - 1), #idx, __FILE__, __LINE__);\
173 return AVERROR_INVALIDDATA;\
175 #define GET_VALIDATED_INDEX(idx, bits, limit) \
177 idx = get_bits(gb, bits);\
178 VALIDATE_INDEX(idx, limit)\
183 double mant =
val & 0x1fffff;
184 long exp = (
val & 0x7fe00000
L) >> 21;
185 if (
val & 0x80000000)
187 return ldexp(mant,
exp - 20 - 768);
202 for (
i = 0;
i < vc->residue_count;
i++)
211 for (
i = 0;
i < vc->codebook_count; ++
i) {
218 for (
i = 0;
i < vc->floor_count; ++
i) {
219 if (vc->floors[
i].floor_type == 0) {
222 av_freep(&vc->floors[
i].data.t0.book_list);
231 for (
i = 0;
i < vc->mapping_count; ++
i) {
246 uint8_t *tmp_vlc_bits =
NULL;
247 uint32_t *tmp_vlc_codes =
NULL;
249 uint16_t *codebook_multiplicands =
NULL;
252 vc->codebook_count =
get_bits(gb, 8) + 1;
254 ff_dlog(
NULL,
" Codebooks: %d \n", vc->codebook_count);
256 vc->codebooks =
av_mallocz(vc->codebook_count *
sizeof(*vc->codebooks));
260 if (!vc->codebooks ||
261 !tmp_vlc_bits || !tmp_vlc_codes || !codebook_multiplicands) {
266 for (
cb = 0;
cb < vc->codebook_count; ++
cb) {
268 unsigned ordered, t, entries, used_entries = 0;
274 " %u. Codebook setup data corrupt.\n",
cb);
282 " %u. Codebook's dimension is invalid (%d).\n",
290 " %u. Codebook has too many entries (%u).\n",
298 ff_dlog(
NULL,
" codebook_dimensions %d, codebook_entries %u\n",
311 for (ce = 0; ce < entries; ++ce) {
314 tmp_vlc_bits[ce] =
get_bits(gb, 5) + 1;
317 tmp_vlc_bits[ce] = 0;
322 used_entries = entries;
323 for (ce = 0; ce < entries; ++ce)
324 tmp_vlc_bits[ce] =
get_bits(gb, 5) + 1;
327 unsigned current_entry = 0;
328 unsigned current_length =
get_bits(gb, 5) + 1;
330 ff_dlog(
NULL,
" ordered, current length: %u\n", current_length);
332 used_entries = entries;
333 for (; current_entry < used_entries && current_length <= 32; ++current_length) {
342 for (
i = current_entry;
i < number+current_entry; ++
i)
343 if (
i < used_entries)
344 tmp_vlc_bits[
i] = current_length;
346 current_entry+=number;
348 if (current_entry>used_entries) {
368 unsigned codebook_value_bits =
get_bits(gb, 4) + 1;
369 unsigned codebook_sequence_p =
get_bits1(gb);
371 ff_dlog(
NULL,
" We expect %d numbers for building the codevectors. \n",
372 codebook_lookup_values);
374 codebook_delta_value, codebook_minimum_value);
376 for (
i = 0;
i < codebook_lookup_values; ++
i) {
377 codebook_multiplicands[
i] =
get_bits(gb, codebook_value_bits);
379 ff_dlog(
NULL,
" multiplicands*delta+minmum : %e \n",
380 (
float)codebook_multiplicands[
i] * codebook_delta_value + codebook_minimum_value);
381 ff_dlog(
NULL,
" multiplicand %u\n", codebook_multiplicands[
i]);
396 for (j = 0,
i = 0;
i < entries; ++
i) {
399 if (tmp_vlc_bits[
i]) {
401 unsigned lookup_offset =
i;
403 ff_dlog(vc->avctx,
"Lookup offset %u ,",
i);
405 for (k = 0; k <
dim; ++k) {
406 unsigned multiplicand_offset = lookup_offset % codebook_lookup_values;
407 codebook_setup->
codevectors[j *
dim + k] = codebook_multiplicands[multiplicand_offset] * codebook_delta_value + codebook_minimum_value + last;
408 if (codebook_sequence_p)
410 lookup_offset/=codebook_lookup_values;
412 tmp_vlc_bits[j] = tmp_vlc_bits[
i];
414 ff_dlog(vc->avctx,
"real lookup offset %u, vector: ", j);
415 for (k = 0; k <
dim; ++k)
423 if (j != used_entries) {
428 entries = used_entries;
442 for (t = 0; t < entries; ++t)
443 if (tmp_vlc_bits[t] >= codebook_setup->
maxdepth)
444 codebook_setup->
maxdepth = tmp_vlc_bits[t];
454 entries, tmp_vlc_bits,
sizeof(*tmp_vlc_bits),
455 sizeof(*tmp_vlc_bits), tmp_vlc_codes,
456 sizeof(*tmp_vlc_codes),
sizeof(*tmp_vlc_codes),
465 av_free(codebook_multiplicands);
472 av_free(codebook_multiplicands);
481 unsigned i, vorbis_time_count =
get_bits(gb, 6) + 1;
483 for (
i = 0;
i < vorbis_time_count; ++
i) {
484 unsigned vorbis_tdtransform =
get_bits(gb, 16);
486 ff_dlog(
NULL,
" Vorbis time domain transform %u: %u\n",
487 vorbis_time_count, vorbis_tdtransform);
489 if (vorbis_tdtransform) {
501 static int create_map(vorbis_context *vc,
unsigned floor_number);
509 vc->floor_count =
get_bits(gb, 6) + 1;
511 vc->floors =
av_mallocz(vc->floor_count *
sizeof(*vc->floors));
515 for (
i = 0;
i < vc->floor_count; ++
i) {
523 int maximum_class = -1;
524 unsigned rangebits, rangemax, floor1_values = 2;
538 ff_dlog(
NULL,
" %d. floor %d partition class %d \n",
543 ff_dlog(
NULL,
" maximum class %d \n", maximum_class);
545 for (j = 0; j <= maximum_class; ++j) {
549 ff_dlog(
NULL,
" %d floor %d class dim: %d subclasses %d \n",
i, j,
583 "A rangebits value of 0 is not compliant with the Vorbis I specification.\n");
586 rangemax = (1 << rangebits);
587 if (rangemax > vc->blocksize[1] / 2) {
589 "Floor value is too large for blocksize: %u (%"PRIu32
")\n",
590 rangemax, vc->blocksize[1] / 2);
600 ff_dlog(
NULL,
" %u. floor1 Y coord. %d\n", floor1_values,
612 unsigned max_codebook_dim = 0;
629 "Floor 0 bark map size is 0.\n");
648 if (vc->codebooks[book_idx].dimensions > max_codebook_dim)
649 max_codebook_dim = vc->codebooks[book_idx].dimensions;
699 vc->residue_count =
get_bits(gb, 6)+1;
700 vc->residues =
av_mallocz(vc->residue_count *
sizeof(*vc->residues));
704 ff_dlog(
NULL,
" There are %d residues. \n", vc->residue_count);
706 for (
i = 0;
i < vc->residue_count; ++
i) {
709 unsigned high_bits, low_bits;
719 if (res_setup->
begin>res_setup->
end ||
722 "partition out of bounds: type, begin, end, size, blocksize: %"PRIu16
", %"PRIu32
", %"PRIu32
", %u, %"PRIu32
"\n",
739 ff_dlog(
NULL,
" begin %"PRIu32
" end %"PRIu32
" part.size %u classif.s %"PRIu8
" classbook %"PRIu8
"\n",
748 cascade[j] = (high_bits << 3) + low_bits;
755 for (k = 0; k < 8; ++k) {
756 if (cascade[j]&(1 << k)) {
759 ff_dlog(
NULL,
" %u class cascade depth %u book: %d\n",
760 j, k, res_setup->
books[j][k]);
765 res_setup->
books[j][k] = -1;
780 vc->mapping_count =
get_bits(gb, 6)+1;
781 vc->mappings =
av_mallocz(vc->mapping_count *
sizeof(*vc->mappings));
785 ff_dlog(
NULL,
" There are %d mappings. \n", vc->mapping_count);
787 for (
i = 0;
i < vc->mapping_count; ++
i) {
791 av_log(vc->avctx,
AV_LOG_ERROR,
"Other mappings than type 0 are not compliant with the Vorbis I specification. \n");
802 if (vc->audio_channels < 2) {
804 "Square polar channel mapping with less than two channels is not compliant with the Vorbis I specification.\n");
810 sizeof(*mapping_setup->
angle));
830 if (mapping_setup->
submaps>1) {
832 sizeof(*mapping_setup->
mux));
833 if (!mapping_setup->
mux)
836 for (j = 0; j < vc->audio_channels; ++j)
840 for (j = 0; j < mapping_setup->
submaps; ++j) {
845 ff_dlog(
NULL,
" %u mapping %u submap : floor %d, residue %d\n",
i, j,
855 static int create_map(vorbis_context *vc,
unsigned floor_number)
863 for (blockflag = 0; blockflag < 2; ++blockflag) {
864 n = vc->blocksize[blockflag] / 2;
865 floors[floor_number].
data.
t0.
map[blockflag] =
867 if (!floors[floor_number].
data.t0.map[blockflag])
871 vf = &floors[floor_number].
data.
t0;
873 for (idx = 0; idx < n; ++idx) {
875 (vf->bark_map_size /
BARK(vf->rate / 2.0f)));
876 if (vf->bark_map_size-1 <
map[idx])
877 map[idx] = vf->bark_map_size - 1;
880 vf->map_size[blockflag] = n;
883 for (idx = 0; idx <= n; ++idx) {
884 ff_dlog(
NULL,
"floor0 map: map at pos %d is %"PRId32
"\n", idx,
map[idx]);
895 vc->mode_count =
get_bits(gb, 6) + 1;
896 vc->modes =
av_mallocz(vc->mode_count *
sizeof(*vc->modes));
900 ff_dlog(
NULL,
" There are %d modes.\n", vc->mode_count);
902 for (
i = 0;
i < vc->mode_count; ++
i) {
910 ff_dlog(
NULL,
" %u mode: blockflag %d, windowtype %d, transformtype %d, mapping %d\n",
927 av_log(vc->avctx,
AV_LOG_ERROR,
" Vorbis setup header packet corrupt (no vorbis signature). \n");
932 av_log(vc->avctx,
AV_LOG_ERROR,
" Vorbis setup header packet corrupt (codebooks). \n");
936 av_log(vc->avctx,
AV_LOG_ERROR,
" Vorbis setup header packet corrupt (time domain transforms). \n");
944 av_log(vc->avctx,
AV_LOG_ERROR,
" Vorbis setup header packet corrupt (residues). \n");
948 av_log(vc->avctx,
AV_LOG_ERROR,
" Vorbis setup header packet corrupt (mappings). \n");
956 av_log(vc->avctx,
AV_LOG_ERROR,
" Vorbis setup header packet corrupt (framing flag). \n");
975 av_log(vc->avctx,
AV_LOG_ERROR,
" Vorbis id header packet corrupt (no vorbis signature). \n");
980 vc->audio_channels =
get_bits(gb, 8);
981 if (vc->audio_channels <= 0) {
986 if (vc->audio_samplerate <= 0) {
995 if (bl0 > 13 || bl0 < 6 || bl1 > 13 || bl1 < 6 || bl1 < bl0) {
996 av_log(vc->avctx,
AV_LOG_ERROR,
" Vorbis id header packet corrupt (illegal blocksize). \n");
999 vc->blocksize[0] = (1 << bl0);
1000 vc->blocksize[1] = (1 << bl1);
1005 av_log(vc->avctx,
AV_LOG_ERROR,
" Vorbis id header packet corrupt (framing flag not set). \n");
1009 vc->channel_residues =
av_malloc_array(vc->blocksize[1] / 2, vc->audio_channels *
sizeof(*vc->channel_residues));
1010 vc->saved =
av_calloc(vc->blocksize[1] / 4, vc->audio_channels *
sizeof(*vc->saved));
1011 if (!vc->channel_residues || !vc->saved)
1014 vc->previous_window = -1;
1017 vc->blocksize[0] >> 1, &
scale, 0);
1022 vc->blocksize[1] >> 1, &
scale, 0);
1030 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 ",
1031 vc->version, vc->audio_channels, vc->audio_samplerate, vc->bitrate_maximum, vc->bitrate_nominal, vc->bitrate_minimum, vc->blocksize[0], vc->blocksize[1]);
1050 const uint8_t *header_start[3];
1072 if (hdr_type != 1) {
1084 if (hdr_type != 5) {
1096 if (vc->audio_channels > 8) {
1116 float *lsp = vf->lsp;
1119 unsigned blockflag = vc->modes[vc->mode_number].blockflag;
1121 if (!vf->amplitude_bits)
1124 amplitude =
get_bits64(&vc->gb, vf->amplitude_bits);
1125 if (amplitude > 0) {
1127 unsigned idx, lsp_len = 0;
1131 if (book_idx >= vf->num_books) {
1135 ff_dlog(
NULL,
"floor0 dec: booknumber: %u\n", book_idx);
1136 codebook = vc->codebooks[vf->book_list[book_idx]];
1141 while (lsp_len<vf->order) {
1152 ff_dlog(
NULL,
"floor0 dec: vector offset: %d\n", vec_off);
1154 for (idx = 0; idx <
codebook.dimensions; ++idx)
1155 lsp[lsp_len+idx] =
codebook.codevectors[vec_off+idx] + last;
1156 last = lsp[lsp_len+idx-1];
1163 for (idx = 0; idx < lsp_len; ++idx)
1164 ff_dlog(
NULL,
"floor0 dec: coeff at %d is %f\n", idx, lsp[idx]);
1170 int order = vf->order;
1171 float wstep =
M_PI / vf->bark_map_size;
1173 for (
i = 0;
i < order;
i++)
1174 lsp[
i] = 2.0
f * cos(lsp[
i]);
1176 ff_dlog(
NULL,
"floor0 synth: map_size = %"PRIu32
"; m = %d; wstep = %f\n",
1177 vf->map_size[blockflag], order, wstep);
1180 while (i < vf->map_size[blockflag]) {
1181 int j, iter_cond = vf->map[blockflag][
i];
1184 float two_cos_w = 2.0f * cos(wstep * iter_cond);
1187 for (j = 0; j + 1 < order; j += 2) {
1188 q *= lsp[j] - two_cos_w;
1189 p *= lsp[j + 1] - two_cos_w;
1192 p *= p * (2.0f - two_cos_w);
1193 q *= q * (2.0f + two_cos_w);
1195 q *= two_cos_w-lsp[j];
1198 p *= p * (4.f - two_cos_w * two_cos_w);
1206 q =
exp((((amplitude*vf->amplitude_offset) /
1207 (((1ULL << vf->amplitude_bits) - 1) * sqrt(p + q)))
1208 - vf->amplitude_offset) * .11512925f);
1213 }
while (vf->map[blockflag][
i] == iter_cond);
1231 uint16_t range_v[4] = { 256, 128, 86, 64 };
1232 unsigned range = range_v[vf->multiplier - 1];
1233 uint16_t floor1_Y[258];
1234 uint16_t floor1_Y_final[258];
1235 int floor1_flag[258];
1236 unsigned partition_class, cdim, cbits, csub, cval,
offset,
i, j;
1237 int book, adx, ady, dy, off, predicted, err;
1248 ff_dlog(
NULL,
"floor 0 Y %d floor 1 Y %d \n", floor1_Y[0], floor1_Y[1]);
1251 for (
i = 0;
i < vf->partitions; ++
i) {
1252 partition_class = vf->partition_class[
i];
1253 cdim = vf->class_dimensions[partition_class];
1254 cbits = vf->class_subclasses[partition_class];
1255 csub = (1 << cbits) - 1;
1261 cval =
get_vlc2(gb, vc->codebooks[vf->class_masterbook[partition_class]].vlc.table,
1262 vc->codebooks[vf->class_masterbook[partition_class]].nb_bits, 3);
1264 for (j = 0; j < cdim; ++j) {
1265 book = vf->subclass_books[partition_class][cval & csub];
1267 ff_dlog(
NULL,
"book %d Cbits %u cval %u bits:%d\n",
1270 cval = cval >> cbits;
1272 int v =
get_vlc2(gb, vc->codebooks[book].vlc.table,
1273 vc->codebooks[book].nb_bits, 3);
1291 floor1_Y_final[0] = floor1_Y[0];
1292 floor1_Y_final[1] = floor1_Y[1];
1294 for (
i = 2;
i < vf->x_list_dim; ++
i) {
1295 unsigned val, highroom, lowroom, room, high_neigh_offs, low_neigh_offs;
1297 low_neigh_offs = vf->list[
i].low;
1298 high_neigh_offs = vf->list[
i].high;
1299 dy = floor1_Y_final[high_neigh_offs] - floor1_Y_final[low_neigh_offs];
1300 adx = vf->list[high_neigh_offs].x - vf->list[low_neigh_offs].x;
1302 err = ady * (vf->list[
i].x - vf->list[low_neigh_offs].x);
1305 predicted = floor1_Y_final[low_neigh_offs] - off;
1307 predicted = floor1_Y_final[low_neigh_offs] + off;
1311 highroom = range-predicted;
1312 lowroom = predicted;
1313 if (highroom < lowroom) {
1314 room = highroom * 2;
1319 floor1_flag[low_neigh_offs] = 1;
1320 floor1_flag[high_neigh_offs] = 1;
1323 if (highroom > lowroom) {
1340 ff_dlog(
NULL,
" Decoded floor(%d) = %u / val %u\n",
1341 vf->list[
i].x, floor1_Y_final[
i],
val);
1355 uint8_t *do_not_decode,
1357 int partition_count,
1363 unsigned c_p_c =
codebook->dimensions;
1366 for (p = 0, j = 0; j < ch_used; ++j) {
1367 if (!do_not_decode[j]) {
1377 "Invalid vlc code decoding %d channel.", j);
1382 for (
i = partition_count + c_p_c - 1;
i >= partition_count;
i--) {
1383 if (
i < ptns_to_read)
1387 for (
i = partition_count + c_p_c - 1;
i >= partition_count;
i--) {
1388 temp2 = (((uint64_t)
temp) * inverse_class) >> 32;
1390 if (
i < ptns_to_read)
1405 uint8_t *do_not_decode,
1412 unsigned c_p_c = vc->codebooks[vr->
classbook].dimensions;
1414 unsigned pass, ch_used,
i, j, k, l;
1415 unsigned max_output = (ch - 1) * vlen;
1417 int libvorbis_bug = 0;
1420 for (j = 1; j < ch; ++j)
1421 do_not_decode[0] &= do_not_decode[j];
1422 if (do_not_decode[0])
1425 max_output += vr->
end / ch;
1428 max_output += vr->
end;
1431 if (max_output > ch_left * vlen) {
1432 if (max_output <= ch_left * vlen + vr->partition_size*ch_used/ch) {
1441 ff_dlog(
NULL,
" residue type 0/1/2 decode begin, ch: %d cpc %d \n", ch, c_p_c);
1444 int voffset, partition_count, j_times_ptns_to_read;
1446 voffset = vr->
begin;
1447 for (partition_count = 0; partition_count < ptns_to_read;) {
1449 int ret =
setup_classifs(vc, vr, do_not_decode, ch_used, partition_count, ptns_to_read);
1453 for (
i = 0; (
i < c_p_c) && (partition_count < ptns_to_read); ++
i) {
1454 for (j_times_ptns_to_read = 0, j = 0; j < ch_used; ++j) {
1457 if (!do_not_decode[j]) {
1458 unsigned vqclass = classifs[j_times_ptns_to_read + partition_count];
1461 if (vqbook >= 0 && vc->codebooks[vqbook].codevectors) {
1463 unsigned dim = vc->codebooks[vqbook].dimensions;
1469 voffs = voffset+j*vlen;
1470 for (k = 0; k <
step; ++k) {
1475 for (l = 0; l <
dim; ++l)
1476 vec[voffs + k + l *
step] +=
codebook.codevectors[coffs + l];
1478 }
else if (vr_type == 1) {
1479 voffs = voffset + j * vlen;
1480 for (k = 0; k <
step; ++k) {
1485 for (l = 0; l <
dim; ++l, ++voffs) {
1486 vec[voffs]+=
codebook.codevectors[coffs+l];
1488 ff_dlog(
NULL,
" pass %d offs: %d curr: %f change: %f cv offs.: %d \n",
1489 pass, voffs, vec[voffs],
codebook.codevectors[coffs+l], coffs);
1492 }
else if (vr_type == 2 && ch == 2 && (voffset & 1) == 0 && (
dim & 1) == 0) {
1493 voffs = voffset >> 1;
1496 for (k = 0; k <
step; ++k) {
1501 vec[voffs + k ] +=
codebook.codevectors[coffs ];
1502 vec[voffs + k + vlen] +=
codebook.codevectors[coffs + 1];
1504 }
else if (
dim == 4) {
1505 for (k = 0; k <
step; ++k, voffs += 2) {
1510 vec[voffs ] +=
codebook.codevectors[coffs ];
1511 vec[voffs + 1 ] +=
codebook.codevectors[coffs + 2];
1512 vec[voffs + vlen ] +=
codebook.codevectors[coffs + 1];
1513 vec[voffs + vlen + 1] +=
codebook.codevectors[coffs + 3];
1516 for (k = 0; k <
step; ++k) {
1521 for (l = 0; l <
dim; l += 2, voffs++) {
1522 vec[voffs ] +=
codebook.codevectors[coffs + l ];
1523 vec[voffs + vlen] +=
codebook.codevectors[coffs + l + 1];
1525 ff_dlog(
NULL,
" pass %d offs: %d curr: %f change: %f cv offs.: %d+%d \n",
1526 pass, voffset / ch + (voffs % ch) * vlen,
1527 vec[voffset / ch + (voffs % ch) * vlen],
1528 codebook.codevectors[coffs + l], coffs, l);
1532 }
else if (vr_type == 2) {
1533 unsigned voffs_div = ch == 1 ? voffset :
FASTDIV(voffset, ch);
1534 unsigned voffs_mod = voffset - voffs_div * ch;
1536 for (k = 0; k <
step; ++k) {
1541 for (l = 0; l <
dim; ++l) {
1542 vec[voffs_div + voffs_mod * vlen] +=
1545 ff_dlog(
NULL,
" pass %d offs: %d curr: %f change: %f cv offs.: %d+%d \n",
1546 pass, voffs_div + voffs_mod * vlen,
1547 vec[voffs_div + voffs_mod * vlen],
1548 codebook.codevectors[coffs + l], coffs, l);
1550 if (++voffs_mod == ch) {
1559 j_times_ptns_to_read += ptns_to_read;
1565 if (libvorbis_bug && !
pass) {
1566 for (j = 0; j < ch_used; ++j) {
1567 if (!do_not_decode[j]) {
1569 vc->codebooks[vr->
classbook].nb_bits, 3);
1579 uint8_t *do_not_decode,
1580 float *vec,
unsigned vlen,
1585 else if (vr->
type == 1)
1587 else if (vr->
type == 0)
1602 int previous_window = vc->previous_window;
1603 unsigned mode_number, blockflag, blocksize;
1605 uint8_t no_residue[255];
1606 uint8_t do_not_decode[255];
1608 float *ch_res_ptr = vc->channel_residues;
1609 uint8_t res_chan[255];
1610 unsigned res_num = 0;
1612 unsigned ch_left = vc->audio_channels;
1620 if (vc->mode_count == 1) {
1625 vc->mode_number = mode_number;
1626 mapping = &vc->mappings[vc->modes[mode_number].mapping];
1628 ff_dlog(
NULL,
" Mode number: %u , mapping: %d , blocktype %d\n", mode_number,
1629 vc->modes[mode_number].mapping, vc->modes[mode_number].blockflag);
1631 blockflag = vc->modes[mode_number].blockflag;
1632 blocksize = vc->blocksize[blockflag];
1633 vlen = blocksize / 2;
1636 if (previous_window < 0)
1637 previous_window =
code>>1;
1638 }
else if (previous_window < 0)
1639 previous_window = 0;
1641 memset(ch_res_ptr, 0,
sizeof(
float) * vc->audio_channels * vlen);
1642 for (
i = 0;
i < vc->audio_channels; ++
i)
1643 memset(floor_ptr[
i], 0, vlen *
sizeof(floor_ptr[0][0]));
1647 for (
i = 0;
i < vc->audio_channels; ++
i) {
1662 no_residue[
i] =
ret;
1668 if (!(no_residue[mapping->
magnitude[
i]] & no_residue[mapping->
angle[
i]])) {
1670 no_residue[mapping->
angle[
i]] = 0;
1681 for (j = 0; j < vc->audio_channels; ++j) {
1682 if ((mapping->
submaps == 1) || (
i == mapping->
mux[j])) {
1683 res_chan[j] = res_num;
1684 if (no_residue[j]) {
1685 do_not_decode[ch] = 1;
1687 do_not_decode[ch] = 0;
1704 ch_res_ptr += ch * vlen;
1716 mag = vc->channel_residues+res_chan[mapping->
magnitude[
i]] * blocksize / 2;
1717 ang = vc->channel_residues+res_chan[mapping->
angle[
i]] * blocksize / 2;
1718 vc->dsp.vorbis_inverse_coupling(mag, ang, blocksize / 2);
1723 mdct = vc->mdct[blockflag];
1724 mdct_fn = vc->mdct_fn[blockflag];
1726 for (j = vc->audio_channels-1;j >= 0; j--) {
1727 ch_res_ptr = vc->channel_residues + res_chan[j] * blocksize / 2;
1728 vc->fdsp->vector_fmul(floor_ptr[j], floor_ptr[j], ch_res_ptr, blocksize / 2);
1729 mdct_fn(mdct, ch_res_ptr, floor_ptr[j],
sizeof(
float));
1734 retlen = (blocksize + vc->blocksize[previous_window]) / 4;
1735 for (j = 0; j < vc->audio_channels; j++) {
1736 unsigned bs0 = vc->blocksize[0];
1737 unsigned bs1 = vc->blocksize[1];
1738 float *residue = vc->channel_residues + res_chan[j] * blocksize / 2;
1739 float *saved = vc->saved + j * bs1 / 4;
1740 float *
ret = floor_ptr[j];
1741 float *buf = residue;
1742 const float *
win = vc->win[blockflag & previous_window];
1744 if (blockflag == previous_window) {
1745 vc->fdsp->vector_fmul_window(
ret, saved, buf,
win, blocksize / 4);
1746 }
else if (blockflag > previous_window) {
1747 vc->fdsp->vector_fmul_window(
ret, saved, buf,
win, bs0 / 4);
1748 memcpy(
ret+bs0/2, buf+bs0/4, ((bs1-bs0)/4) *
sizeof(
float));
1750 memcpy(
ret, saved, ((bs1 - bs0) / 4) *
sizeof(
float));
1751 vc->fdsp->vector_fmul_window(
ret + (bs1 - bs0) / 4, saved + (bs1 - bs0) / 4, buf,
win, bs0 / 4);
1753 memcpy(saved, buf + blocksize / 4, blocksize / 4 *
sizeof(
float));
1756 vc->previous_window = blockflag;
1763 int *got_frame_ptr,
AVPacket *avpkt)
1765 const uint8_t *buf = avpkt->
data;
1766 int buf_size = avpkt->
size;
1769 float *channel_ptrs[255];
1774 if (*buf == 1 && buf_size > 7) {
1786 if (vc->audio_channels > 8) {
1797 if (*buf == 3 && buf_size > 7) {
1802 if (*buf == 5 && buf_size > 7 && vc->channel_residues && !vc->modes) {
1814 if (!vc->channel_residues || !vc->modes) {
1820 frame->nb_samples = vc->blocksize[1] / 2;
1824 if (vc->audio_channels > 8) {
1825 for (
i = 0;
i < vc->audio_channels;
i++)
1826 channel_ptrs[
i] = (
float *)
frame->extended_data[
i];
1828 for (
i = 0;
i < vc->audio_channels;
i++) {
1830 channel_ptrs[ch] = (
float *)
frame->extended_data[
i];
1840 if (!vc->first_frame) {
1841 vc->first_frame = 1;
1842 vc->initial_pts =
frame->pts;
1845 if (
frame->pts == vc->initial_pts) {
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;
1887 .priv_data_size =
sizeof(vorbis_context),