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.

1647 lines
58KB

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