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.

1625 lines
57KB

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