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.

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