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.

1686 lines
59KB

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