You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1671 lines
61KB

  1. /**
  2. * @file
  3. * Vorbis I decoder
  4. * @author Denes Balatoni ( dbalatoni programozo hu )
  5. *
  6. * This file is part of FFmpeg.
  7. *
  8. * FFmpeg is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * FFmpeg is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with FFmpeg; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. #undef V_DEBUG
  23. //#define V_DEBUG
  24. //#define AV_DEBUG(...) av_log(NULL, AV_LOG_INFO, __VA_ARGS__)
  25. #include <math.h>
  26. #define ALT_BITSTREAM_READER_LE
  27. #include "avcodec.h"
  28. #include "get_bits.h"
  29. #include "dsputil.h"
  30. #include "fft.h"
  31. #include "vorbis.h"
  32. #include "xiph.h"
  33. #define V_NB_BITS 8
  34. #define V_NB_BITS2 11
  35. #define V_MAX_VLCS (1 << 16)
  36. #define V_MAX_PARTITIONS (1 << 20)
  37. #ifndef V_DEBUG
  38. #define AV_DEBUG(...)
  39. #endif
  40. #undef NDEBUG
  41. #include <assert.h>
  42. typedef struct {
  43. uint_fast8_t dimensions;
  44. uint_fast8_t lookup_type;
  45. uint_fast8_t maxdepth;
  46. VLC vlc;
  47. float *codevectors;
  48. unsigned int nb_bits;
  49. } vorbis_codebook;
  50. typedef union vorbis_floor_u vorbis_floor_data;
  51. typedef struct vorbis_floor0_s vorbis_floor0;
  52. typedef struct vorbis_floor1_s vorbis_floor1;
  53. struct vorbis_context_s;
  54. typedef
  55. uint_fast8_t (* vorbis_floor_decode_func)
  56. (struct vorbis_context_s *, vorbis_floor_data *, float *);
  57. typedef struct {
  58. uint_fast8_t floor_type;
  59. vorbis_floor_decode_func decode;
  60. union vorbis_floor_u {
  61. struct vorbis_floor0_s {
  62. uint_fast8_t order;
  63. uint_fast16_t rate;
  64. uint_fast16_t bark_map_size;
  65. int_fast32_t *map[2];
  66. uint_fast32_t map_size[2];
  67. uint_fast8_t amplitude_bits;
  68. uint_fast8_t amplitude_offset;
  69. uint_fast8_t num_books;
  70. uint_fast8_t *book_list;
  71. float *lsp;
  72. } t0;
  73. struct vorbis_floor1_s {
  74. uint_fast8_t partitions;
  75. uint8_t partition_class[32];
  76. uint_fast8_t class_dimensions[16];
  77. uint_fast8_t class_subclasses[16];
  78. uint_fast8_t class_masterbook[16];
  79. int_fast16_t subclass_books[16][8];
  80. uint_fast8_t multiplier;
  81. uint_fast16_t x_list_dim;
  82. vorbis_floor1_entry *list;
  83. } t1;
  84. } data;
  85. } vorbis_floor;
  86. typedef struct {
  87. uint_fast16_t type;
  88. uint_fast32_t begin;
  89. uint_fast32_t end;
  90. unsigned partition_size;
  91. uint_fast8_t classifications;
  92. uint_fast8_t classbook;
  93. int_fast16_t books[64][8];
  94. uint_fast8_t maxpass;
  95. uint_fast16_t ptns_to_read;
  96. uint8_t *classifs;
  97. } vorbis_residue;
  98. typedef struct {
  99. uint_fast8_t submaps;
  100. uint_fast16_t coupling_steps;
  101. uint_fast8_t *magnitude;
  102. uint_fast8_t *angle;
  103. uint_fast8_t *mux;
  104. uint_fast8_t submap_floor[16];
  105. uint_fast8_t submap_residue[16];
  106. } vorbis_mapping;
  107. typedef struct {
  108. uint_fast8_t blockflag;
  109. uint_fast16_t windowtype;
  110. uint_fast16_t transformtype;
  111. uint_fast8_t mapping;
  112. } vorbis_mode;
  113. typedef struct vorbis_context_s {
  114. AVCodecContext *avccontext;
  115. GetBitContext gb;
  116. DSPContext dsp;
  117. FFTContext mdct[2];
  118. uint_fast8_t first_frame;
  119. uint_fast32_t version;
  120. uint_fast8_t audio_channels;
  121. uint_fast32_t audio_samplerate;
  122. uint_fast32_t bitrate_maximum;
  123. uint_fast32_t bitrate_nominal;
  124. uint_fast32_t bitrate_minimum;
  125. uint_fast32_t blocksize[2];
  126. const float *win[2];
  127. uint_fast16_t codebook_count;
  128. vorbis_codebook *codebooks;
  129. uint_fast8_t floor_count;
  130. vorbis_floor *floors;
  131. uint_fast8_t residue_count;
  132. vorbis_residue *residues;
  133. uint_fast8_t mapping_count;
  134. vorbis_mapping *mappings;
  135. uint_fast8_t mode_count;
  136. vorbis_mode *modes;
  137. uint_fast8_t mode_number; // mode number for the current packet
  138. uint_fast8_t previous_window;
  139. float *channel_residues;
  140. float *channel_floors;
  141. float *saved;
  142. uint_fast32_t add_bias; // for float->int conversion
  143. uint_fast32_t exp_bias;
  144. } vorbis_context;
  145. /* Helper functions */
  146. #define BARK(x) \
  147. (13.1f * atan(0.00074f * (x)) + 2.24f * atan(1.85e-8f * (x) * (x)) + 1e-4f * (x))
  148. static const char idx_err_str[] = "Index value %d out of range (0 - %d) for %s at %s:%i\n";
  149. #define VALIDATE_INDEX(idx, limit) \
  150. if (idx >= limit) {\
  151. av_log(vc->avccontext, AV_LOG_ERROR,\
  152. idx_err_str,\
  153. (int)(idx), (int)(limit - 1), #idx, __FILE__, __LINE__);\
  154. return -1;\
  155. }
  156. #define GET_VALIDATED_INDEX(idx, bits, limit) \
  157. {\
  158. idx = get_bits(gb, bits);\
  159. VALIDATE_INDEX(idx, limit)\
  160. }
  161. static float vorbisfloat2float(uint_fast32_t val)
  162. {
  163. double mant = val & 0x1fffff;
  164. long exp = (val & 0x7fe00000L) >> 21;
  165. if (val & 0x80000000)
  166. mant = -mant;
  167. return ldexp(mant, exp - 20 - 768);
  168. }
  169. // Free all allocated memory -----------------------------------------
  170. static void vorbis_free(vorbis_context *vc)
  171. {
  172. int_fast16_t i;
  173. av_freep(&vc->channel_residues);
  174. av_freep(&vc->channel_floors);
  175. av_freep(&vc->saved);
  176. for (i = 0; i < vc->residue_count; i++)
  177. av_free(vc->residues[i].classifs);
  178. av_freep(&vc->residues);
  179. av_freep(&vc->modes);
  180. ff_mdct_end(&vc->mdct[0]);
  181. ff_mdct_end(&vc->mdct[1]);
  182. for (i = 0; i < vc->codebook_count; ++i) {
  183. av_free(vc->codebooks[i].codevectors);
  184. free_vlc(&vc->codebooks[i].vlc);
  185. }
  186. av_freep(&vc->codebooks);
  187. for (i = 0; i < vc->floor_count; ++i) {
  188. if (vc->floors[i].floor_type == 0) {
  189. av_free(vc->floors[i].data.t0.map[0]);
  190. av_free(vc->floors[i].data.t0.map[1]);
  191. av_free(vc->floors[i].data.t0.book_list);
  192. av_free(vc->floors[i].data.t0.lsp);
  193. } else {
  194. av_free(vc->floors[i].data.t1.list);
  195. }
  196. }
  197. av_freep(&vc->floors);
  198. for (i = 0; i < vc->mapping_count; ++i) {
  199. av_free(vc->mappings[i].magnitude);
  200. av_free(vc->mappings[i].angle);
  201. av_free(vc->mappings[i].mux);
  202. }
  203. av_freep(&vc->mappings);
  204. }
  205. // Parse setup header -------------------------------------------------
  206. // Process codebooks part
  207. static int vorbis_parse_setup_hdr_codebooks(vorbis_context *vc)
  208. {
  209. uint_fast16_t cb;
  210. uint8_t *tmp_vlc_bits;
  211. uint32_t *tmp_vlc_codes;
  212. GetBitContext *gb = &vc->gb;
  213. uint_fast16_t *codebook_multiplicands;
  214. vc->codebook_count = get_bits(gb, 8) + 1;
  215. AV_DEBUG(" Codebooks: %d \n", vc->codebook_count);
  216. vc->codebooks = av_mallocz(vc->codebook_count * sizeof(vorbis_codebook));
  217. tmp_vlc_bits = av_mallocz(V_MAX_VLCS * sizeof(uint8_t));
  218. tmp_vlc_codes = av_mallocz(V_MAX_VLCS * sizeof(uint32_t));
  219. codebook_multiplicands = av_malloc(V_MAX_VLCS * sizeof(*codebook_multiplicands));
  220. for (cb = 0; cb < vc->codebook_count; ++cb) {
  221. vorbis_codebook *codebook_setup = &vc->codebooks[cb];
  222. uint_fast8_t ordered;
  223. uint_fast32_t t, used_entries = 0;
  224. uint_fast32_t entries;
  225. AV_DEBUG(" %d. Codebook \n", cb);
  226. if (get_bits(gb, 24) != 0x564342) {
  227. av_log(vc->avccontext, AV_LOG_ERROR, " %"PRIdFAST16". Codebook setup data corrupt. \n", cb);
  228. goto error;
  229. }
  230. codebook_setup->dimensions=get_bits(gb, 16);
  231. if (codebook_setup->dimensions > 16 || codebook_setup->dimensions == 0) {
  232. av_log(vc->avccontext, AV_LOG_ERROR, " %"PRIdFAST16". Codebook's dimension is invalid (%d). \n", cb, codebook_setup->dimensions);
  233. goto error;
  234. }
  235. entries = get_bits(gb, 24);
  236. if (entries > V_MAX_VLCS) {
  237. av_log(vc->avccontext, AV_LOG_ERROR, " %"PRIdFAST16". Codebook has too many entries (%"PRIdFAST32"). \n", cb, entries);
  238. goto error;
  239. }
  240. ordered = get_bits1(gb);
  241. AV_DEBUG(" codebook_dimensions %d, codebook_entries %d \n", codebook_setup->dimensions, entries);
  242. if (!ordered) {
  243. uint_fast16_t ce;
  244. uint_fast8_t flag;
  245. uint_fast8_t sparse = get_bits1(gb);
  246. AV_DEBUG(" not ordered \n");
  247. if (sparse) {
  248. AV_DEBUG(" sparse \n");
  249. used_entries = 0;
  250. for (ce = 0; ce < entries; ++ce) {
  251. flag = get_bits1(gb);
  252. if (flag) {
  253. tmp_vlc_bits[ce] = get_bits(gb, 5) + 1;
  254. ++used_entries;
  255. } else
  256. tmp_vlc_bits[ce] = 0;
  257. }
  258. } else {
  259. AV_DEBUG(" not sparse \n");
  260. used_entries = entries;
  261. for (ce = 0; ce < entries; ++ce)
  262. tmp_vlc_bits[ce] = get_bits(gb, 5) + 1;
  263. }
  264. } else {
  265. uint_fast16_t current_entry = 0;
  266. uint_fast8_t current_length = get_bits(gb, 5)+1;
  267. AV_DEBUG(" ordered, current length: %d \n", current_length); //FIXME
  268. used_entries = entries;
  269. for (; current_entry < used_entries && current_length <= 32; ++current_length) {
  270. uint_fast16_t i, number;
  271. AV_DEBUG(" number bits: %d ", ilog(entries - current_entry));
  272. number = get_bits(gb, ilog(entries - current_entry));
  273. AV_DEBUG(" number: %d \n", number);
  274. for (i = current_entry; i < number+current_entry; ++i)
  275. if (i < used_entries)
  276. tmp_vlc_bits[i] = current_length;
  277. current_entry+=number;
  278. }
  279. if (current_entry>used_entries) {
  280. av_log(vc->avccontext, AV_LOG_ERROR, " More codelengths than codes in codebook. \n");
  281. goto error;
  282. }
  283. }
  284. codebook_setup->lookup_type = get_bits(gb, 4);
  285. AV_DEBUG(" lookup type: %d : %s \n", codebook_setup->lookup_type, codebook_setup->lookup_type ? "vq" : "no lookup");
  286. // If the codebook is used for (inverse) VQ, calculate codevectors.
  287. if (codebook_setup->lookup_type == 1) {
  288. uint_fast16_t i, j, k;
  289. uint_fast16_t codebook_lookup_values = ff_vorbis_nth_root(entries, codebook_setup->dimensions);
  290. float codebook_minimum_value = vorbisfloat2float(get_bits_long(gb, 32));
  291. float codebook_delta_value = vorbisfloat2float(get_bits_long(gb, 32));
  292. uint_fast8_t codebook_value_bits = get_bits(gb, 4)+1;
  293. uint_fast8_t codebook_sequence_p = get_bits1(gb);
  294. AV_DEBUG(" We expect %d numbers for building the codevectors. \n", codebook_lookup_values);
  295. AV_DEBUG(" delta %f minmum %f \n", codebook_delta_value, codebook_minimum_value);
  296. for (i = 0; i < codebook_lookup_values; ++i) {
  297. codebook_multiplicands[i] = get_bits(gb, codebook_value_bits);
  298. AV_DEBUG(" multiplicands*delta+minmum : %e \n", (float)codebook_multiplicands[i]*codebook_delta_value+codebook_minimum_value);
  299. AV_DEBUG(" multiplicand %d \n", codebook_multiplicands[i]);
  300. }
  301. // Weed out unused vlcs and build codevector vector
  302. codebook_setup->codevectors = used_entries ? av_mallocz(used_entries*codebook_setup->dimensions * sizeof(float)) : NULL;
  303. for (j = 0, i = 0; i < entries; ++i) {
  304. uint_fast8_t dim = codebook_setup->dimensions;
  305. if (tmp_vlc_bits[i]) {
  306. float last = 0.0;
  307. uint_fast32_t lookup_offset = i;
  308. #ifdef V_DEBUG
  309. av_log(vc->avccontext, AV_LOG_INFO, "Lookup offset %d ,", i);
  310. #endif
  311. for (k = 0; k < dim; ++k) {
  312. uint_fast32_t multiplicand_offset = lookup_offset % codebook_lookup_values;
  313. codebook_setup->codevectors[j * dim + k] = codebook_multiplicands[multiplicand_offset] * codebook_delta_value + codebook_minimum_value + last;
  314. if (codebook_sequence_p)
  315. last = codebook_setup->codevectors[j * dim + k];
  316. lookup_offset/=codebook_lookup_values;
  317. }
  318. tmp_vlc_bits[j] = tmp_vlc_bits[i];
  319. #ifdef V_DEBUG
  320. av_log(vc->avccontext, AV_LOG_INFO, "real lookup offset %d, vector: ", j);
  321. for (k = 0; k < dim; ++k)
  322. av_log(vc->avccontext, AV_LOG_INFO, " %f ", codebook_setup->codevectors[j * dim + k]);
  323. av_log(vc->avccontext, AV_LOG_INFO, "\n");
  324. #endif
  325. ++j;
  326. }
  327. }
  328. if (j != used_entries) {
  329. av_log(vc->avccontext, AV_LOG_ERROR, "Bug in codevector vector building code. \n");
  330. goto error;
  331. }
  332. entries = used_entries;
  333. } else if (codebook_setup->lookup_type >= 2) {
  334. av_log(vc->avccontext, AV_LOG_ERROR, "Codebook lookup type not supported. \n");
  335. goto error;
  336. }
  337. // Initialize VLC table
  338. if (ff_vorbis_len2vlc(tmp_vlc_bits, tmp_vlc_codes, entries)) {
  339. av_log(vc->avccontext, AV_LOG_ERROR, " Invalid code lengths while generating vlcs. \n");
  340. goto error;
  341. }
  342. codebook_setup->maxdepth = 0;
  343. for (t = 0; t < entries; ++t)
  344. if (tmp_vlc_bits[t] >= codebook_setup->maxdepth)
  345. codebook_setup->maxdepth = tmp_vlc_bits[t];
  346. if (codebook_setup->maxdepth > 3 * V_NB_BITS)
  347. codebook_setup->nb_bits = V_NB_BITS2;
  348. else
  349. codebook_setup->nb_bits = V_NB_BITS;
  350. codebook_setup->maxdepth = (codebook_setup->maxdepth+codebook_setup->nb_bits - 1) / codebook_setup->nb_bits;
  351. if (init_vlc(&codebook_setup->vlc, codebook_setup->nb_bits, entries, tmp_vlc_bits, sizeof(*tmp_vlc_bits), sizeof(*tmp_vlc_bits), tmp_vlc_codes, sizeof(*tmp_vlc_codes), sizeof(*tmp_vlc_codes), INIT_VLC_LE)) {
  352. av_log(vc->avccontext, AV_LOG_ERROR, " Error generating vlc tables. \n");
  353. goto error;
  354. }
  355. }
  356. av_free(tmp_vlc_bits);
  357. av_free(tmp_vlc_codes);
  358. av_free(codebook_multiplicands);
  359. return 0;
  360. // Error:
  361. error:
  362. av_free(tmp_vlc_bits);
  363. av_free(tmp_vlc_codes);
  364. av_free(codebook_multiplicands);
  365. return -1;
  366. }
  367. // Process time domain transforms part (unused in Vorbis I)
  368. static int vorbis_parse_setup_hdr_tdtransforms(vorbis_context *vc)
  369. {
  370. GetBitContext *gb = &vc->gb;
  371. uint_fast8_t i;
  372. uint_fast8_t vorbis_time_count = get_bits(gb, 6) + 1;
  373. for (i = 0; i < vorbis_time_count; ++i) {
  374. uint_fast16_t vorbis_tdtransform = get_bits(gb, 16);
  375. AV_DEBUG(" Vorbis time domain transform %d: %d \n", vorbis_time_count, vorbis_tdtransform);
  376. if (vorbis_tdtransform) {
  377. av_log(vc->avccontext, AV_LOG_ERROR, "Vorbis time domain transform data nonzero. \n");
  378. return -1;
  379. }
  380. }
  381. return 0;
  382. }
  383. // Process floors part
  384. static uint_fast8_t vorbis_floor0_decode(vorbis_context *vc,
  385. vorbis_floor_data *vfu, float *vec);
  386. static void create_map(vorbis_context *vc, uint_fast8_t floor_number);
  387. static uint_fast8_t vorbis_floor1_decode(vorbis_context *vc,
  388. vorbis_floor_data *vfu, float *vec);
  389. static int vorbis_parse_setup_hdr_floors(vorbis_context *vc)
  390. {
  391. GetBitContext *gb = &vc->gb;
  392. uint_fast16_t i,j,k;
  393. vc->floor_count = get_bits(gb, 6) + 1;
  394. vc->floors = av_mallocz(vc->floor_count * sizeof(vorbis_floor));
  395. for (i = 0; i < vc->floor_count; ++i) {
  396. vorbis_floor *floor_setup = &vc->floors[i];
  397. floor_setup->floor_type = get_bits(gb, 16);
  398. AV_DEBUG(" %d. floor type %d \n", i, floor_setup->floor_type);
  399. if (floor_setup->floor_type == 1) {
  400. int maximum_class = -1;
  401. uint_fast8_t rangebits;
  402. uint_fast16_t floor1_values = 2;
  403. floor_setup->decode = vorbis_floor1_decode;
  404. floor_setup->data.t1.partitions = get_bits(gb, 5);
  405. AV_DEBUG(" %d.floor: %d partitions \n", i, floor_setup->data.t1.partitions);
  406. for (j = 0; j < floor_setup->data.t1.partitions; ++j) {
  407. floor_setup->data.t1.partition_class[j] = get_bits(gb, 4);
  408. if (floor_setup->data.t1.partition_class[j] > maximum_class)
  409. maximum_class = floor_setup->data.t1.partition_class[j];
  410. AV_DEBUG(" %d. floor %d partition class %d \n", i, j, floor_setup->data.t1.partition_class[j]);
  411. }
  412. AV_DEBUG(" maximum class %d \n", maximum_class);
  413. for (j = 0; j <= maximum_class; ++j) {
  414. floor_setup->data.t1.class_dimensions[j] = get_bits(gb, 3) + 1;
  415. floor_setup->data.t1.class_subclasses[j] = get_bits(gb, 2);
  416. AV_DEBUG(" %d floor %d class dim: %d subclasses %d \n", i, j, floor_setup->data.t1.class_dimensions[j], floor_setup->data.t1.class_subclasses[j]);
  417. if (floor_setup->data.t1.class_subclasses[j]) {
  418. GET_VALIDATED_INDEX(floor_setup->data.t1.class_masterbook[j], 8, vc->codebook_count)
  419. AV_DEBUG(" masterbook: %d \n", floor_setup->data.t1.class_masterbook[j]);
  420. }
  421. for (k = 0; k < (1 << floor_setup->data.t1.class_subclasses[j]); ++k) {
  422. int16_t bits = get_bits(gb, 8) - 1;
  423. if (bits != -1)
  424. VALIDATE_INDEX(bits, vc->codebook_count)
  425. floor_setup->data.t1.subclass_books[j][k] = bits;
  426. AV_DEBUG(" book %d. : %d \n", k, floor_setup->data.t1.subclass_books[j][k]);
  427. }
  428. }
  429. floor_setup->data.t1.multiplier = get_bits(gb, 2) + 1;
  430. floor_setup->data.t1.x_list_dim = 2;
  431. for (j = 0; j < floor_setup->data.t1.partitions; ++j)
  432. floor_setup->data.t1.x_list_dim+=floor_setup->data.t1.class_dimensions[floor_setup->data.t1.partition_class[j]];
  433. floor_setup->data.t1.list = av_mallocz(floor_setup->data.t1.x_list_dim * sizeof(vorbis_floor1_entry));
  434. rangebits = get_bits(gb, 4);
  435. floor_setup->data.t1.list[0].x = 0;
  436. floor_setup->data.t1.list[1].x = (1 << rangebits);
  437. for (j = 0; j < floor_setup->data.t1.partitions; ++j) {
  438. for (k = 0; k < floor_setup->data.t1.class_dimensions[floor_setup->data.t1.partition_class[j]]; ++k, ++floor1_values) {
  439. floor_setup->data.t1.list[floor1_values].x = get_bits(gb, rangebits);
  440. AV_DEBUG(" %d. floor1 Y coord. %d \n", floor1_values, floor_setup->data.t1.list[floor1_values].x);
  441. }
  442. }
  443. // Precalculate order of x coordinates - needed for decode
  444. ff_vorbis_ready_floor1_list(floor_setup->data.t1.list, floor_setup->data.t1.x_list_dim);
  445. } else if (floor_setup->floor_type == 0) {
  446. uint_fast8_t max_codebook_dim = 0;
  447. floor_setup->decode = vorbis_floor0_decode;
  448. floor_setup->data.t0.order = get_bits(gb, 8);
  449. floor_setup->data.t0.rate = get_bits(gb, 16);
  450. floor_setup->data.t0.bark_map_size = get_bits(gb, 16);
  451. floor_setup->data.t0.amplitude_bits = get_bits(gb, 6);
  452. /* zero would result in a div by zero later *
  453. * 2^0 - 1 == 0 */
  454. if (floor_setup->data.t0.amplitude_bits == 0) {
  455. av_log(vc->avccontext, AV_LOG_ERROR,
  456. "Floor 0 amplitude bits is 0.\n");
  457. return -1;
  458. }
  459. floor_setup->data.t0.amplitude_offset = get_bits(gb, 8);
  460. floor_setup->data.t0.num_books = get_bits(gb, 4) + 1;
  461. /* allocate mem for booklist */
  462. floor_setup->data.t0.book_list =
  463. av_malloc(floor_setup->data.t0.num_books);
  464. if (!floor_setup->data.t0.book_list)
  465. return -1;
  466. /* read book indexes */
  467. {
  468. int idx;
  469. uint_fast8_t book_idx;
  470. for (idx = 0; idx < floor_setup->data.t0.num_books; ++idx) {
  471. GET_VALIDATED_INDEX(book_idx, 8, vc->codebook_count)
  472. floor_setup->data.t0.book_list[idx] = book_idx;
  473. if (vc->codebooks[book_idx].dimensions > max_codebook_dim)
  474. max_codebook_dim = vc->codebooks[book_idx].dimensions;
  475. }
  476. }
  477. create_map(vc, i);
  478. /* allocate mem for lsp coefficients */
  479. {
  480. /* codebook dim is for padding if codebook dim doesn't *
  481. * divide order+1 then we need to read more data */
  482. floor_setup->data.t0.lsp =
  483. av_malloc((floor_setup->data.t0.order+1 + max_codebook_dim)
  484. * sizeof(float));
  485. if (!floor_setup->data.t0.lsp)
  486. return -1;
  487. }
  488. #ifdef V_DEBUG /* debug output parsed headers */
  489. AV_DEBUG("floor0 order: %u\n", floor_setup->data.t0.order);
  490. AV_DEBUG("floor0 rate: %u\n", floor_setup->data.t0.rate);
  491. AV_DEBUG("floor0 bark map size: %u\n",
  492. floor_setup->data.t0.bark_map_size);
  493. AV_DEBUG("floor0 amplitude bits: %u\n",
  494. floor_setup->data.t0.amplitude_bits);
  495. AV_DEBUG("floor0 amplitude offset: %u\n",
  496. floor_setup->data.t0.amplitude_offset);
  497. AV_DEBUG("floor0 number of books: %u\n",
  498. floor_setup->data.t0.num_books);
  499. AV_DEBUG("floor0 book list pointer: %p\n",
  500. floor_setup->data.t0.book_list);
  501. {
  502. int idx;
  503. for (idx = 0; idx < floor_setup->data.t0.num_books; ++idx) {
  504. AV_DEBUG(" Book %d: %u\n",
  505. idx+1,
  506. floor_setup->data.t0.book_list[idx]);
  507. }
  508. }
  509. #endif
  510. } else {
  511. av_log(vc->avccontext, AV_LOG_ERROR, "Invalid floor type!\n");
  512. return -1;
  513. }
  514. }
  515. return 0;
  516. }
  517. // Process residues part
  518. static int vorbis_parse_setup_hdr_residues(vorbis_context *vc)
  519. {
  520. GetBitContext *gb = &vc->gb;
  521. uint_fast8_t i, j, k;
  522. vc->residue_count = get_bits(gb, 6)+1;
  523. vc->residues = av_mallocz(vc->residue_count * sizeof(vorbis_residue));
  524. AV_DEBUG(" There are %d residues. \n", vc->residue_count);
  525. for (i = 0; i < vc->residue_count; ++i) {
  526. vorbis_residue *res_setup = &vc->residues[i];
  527. uint_fast8_t cascade[64];
  528. uint_fast8_t high_bits;
  529. uint_fast8_t low_bits;
  530. res_setup->type = get_bits(gb, 16);
  531. AV_DEBUG(" %d. residue type %d \n", i, res_setup->type);
  532. res_setup->begin = get_bits(gb, 24);
  533. res_setup->end = get_bits(gb, 24);
  534. res_setup->partition_size = get_bits(gb, 24) + 1;
  535. /* Validations to prevent a buffer overflow later. */
  536. if (res_setup->begin>res_setup->end ||
  537. res_setup->end > vc->avccontext->channels * vc->blocksize[1] / (res_setup->type == 2 ? 1 : 2) ||
  538. (res_setup->end-res_setup->begin) / res_setup->partition_size > V_MAX_PARTITIONS) {
  539. av_log(vc->avccontext, AV_LOG_ERROR, "partition out of bounds: type, begin, end, size, blocksize: %"PRIdFAST16", %"PRIdFAST32", %"PRIdFAST32", %u, %"PRIdFAST32"\n", res_setup->type, res_setup->begin, res_setup->end, res_setup->partition_size, vc->blocksize[1] / 2);
  540. return -1;
  541. }
  542. res_setup->classifications = get_bits(gb, 6) + 1;
  543. GET_VALIDATED_INDEX(res_setup->classbook, 8, vc->codebook_count)
  544. res_setup->ptns_to_read =
  545. (res_setup->end - res_setup->begin) / res_setup->partition_size;
  546. res_setup->classifs = av_malloc(res_setup->ptns_to_read *
  547. vc->audio_channels *
  548. sizeof(*res_setup->classifs));
  549. if (!res_setup->classifs)
  550. return AVERROR(ENOMEM);
  551. AV_DEBUG(" begin %d end %d part.size %d classif.s %d classbook %d \n", res_setup->begin, res_setup->end, res_setup->partition_size,
  552. res_setup->classifications, res_setup->classbook);
  553. for (j = 0; j < res_setup->classifications; ++j) {
  554. high_bits = 0;
  555. low_bits = get_bits(gb, 3);
  556. if (get_bits1(gb))
  557. high_bits = get_bits(gb, 5);
  558. cascade[j] = (high_bits << 3) + low_bits;
  559. AV_DEBUG(" %d class casscade depth: %d \n", j, ilog(cascade[j]));
  560. }
  561. res_setup->maxpass = 0;
  562. for (j = 0; j < res_setup->classifications; ++j) {
  563. for (k = 0; k < 8; ++k) {
  564. if (cascade[j]&(1 << k)) {
  565. GET_VALIDATED_INDEX(res_setup->books[j][k], 8, vc->codebook_count)
  566. AV_DEBUG(" %d class casscade depth %d book: %d \n", j, k, res_setup->books[j][k]);
  567. if (k>res_setup->maxpass)
  568. res_setup->maxpass = k;
  569. } else {
  570. res_setup->books[j][k] = -1;
  571. }
  572. }
  573. }
  574. }
  575. return 0;
  576. }
  577. // Process mappings part
  578. static int vorbis_parse_setup_hdr_mappings(vorbis_context *vc)
  579. {
  580. GetBitContext *gb = &vc->gb;
  581. uint_fast8_t i, j;
  582. vc->mapping_count = get_bits(gb, 6)+1;
  583. vc->mappings = av_mallocz(vc->mapping_count * sizeof(vorbis_mapping));
  584. AV_DEBUG(" There are %d mappings. \n", vc->mapping_count);
  585. for (i = 0; i < vc->mapping_count; ++i) {
  586. vorbis_mapping *mapping_setup = &vc->mappings[i];
  587. if (get_bits(gb, 16)) {
  588. av_log(vc->avccontext, AV_LOG_ERROR, "Other mappings than type 0 are not compliant with the Vorbis I specification. \n");
  589. return -1;
  590. }
  591. if (get_bits1(gb)) {
  592. mapping_setup->submaps = get_bits(gb, 4) + 1;
  593. } else {
  594. mapping_setup->submaps = 1;
  595. }
  596. if (get_bits1(gb)) {
  597. mapping_setup->coupling_steps = get_bits(gb, 8) + 1;
  598. mapping_setup->magnitude = av_mallocz(mapping_setup->coupling_steps * sizeof(uint_fast8_t));
  599. mapping_setup->angle = av_mallocz(mapping_setup->coupling_steps * sizeof(uint_fast8_t));
  600. for (j = 0; j < mapping_setup->coupling_steps; ++j) {
  601. GET_VALIDATED_INDEX(mapping_setup->magnitude[j], ilog(vc->audio_channels - 1), vc->audio_channels)
  602. GET_VALIDATED_INDEX(mapping_setup->angle[j], ilog(vc->audio_channels - 1), vc->audio_channels)
  603. }
  604. } else {
  605. mapping_setup->coupling_steps = 0;
  606. }
  607. AV_DEBUG(" %d mapping coupling steps: %d \n", i, mapping_setup->coupling_steps);
  608. if (get_bits(gb, 2)) {
  609. av_log(vc->avccontext, AV_LOG_ERROR, "%d. mapping setup data invalid. \n", i);
  610. return -1; // following spec.
  611. }
  612. if (mapping_setup->submaps>1) {
  613. mapping_setup->mux = av_mallocz(vc->audio_channels * sizeof(uint_fast8_t));
  614. for (j = 0; j < vc->audio_channels; ++j)
  615. mapping_setup->mux[j] = get_bits(gb, 4);
  616. }
  617. for (j = 0; j < mapping_setup->submaps; ++j) {
  618. skip_bits(gb, 8); // FIXME check?
  619. GET_VALIDATED_INDEX(mapping_setup->submap_floor[j], 8, vc->floor_count)
  620. GET_VALIDATED_INDEX(mapping_setup->submap_residue[j], 8, vc->residue_count)
  621. AV_DEBUG(" %d mapping %d submap : floor %d, residue %d \n", i, j, mapping_setup->submap_floor[j], mapping_setup->submap_residue[j]);
  622. }
  623. }
  624. return 0;
  625. }
  626. // Process modes part
  627. static void create_map(vorbis_context *vc, uint_fast8_t floor_number)
  628. {
  629. vorbis_floor *floors = vc->floors;
  630. vorbis_floor0 *vf;
  631. int idx;
  632. int_fast8_t blockflag;
  633. int_fast32_t *map;
  634. int_fast32_t n; //TODO: could theoretically be smaller?
  635. for (blockflag = 0; blockflag < 2; ++blockflag) {
  636. n = vc->blocksize[blockflag] / 2;
  637. floors[floor_number].data.t0.map[blockflag] =
  638. av_malloc((n+1) * sizeof(int_fast32_t)); // n + sentinel
  639. map = floors[floor_number].data.t0.map[blockflag];
  640. vf = &floors[floor_number].data.t0;
  641. for (idx = 0; idx < n; ++idx) {
  642. map[idx] = floor(BARK((vf->rate * idx) / (2.0f * n)) *
  643. ((vf->bark_map_size) /
  644. BARK(vf->rate / 2.0f)));
  645. if (vf->bark_map_size-1 < map[idx])
  646. map[idx] = vf->bark_map_size - 1;
  647. }
  648. map[n] = -1;
  649. vf->map_size[blockflag] = n;
  650. }
  651. # ifdef V_DEBUG
  652. for (idx = 0; idx <= n; ++idx) {
  653. AV_DEBUG("floor0 map: map at pos %d is %d\n",
  654. idx, map[idx]);
  655. }
  656. # endif
  657. }
  658. static int vorbis_parse_setup_hdr_modes(vorbis_context *vc)
  659. {
  660. GetBitContext *gb = &vc->gb;
  661. uint_fast8_t i;
  662. vc->mode_count = get_bits(gb, 6) + 1;
  663. vc->modes = av_mallocz(vc->mode_count * sizeof(vorbis_mode));
  664. AV_DEBUG(" There are %d modes.\n", vc->mode_count);
  665. for (i = 0; i < vc->mode_count; ++i) {
  666. vorbis_mode *mode_setup = &vc->modes[i];
  667. mode_setup->blockflag = get_bits1(gb);
  668. mode_setup->windowtype = get_bits(gb, 16); //FIXME check
  669. mode_setup->transformtype = get_bits(gb, 16); //FIXME check
  670. GET_VALIDATED_INDEX(mode_setup->mapping, 8, vc->mapping_count);
  671. AV_DEBUG(" %d mode: blockflag %d, windowtype %d, transformtype %d, mapping %d \n", i, mode_setup->blockflag, mode_setup->windowtype, mode_setup->transformtype, mode_setup->mapping);
  672. }
  673. return 0;
  674. }
  675. // Process the whole setup header using the functions above
  676. static int vorbis_parse_setup_hdr(vorbis_context *vc)
  677. {
  678. GetBitContext *gb = &vc->gb;
  679. if ((get_bits(gb, 8) != 'v') || (get_bits(gb, 8) != 'o') ||
  680. (get_bits(gb, 8) != 'r') || (get_bits(gb, 8) != 'b') ||
  681. (get_bits(gb, 8) != 'i') || (get_bits(gb, 8) != 's')) {
  682. av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (no vorbis signature). \n");
  683. return -1;
  684. }
  685. if (vorbis_parse_setup_hdr_codebooks(vc)) {
  686. av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (codebooks). \n");
  687. return -2;
  688. }
  689. if (vorbis_parse_setup_hdr_tdtransforms(vc)) {
  690. av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (time domain transforms). \n");
  691. return -3;
  692. }
  693. if (vorbis_parse_setup_hdr_floors(vc)) {
  694. av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (floors). \n");
  695. return -4;
  696. }
  697. if (vorbis_parse_setup_hdr_residues(vc)) {
  698. av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (residues). \n");
  699. return -5;
  700. }
  701. if (vorbis_parse_setup_hdr_mappings(vc)) {
  702. av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (mappings). \n");
  703. return -6;
  704. }
  705. if (vorbis_parse_setup_hdr_modes(vc)) {
  706. av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (modes). \n");
  707. return -7;
  708. }
  709. if (!get_bits1(gb)) {
  710. av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (framing flag). \n");
  711. return -8; // framing flag bit unset error
  712. }
  713. return 0;
  714. }
  715. // Process the identification header
  716. static int vorbis_parse_id_hdr(vorbis_context *vc)
  717. {
  718. GetBitContext *gb = &vc->gb;
  719. uint_fast8_t bl0, bl1;
  720. if ((get_bits(gb, 8) != 'v') || (get_bits(gb, 8) != 'o') ||
  721. (get_bits(gb, 8) != 'r') || (get_bits(gb, 8) != 'b') ||
  722. (get_bits(gb, 8) != 'i') || (get_bits(gb, 8) != 's')) {
  723. av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis id header packet corrupt (no vorbis signature). \n");
  724. return -1;
  725. }
  726. vc->version = get_bits_long(gb, 32); //FIXME check 0
  727. vc->audio_channels = get_bits(gb, 8);
  728. if (vc->audio_channels <= 0) {
  729. av_log(vc->avccontext, AV_LOG_ERROR, "Invalid number of channels\n");
  730. return -1;
  731. }
  732. vc->audio_samplerate = get_bits_long(gb, 32);
  733. if (vc->audio_samplerate <= 0) {
  734. av_log(vc->avccontext, AV_LOG_ERROR, "Invalid samplerate\n");
  735. return -1;
  736. }
  737. vc->bitrate_maximum = get_bits_long(gb, 32);
  738. vc->bitrate_nominal = get_bits_long(gb, 32);
  739. vc->bitrate_minimum = get_bits_long(gb, 32);
  740. bl0 = get_bits(gb, 4);
  741. bl1 = get_bits(gb, 4);
  742. vc->blocksize[0] = (1 << bl0);
  743. vc->blocksize[1] = (1 << bl1);
  744. if (bl0 > 13 || bl0 < 6 || bl1 > 13 || bl1 < 6 || bl1 < bl0) {
  745. av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis id header packet corrupt (illegal blocksize). \n");
  746. return -3;
  747. }
  748. // output format int16
  749. if (vc->blocksize[1] / 2 * vc->audio_channels * 2 > AVCODEC_MAX_AUDIO_FRAME_SIZE) {
  750. av_log(vc->avccontext, AV_LOG_ERROR, "Vorbis channel count makes "
  751. "output packets too large.\n");
  752. return -4;
  753. }
  754. vc->win[0] = ff_vorbis_vwin[bl0 - 6];
  755. vc->win[1] = ff_vorbis_vwin[bl1 - 6];
  756. if ((get_bits1(gb)) == 0) {
  757. av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis id header packet corrupt (framing flag not set). \n");
  758. return -2;
  759. }
  760. vc->channel_residues = av_malloc((vc->blocksize[1] / 2) * vc->audio_channels * sizeof(float));
  761. vc->channel_floors = av_malloc((vc->blocksize[1] / 2) * vc->audio_channels * sizeof(float));
  762. vc->saved = av_mallocz((vc->blocksize[1] / 4) * vc->audio_channels * sizeof(float));
  763. vc->previous_window = 0;
  764. ff_mdct_init(&vc->mdct[0], bl0, 1, vc->exp_bias ? -(1 << 15) : -1.0);
  765. ff_mdct_init(&vc->mdct[1], bl1, 1, vc->exp_bias ? -(1 << 15) : -1.0);
  766. AV_DEBUG(" vorbis version %d \n audio_channels %d \n audio_samplerate %d \n bitrate_max %d \n bitrate_nom %d \n bitrate_min %d \n blk_0 %d blk_1 %d \n ",
  767. vc->version, vc->audio_channels, vc->audio_samplerate, vc->bitrate_maximum, vc->bitrate_nominal, vc->bitrate_minimum, vc->blocksize[0], vc->blocksize[1]);
  768. /*
  769. BLK = vc->blocksize[0];
  770. for (i = 0; i < BLK / 2; ++i) {
  771. vc->win[0][i] = sin(0.5*3.14159265358*(sin(((float)i + 0.5) / (float)BLK*3.14159265358))*(sin(((float)i + 0.5) / (float)BLK*3.14159265358)));
  772. }
  773. */
  774. return 0;
  775. }
  776. // Process the extradata using the functions above (identification header, setup header)
  777. static av_cold int vorbis_decode_init(AVCodecContext *avccontext)
  778. {
  779. vorbis_context *vc = avccontext->priv_data ;
  780. uint8_t *headers = avccontext->extradata;
  781. int headers_len = avccontext->extradata_size;
  782. uint8_t *header_start[3];
  783. int header_len[3];
  784. GetBitContext *gb = &(vc->gb);
  785. int hdr_type;
  786. vc->avccontext = avccontext;
  787. dsputil_init(&vc->dsp, avccontext);
  788. if (vc->dsp.float_to_int16_interleave == ff_float_to_int16_interleave_c) {
  789. vc->add_bias = 385;
  790. vc->exp_bias = 0;
  791. } else {
  792. vc->add_bias = 0;
  793. vc->exp_bias = 15 << 23;
  794. }
  795. if (!headers_len) {
  796. av_log(avccontext, AV_LOG_ERROR, "Extradata missing.\n");
  797. return -1;
  798. }
  799. if (ff_split_xiph_headers(headers, headers_len, 30, header_start, header_len) < 0) {
  800. av_log(avccontext, AV_LOG_ERROR, "Extradata corrupt.\n");
  801. return -1;
  802. }
  803. init_get_bits(gb, header_start[0], header_len[0]*8);
  804. hdr_type = get_bits(gb, 8);
  805. if (hdr_type != 1) {
  806. av_log(avccontext, AV_LOG_ERROR, "First header is not the id header.\n");
  807. return -1;
  808. }
  809. if (vorbis_parse_id_hdr(vc)) {
  810. av_log(avccontext, AV_LOG_ERROR, "Id header corrupt.\n");
  811. vorbis_free(vc);
  812. return -1;
  813. }
  814. init_get_bits(gb, header_start[2], header_len[2]*8);
  815. hdr_type = get_bits(gb, 8);
  816. if (hdr_type != 5) {
  817. av_log(avccontext, AV_LOG_ERROR, "Third header is not the setup header.\n");
  818. vorbis_free(vc);
  819. return -1;
  820. }
  821. if (vorbis_parse_setup_hdr(vc)) {
  822. av_log(avccontext, AV_LOG_ERROR, "Setup header corrupt.\n");
  823. vorbis_free(vc);
  824. return -1;
  825. }
  826. if (vc->audio_channels > 8)
  827. avccontext->channel_layout = 0;
  828. else
  829. avccontext->channel_layout = ff_vorbis_channel_layouts[vc->audio_channels - 1];
  830. avccontext->channels = vc->audio_channels;
  831. avccontext->sample_rate = vc->audio_samplerate;
  832. avccontext->frame_size = FFMIN(vc->blocksize[0], vc->blocksize[1]) >> 2;
  833. avccontext->sample_fmt = SAMPLE_FMT_S16;
  834. return 0 ;
  835. }
  836. // Decode audiopackets -------------------------------------------------
  837. // Read and decode floor
  838. static uint_fast8_t vorbis_floor0_decode(vorbis_context *vc,
  839. vorbis_floor_data *vfu, float *vec)
  840. {
  841. vorbis_floor0 *vf = &vfu->t0;
  842. float *lsp = vf->lsp;
  843. uint_fast32_t amplitude;
  844. uint_fast32_t book_idx;
  845. uint_fast8_t blockflag = vc->modes[vc->mode_number].blockflag;
  846. amplitude = get_bits(&vc->gb, vf->amplitude_bits);
  847. if (amplitude > 0) {
  848. float last = 0;
  849. uint_fast16_t lsp_len = 0;
  850. uint_fast16_t idx;
  851. vorbis_codebook codebook;
  852. book_idx = get_bits(&vc->gb, ilog(vf->num_books));
  853. if (book_idx >= vf->num_books) {
  854. av_log(vc->avccontext, AV_LOG_ERROR,
  855. "floor0 dec: booknumber too high!\n");
  856. book_idx = 0;
  857. //FIXME: look above
  858. }
  859. AV_DEBUG("floor0 dec: booknumber: %u\n", book_idx);
  860. codebook = vc->codebooks[vf->book_list[book_idx]];
  861. while (lsp_len<vf->order) {
  862. int vec_off;
  863. AV_DEBUG("floor0 dec: book dimension: %d\n", codebook.dimensions);
  864. AV_DEBUG("floor0 dec: maximum depth: %d\n", codebook.maxdepth);
  865. /* read temp vector */
  866. vec_off = get_vlc2(&vc->gb, codebook.vlc.table,
  867. codebook.nb_bits, codebook.maxdepth)
  868. * codebook.dimensions;
  869. AV_DEBUG("floor0 dec: vector offset: %d\n", vec_off);
  870. /* copy each vector component and add last to it */
  871. for (idx = 0; idx < codebook.dimensions; ++idx)
  872. lsp[lsp_len+idx] = codebook.codevectors[vec_off+idx] + last;
  873. last = lsp[lsp_len+idx-1]; /* set last to last vector component */
  874. lsp_len += codebook.dimensions;
  875. }
  876. #ifdef V_DEBUG
  877. /* DEBUG: output lsp coeffs */
  878. {
  879. int idx;
  880. for (idx = 0; idx < lsp_len; ++idx)
  881. AV_DEBUG("floor0 dec: coeff at %d is %f\n", idx, lsp[idx]);
  882. }
  883. #endif
  884. /* synthesize floor output vector */
  885. {
  886. int i;
  887. int order = vf->order;
  888. float wstep = M_PI / vf->bark_map_size;
  889. for (i = 0; i < order; i++)
  890. lsp[i] = 2.0f * cos(lsp[i]);
  891. AV_DEBUG("floor0 synth: map_size = %d; m = %d; wstep = %f\n",
  892. vf->map_size, order, wstep);
  893. i = 0;
  894. while (i < vf->map_size[blockflag]) {
  895. int j, iter_cond = vf->map[blockflag][i];
  896. float p = 0.5f;
  897. float q = 0.5f;
  898. float two_cos_w = 2.0f * cos(wstep * iter_cond); // needed all times
  899. /* similar part for the q and p products */
  900. for (j = 0; j + 1 < order; j += 2) {
  901. q *= lsp[j] - two_cos_w;
  902. p *= lsp[j + 1] - two_cos_w;
  903. }
  904. if (j == order) { // even order
  905. p *= p * (2.0f - two_cos_w);
  906. q *= q * (2.0f + two_cos_w);
  907. } else { // odd order
  908. q *= two_cos_w-lsp[j]; // one more time for q
  909. /* final step and square */
  910. p *= p * (4.f - two_cos_w * two_cos_w);
  911. q *= q;
  912. }
  913. /* calculate linear floor value */
  914. {
  915. q = exp((((amplitude*vf->amplitude_offset) /
  916. (((1 << vf->amplitude_bits) - 1) * sqrt(p + q)))
  917. - vf->amplitude_offset) * .11512925f);
  918. }
  919. /* fill vector */
  920. do {
  921. vec[i] = q; ++i;
  922. } while (vf->map[blockflag][i] == iter_cond);
  923. }
  924. }
  925. } else {
  926. /* this channel is unused */
  927. return 1;
  928. }
  929. AV_DEBUG(" Floor0 decoded\n");
  930. return 0;
  931. }
  932. static uint_fast8_t vorbis_floor1_decode(vorbis_context *vc,
  933. vorbis_floor_data *vfu, float *vec)
  934. {
  935. vorbis_floor1 *vf = &vfu->t1;
  936. GetBitContext *gb = &vc->gb;
  937. uint_fast16_t range_v[4] = { 256, 128, 86, 64 };
  938. uint_fast16_t range = range_v[vf->multiplier-1];
  939. uint_fast16_t floor1_Y[258];
  940. uint_fast16_t floor1_Y_final[258];
  941. int floor1_flag[258];
  942. uint_fast8_t class_;
  943. uint_fast8_t cdim;
  944. uint_fast8_t cbits;
  945. uint_fast8_t csub;
  946. uint_fast8_t cval;
  947. int_fast16_t book;
  948. uint_fast16_t offset;
  949. uint_fast16_t i,j;
  950. /*u*/int_fast16_t adx, ady, off, predicted; // WTF ? dy/adx = (unsigned)dy/adx ?
  951. int_fast16_t dy, err;
  952. if (!get_bits1(gb)) // silence
  953. return 1;
  954. // Read values (or differences) for the floor's points
  955. floor1_Y[0] = get_bits(gb, ilog(range - 1));
  956. floor1_Y[1] = get_bits(gb, ilog(range - 1));
  957. AV_DEBUG("floor 0 Y %d floor 1 Y %d \n", floor1_Y[0], floor1_Y[1]);
  958. offset = 2;
  959. for (i = 0; i < vf->partitions; ++i) {
  960. class_ = vf->partition_class[i];
  961. cdim = vf->class_dimensions[class_];
  962. cbits = vf->class_subclasses[class_];
  963. csub = (1 << cbits) - 1;
  964. cval = 0;
  965. AV_DEBUG("Cbits %d \n", cbits);
  966. if (cbits) // this reads all subclasses for this partition's class
  967. cval = get_vlc2(gb, vc->codebooks[vf->class_masterbook[class_]].vlc.table,
  968. vc->codebooks[vf->class_masterbook[class_]].nb_bits, 3);
  969. for (j = 0; j < cdim; ++j) {
  970. book = vf->subclass_books[class_][cval & csub];
  971. AV_DEBUG("book %d Cbits %d cval %d bits:%d \n", book, cbits, cval, get_bits_count(gb));
  972. cval = cval >> cbits;
  973. if (book > -1) {
  974. floor1_Y[offset+j] = get_vlc2(gb, vc->codebooks[book].vlc.table,
  975. vc->codebooks[book].nb_bits, 3);
  976. } else {
  977. floor1_Y[offset+j] = 0;
  978. }
  979. AV_DEBUG(" floor(%d) = %d \n", vf->list[offset+j].x, floor1_Y[offset+j]);
  980. }
  981. offset+=cdim;
  982. }
  983. // Amplitude calculation from the differences
  984. floor1_flag[0] = 1;
  985. floor1_flag[1] = 1;
  986. floor1_Y_final[0] = floor1_Y[0];
  987. floor1_Y_final[1] = floor1_Y[1];
  988. for (i = 2; i < vf->x_list_dim; ++i) {
  989. uint_fast16_t val, highroom, lowroom, room;
  990. uint_fast16_t high_neigh_offs;
  991. uint_fast16_t low_neigh_offs;
  992. low_neigh_offs = vf->list[i].low;
  993. high_neigh_offs = vf->list[i].high;
  994. dy = floor1_Y_final[high_neigh_offs] - floor1_Y_final[low_neigh_offs]; // render_point begin
  995. adx = vf->list[high_neigh_offs].x - vf->list[low_neigh_offs].x;
  996. ady = FFABS(dy);
  997. err = ady * (vf->list[i].x - vf->list[low_neigh_offs].x);
  998. off = (int16_t)err / (int16_t)adx;
  999. if (dy < 0) {
  1000. predicted = floor1_Y_final[low_neigh_offs] - off;
  1001. } else {
  1002. predicted = floor1_Y_final[low_neigh_offs] + off;
  1003. } // render_point end
  1004. val = floor1_Y[i];
  1005. highroom = range-predicted;
  1006. lowroom = predicted;
  1007. if (highroom < lowroom) {
  1008. room = highroom * 2;
  1009. } else {
  1010. room = lowroom * 2; // SPEC mispelling
  1011. }
  1012. if (val) {
  1013. floor1_flag[low_neigh_offs] = 1;
  1014. floor1_flag[high_neigh_offs] = 1;
  1015. floor1_flag[i] = 1;
  1016. if (val >= room) {
  1017. if (highroom > lowroom) {
  1018. floor1_Y_final[i] = val - lowroom + predicted;
  1019. } else {
  1020. floor1_Y_final[i] = predicted - val + highroom - 1;
  1021. }
  1022. } else {
  1023. if (val & 1) {
  1024. floor1_Y_final[i] = predicted - (val + 1) / 2;
  1025. } else {
  1026. floor1_Y_final[i] = predicted + val / 2;
  1027. }
  1028. }
  1029. } else {
  1030. floor1_flag[i] = 0;
  1031. floor1_Y_final[i] = predicted;
  1032. }
  1033. AV_DEBUG(" Decoded floor(%d) = %d / val %d \n", vf->list[i].x, floor1_Y_final[i], val);
  1034. }
  1035. // Curve synth - connect the calculated dots and convert from dB scale FIXME optimize ?
  1036. ff_vorbis_floor1_render_list(vf->list, vf->x_list_dim, floor1_Y_final, floor1_flag, vf->multiplier, vec, vf->list[1].x);
  1037. AV_DEBUG(" Floor decoded\n");
  1038. return 0;
  1039. }
  1040. // Read and decode residue
  1041. static av_always_inline int vorbis_residue_decode_internal(vorbis_context *vc,
  1042. vorbis_residue *vr,
  1043. uint_fast8_t ch,
  1044. uint_fast8_t *do_not_decode,
  1045. float *vec,
  1046. uint_fast16_t vlen,
  1047. int vr_type)
  1048. {
  1049. GetBitContext *gb = &vc->gb;
  1050. uint_fast8_t c_p_c = vc->codebooks[vr->classbook].dimensions;
  1051. uint_fast16_t ptns_to_read = vr->ptns_to_read;
  1052. uint8_t *classifs = vr->classifs;
  1053. uint_fast8_t pass;
  1054. uint_fast8_t ch_used;
  1055. uint_fast8_t i,j,l;
  1056. uint_fast16_t k;
  1057. if (vr_type == 2) {
  1058. for (j = 1; j < ch; ++j)
  1059. do_not_decode[0] &= do_not_decode[j]; // FIXME - clobbering input
  1060. if (do_not_decode[0])
  1061. return 0;
  1062. ch_used = 1;
  1063. } else {
  1064. ch_used = ch;
  1065. }
  1066. AV_DEBUG(" residue type 0/1/2 decode begin, ch: %d cpc %d \n", ch, c_p_c);
  1067. for (pass = 0; pass <= vr->maxpass; ++pass) { // FIXME OPTIMIZE?
  1068. uint_fast16_t voffset;
  1069. uint_fast16_t partition_count;
  1070. uint_fast16_t j_times_ptns_to_read;
  1071. voffset = vr->begin;
  1072. for (partition_count = 0; partition_count < ptns_to_read;) { // SPEC error
  1073. if (!pass) {
  1074. uint_fast32_t inverse_class = ff_inverse[vr->classifications];
  1075. for (j_times_ptns_to_read = 0, j = 0; j < ch_used; ++j) {
  1076. if (!do_not_decode[j]) {
  1077. uint_fast32_t temp = get_vlc2(gb, vc->codebooks[vr->classbook].vlc.table,
  1078. vc->codebooks[vr->classbook].nb_bits, 3);
  1079. AV_DEBUG("Classword: %d \n", temp);
  1080. assert(vr->classifications > 1 && temp <= 65536); //needed for inverse[]
  1081. for (i = 0; i < c_p_c; ++i) {
  1082. uint_fast32_t temp2;
  1083. temp2 = (((uint_fast64_t)temp) * inverse_class) >> 32;
  1084. if (partition_count + c_p_c - 1 - i < ptns_to_read)
  1085. classifs[j_times_ptns_to_read + partition_count + c_p_c - 1 - i] = temp - temp2 * vr->classifications;
  1086. temp = temp2;
  1087. }
  1088. }
  1089. j_times_ptns_to_read += ptns_to_read;
  1090. }
  1091. }
  1092. for (i = 0; (i < c_p_c) && (partition_count < ptns_to_read); ++i) {
  1093. for (j_times_ptns_to_read = 0, j = 0; j < ch_used; ++j) {
  1094. uint_fast16_t voffs;
  1095. if (!do_not_decode[j]) {
  1096. uint_fast8_t vqclass = classifs[j_times_ptns_to_read+partition_count];
  1097. int_fast16_t vqbook = vr->books[vqclass][pass];
  1098. if (vqbook >= 0 && vc->codebooks[vqbook].codevectors) {
  1099. uint_fast16_t coffs;
  1100. unsigned dim = vc->codebooks[vqbook].dimensions; // not uint_fast8_t: 64bit is slower here on amd64
  1101. uint_fast16_t step = dim == 1 ? vr->partition_size
  1102. : FASTDIV(vr->partition_size, dim);
  1103. vorbis_codebook codebook = vc->codebooks[vqbook];
  1104. if (vr_type == 0) {
  1105. voffs = voffset+j*vlen;
  1106. for (k = 0; k < step; ++k) {
  1107. coffs = get_vlc2(gb, codebook.vlc.table, codebook.nb_bits, 3) * dim;
  1108. for (l = 0; l < dim; ++l)
  1109. vec[voffs + k + l * step] += codebook.codevectors[coffs + l]; // FPMATH
  1110. }
  1111. } else if (vr_type == 1) {
  1112. voffs = voffset + j * vlen;
  1113. for (k = 0; k < step; ++k) {
  1114. coffs = get_vlc2(gb, codebook.vlc.table, codebook.nb_bits, 3) * dim;
  1115. for (l = 0; l < dim; ++l, ++voffs) {
  1116. vec[voffs]+=codebook.codevectors[coffs+l]; // FPMATH
  1117. AV_DEBUG(" pass %d offs: %d curr: %f change: %f cv offs.: %d \n", pass, voffs, vec[voffs], codebook.codevectors[coffs+l], coffs);
  1118. }
  1119. }
  1120. } else if (vr_type == 2 && ch == 2 && (voffset & 1) == 0 && (dim & 1) == 0) { // most frequent case optimized
  1121. voffs = voffset >> 1;
  1122. if (dim == 2) {
  1123. for (k = 0; k < step; ++k) {
  1124. coffs = get_vlc2(gb, codebook.vlc.table, codebook.nb_bits, 3) * 2;
  1125. vec[voffs + k ] += codebook.codevectors[coffs ]; // FPMATH
  1126. vec[voffs + k + vlen] += codebook.codevectors[coffs + 1]; // FPMATH
  1127. }
  1128. } else if (dim == 4) {
  1129. for (k = 0; k < step; ++k, voffs += 2) {
  1130. coffs = get_vlc2(gb, codebook.vlc.table, codebook.nb_bits, 3) * 4;
  1131. vec[voffs ] += codebook.codevectors[coffs ]; // FPMATH
  1132. vec[voffs + 1 ] += codebook.codevectors[coffs + 2]; // FPMATH
  1133. vec[voffs + vlen ] += codebook.codevectors[coffs + 1]; // FPMATH
  1134. vec[voffs + vlen + 1] += codebook.codevectors[coffs + 3]; // FPMATH
  1135. }
  1136. } else
  1137. for (k = 0; k < step; ++k) {
  1138. coffs = get_vlc2(gb, codebook.vlc.table, codebook.nb_bits, 3) * dim;
  1139. for (l = 0; l < dim; l += 2, voffs++) {
  1140. vec[voffs ] += codebook.codevectors[coffs + l ]; // FPMATH
  1141. vec[voffs + vlen] += codebook.codevectors[coffs + l + 1]; // FPMATH
  1142. AV_DEBUG(" pass %d offs: %d curr: %f change: %f cv offs.: %d+%d \n", pass, voffset / ch + (voffs % ch) * vlen, vec[voffset / ch + (voffs % ch) * vlen], codebook.codevectors[coffs + l], coffs, l);
  1143. }
  1144. }
  1145. } else if (vr_type == 2) {
  1146. voffs = voffset;
  1147. for (k = 0; k < step; ++k) {
  1148. coffs = get_vlc2(gb, codebook.vlc.table, codebook.nb_bits, 3) * dim;
  1149. for (l = 0; l < dim; ++l, ++voffs) {
  1150. vec[voffs / ch + (voffs % ch) * vlen] += codebook.codevectors[coffs + l]; // FPMATH FIXME use if and counter instead of / and %
  1151. AV_DEBUG(" pass %d offs: %d curr: %f change: %f cv offs.: %d+%d \n", pass, voffset / ch + (voffs % ch) * vlen, vec[voffset / ch + (voffs % ch) * vlen], codebook.codevectors[coffs + l], coffs, l);
  1152. }
  1153. }
  1154. }
  1155. }
  1156. }
  1157. j_times_ptns_to_read += ptns_to_read;
  1158. }
  1159. ++partition_count;
  1160. voffset += vr->partition_size;
  1161. }
  1162. }
  1163. }
  1164. return 0;
  1165. }
  1166. static inline int vorbis_residue_decode(vorbis_context *vc, vorbis_residue *vr,
  1167. uint_fast8_t ch,
  1168. uint_fast8_t *do_not_decode,
  1169. float *vec, uint_fast16_t vlen)
  1170. {
  1171. if (vr->type == 2)
  1172. return vorbis_residue_decode_internal(vc, vr, ch, do_not_decode, vec, vlen, 2);
  1173. else if (vr->type == 1)
  1174. return vorbis_residue_decode_internal(vc, vr, ch, do_not_decode, vec, vlen, 1);
  1175. else if (vr->type == 0)
  1176. return vorbis_residue_decode_internal(vc, vr, ch, do_not_decode, vec, vlen, 0);
  1177. else {
  1178. av_log(vc->avccontext, AV_LOG_ERROR, " Invalid residue type while residue decode?! \n");
  1179. return -1;
  1180. }
  1181. }
  1182. void vorbis_inverse_coupling(float *mag, float *ang, int blocksize)
  1183. {
  1184. int i;
  1185. for (i = 0; i < blocksize; i++) {
  1186. if (mag[i] > 0.0) {
  1187. if (ang[i] > 0.0) {
  1188. ang[i] = mag[i] - ang[i];
  1189. } else {
  1190. float temp = ang[i];
  1191. ang[i] = mag[i];
  1192. mag[i] += temp;
  1193. }
  1194. } else {
  1195. if (ang[i] > 0.0) {
  1196. ang[i] += mag[i];
  1197. } else {
  1198. float temp = ang[i];
  1199. ang[i] = mag[i];
  1200. mag[i] -= temp;
  1201. }
  1202. }
  1203. }
  1204. }
  1205. static void copy_normalize(float *dst, float *src, int len, int exp_bias,
  1206. float add_bias)
  1207. {
  1208. int i;
  1209. if (exp_bias) {
  1210. memcpy(dst, src, len * sizeof(float));
  1211. } else {
  1212. for (i = 0; i < len; i++)
  1213. dst[i] = src[i] + add_bias;
  1214. }
  1215. }
  1216. // Decode the audio packet using the functions above
  1217. static int vorbis_parse_audio_packet(vorbis_context *vc)
  1218. {
  1219. GetBitContext *gb = &vc->gb;
  1220. uint_fast8_t previous_window = vc->previous_window;
  1221. uint_fast8_t mode_number;
  1222. uint_fast8_t blockflag;
  1223. uint_fast16_t blocksize;
  1224. int_fast32_t i,j;
  1225. uint_fast8_t no_residue[255];
  1226. uint_fast8_t do_not_decode[255];
  1227. vorbis_mapping *mapping;
  1228. float *ch_res_ptr = vc->channel_residues;
  1229. float *ch_floor_ptr = vc->channel_floors;
  1230. uint_fast8_t res_chan[255];
  1231. uint_fast8_t res_num = 0;
  1232. int_fast16_t retlen = 0;
  1233. float fadd_bias = vc->add_bias;
  1234. if (get_bits1(gb)) {
  1235. av_log(vc->avccontext, AV_LOG_ERROR, "Not a Vorbis I audio packet.\n");
  1236. return -1; // packet type not audio
  1237. }
  1238. if (vc->mode_count == 1) {
  1239. mode_number = 0;
  1240. } else {
  1241. GET_VALIDATED_INDEX(mode_number, ilog(vc->mode_count-1), vc->mode_count)
  1242. }
  1243. vc->mode_number = mode_number;
  1244. mapping = &vc->mappings[vc->modes[mode_number].mapping];
  1245. AV_DEBUG(" Mode number: %d , mapping: %d , blocktype %d \n", mode_number, vc->modes[mode_number].mapping, vc->modes[mode_number].blockflag);
  1246. blockflag = vc->modes[mode_number].blockflag;
  1247. blocksize = vc->blocksize[blockflag];
  1248. if (blockflag)
  1249. skip_bits(gb, 2); // previous_window, next_window
  1250. memset(ch_res_ptr, 0, sizeof(float) * vc->audio_channels * blocksize / 2); //FIXME can this be removed ?
  1251. memset(ch_floor_ptr, 0, sizeof(float) * vc->audio_channels * blocksize / 2); //FIXME can this be removed ?
  1252. // Decode floor
  1253. for (i = 0; i < vc->audio_channels; ++i) {
  1254. vorbis_floor *floor;
  1255. if (mapping->submaps > 1) {
  1256. floor = &vc->floors[mapping->submap_floor[mapping->mux[i]]];
  1257. } else {
  1258. floor = &vc->floors[mapping->submap_floor[0]];
  1259. }
  1260. no_residue[i] = floor->decode(vc, &floor->data, ch_floor_ptr);
  1261. ch_floor_ptr += blocksize / 2;
  1262. }
  1263. // Nonzero vector propagate
  1264. for (i = mapping->coupling_steps - 1; i >= 0; --i) {
  1265. if (!(no_residue[mapping->magnitude[i]] & no_residue[mapping->angle[i]])) {
  1266. no_residue[mapping->magnitude[i]] = 0;
  1267. no_residue[mapping->angle[i]] = 0;
  1268. }
  1269. }
  1270. // Decode residue
  1271. for (i = 0; i < mapping->submaps; ++i) {
  1272. vorbis_residue *residue;
  1273. uint_fast8_t ch = 0;
  1274. for (j = 0; j < vc->audio_channels; ++j) {
  1275. if ((mapping->submaps == 1) || (i == mapping->mux[j])) {
  1276. res_chan[j] = res_num;
  1277. if (no_residue[j]) {
  1278. do_not_decode[ch] = 1;
  1279. } else {
  1280. do_not_decode[ch] = 0;
  1281. }
  1282. ++ch;
  1283. ++res_num;
  1284. }
  1285. }
  1286. residue = &vc->residues[mapping->submap_residue[i]];
  1287. vorbis_residue_decode(vc, residue, ch, do_not_decode, ch_res_ptr, blocksize/2);
  1288. ch_res_ptr += ch * blocksize / 2;
  1289. }
  1290. // Inverse coupling
  1291. for (i = mapping->coupling_steps - 1; i >= 0; --i) { //warning: i has to be signed
  1292. float *mag, *ang;
  1293. mag = vc->channel_residues+res_chan[mapping->magnitude[i]] * blocksize / 2;
  1294. ang = vc->channel_residues+res_chan[mapping->angle[i]] * blocksize / 2;
  1295. vc->dsp.vorbis_inverse_coupling(mag, ang, blocksize / 2);
  1296. }
  1297. // Dotproduct, MDCT
  1298. for (j = vc->audio_channels-1;j >= 0; j--) {
  1299. ch_floor_ptr = vc->channel_floors + j * blocksize / 2;
  1300. ch_res_ptr = vc->channel_residues + res_chan[j] * blocksize / 2;
  1301. vc->dsp.vector_fmul(ch_floor_ptr, ch_res_ptr, blocksize / 2);
  1302. ff_imdct_half(&vc->mdct[blockflag], ch_res_ptr, ch_floor_ptr);
  1303. }
  1304. // Overlap/add, save data for next overlapping FPMATH
  1305. retlen = (blocksize + vc->blocksize[previous_window]) / 4;
  1306. for (j = 0; j < vc->audio_channels; j++) {
  1307. uint_fast16_t bs0 = vc->blocksize[0];
  1308. uint_fast16_t bs1 = vc->blocksize[1];
  1309. float *residue = vc->channel_residues + res_chan[j] * blocksize / 2;
  1310. float *saved = vc->saved + j * bs1 / 4;
  1311. float *ret = vc->channel_floors + j * retlen;
  1312. float *buf = residue;
  1313. const float *win = vc->win[blockflag & previous_window];
  1314. if (blockflag == previous_window) {
  1315. vc->dsp.vector_fmul_window(ret, saved, buf, win, fadd_bias, blocksize / 4);
  1316. } else if (blockflag > previous_window) {
  1317. vc->dsp.vector_fmul_window(ret, saved, buf, win, fadd_bias, bs0 / 4);
  1318. copy_normalize(ret+bs0/2, buf+bs0/4, (bs1-bs0)/4, vc->exp_bias, fadd_bias);
  1319. } else {
  1320. copy_normalize(ret, saved, (bs1 - bs0) / 4, vc->exp_bias, fadd_bias);
  1321. vc->dsp.vector_fmul_window(ret + (bs1 - bs0) / 4, saved + (bs1 - bs0) / 4, buf, win, fadd_bias, bs0 / 4);
  1322. }
  1323. memcpy(saved, buf + blocksize / 4, blocksize / 4 * sizeof(float));
  1324. }
  1325. vc->previous_window = blockflag;
  1326. return retlen;
  1327. }
  1328. // Return the decoded audio packet through the standard api
  1329. static int vorbis_decode_frame(AVCodecContext *avccontext,
  1330. void *data, int *data_size,
  1331. AVPacket *avpkt)
  1332. {
  1333. const uint8_t *buf = avpkt->data;
  1334. int buf_size = avpkt->size;
  1335. vorbis_context *vc = avccontext->priv_data ;
  1336. GetBitContext *gb = &(vc->gb);
  1337. const float *channel_ptrs[255];
  1338. int i;
  1339. int_fast16_t len;
  1340. if (!buf_size)
  1341. return 0;
  1342. AV_DEBUG("packet length %d \n", buf_size);
  1343. init_get_bits(gb, buf, buf_size*8);
  1344. len = vorbis_parse_audio_packet(vc);
  1345. if (len <= 0) {
  1346. *data_size = 0;
  1347. return buf_size;
  1348. }
  1349. if (!vc->first_frame) {
  1350. vc->first_frame = 1;
  1351. *data_size = 0;
  1352. return buf_size ;
  1353. }
  1354. AV_DEBUG("parsed %d bytes %d bits, returned %d samples (*ch*bits) \n", get_bits_count(gb)/8, get_bits_count(gb)%8, len);
  1355. if (vc->audio_channels > 8) {
  1356. for (i = 0; i < vc->audio_channels; i++)
  1357. channel_ptrs[i] = vc->channel_floors + i * len;
  1358. } else {
  1359. for (i = 0; i < vc->audio_channels; i++)
  1360. channel_ptrs[i] = vc->channel_floors +
  1361. len * ff_vorbis_channel_layout_offsets[vc->audio_channels - 1][i];
  1362. }
  1363. vc->dsp.float_to_int16_interleave(data, channel_ptrs, len, vc->audio_channels);
  1364. *data_size = len * 2 * vc->audio_channels;
  1365. return buf_size ;
  1366. }
  1367. // Close decoder
  1368. static av_cold int vorbis_decode_close(AVCodecContext *avccontext)
  1369. {
  1370. vorbis_context *vc = avccontext->priv_data;
  1371. vorbis_free(vc);
  1372. return 0 ;
  1373. }
  1374. AVCodec vorbis_decoder = {
  1375. "vorbis",
  1376. AVMEDIA_TYPE_AUDIO,
  1377. CODEC_ID_VORBIS,
  1378. sizeof(vorbis_context),
  1379. vorbis_decode_init,
  1380. NULL,
  1381. vorbis_decode_close,
  1382. vorbis_decode_frame,
  1383. .long_name = NULL_IF_CONFIG_SMALL("Vorbis"),
  1384. .channel_layouts = ff_vorbis_channel_layouts,
  1385. };