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.

1677 lines
61KB

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