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.

1415 lines
48KB

  1. /**
  2. * @file vorbis.c
  3. * Vorbis I decoder
  4. * @author Denes Balatoni ( dbalatoni programozo hu )
  5. */
  6. #undef V_DEBUG
  7. #include <math.h>
  8. #define ALT_BITSTREAM_READER_LE
  9. #include "avcodec.h"
  10. #include "bitstream.h"
  11. #include "dsputil.h"
  12. #include "vorbis.h"
  13. #define V_NB_BITS 11
  14. #define V_MAX_VLCS (1<<16)
  15. #ifndef V_DEBUG
  16. #define AV_DEBUG(...)
  17. #endif
  18. /* Helper functions */
  19. /**
  20. * reads 0-32 bits when using the ALT_BITSTREAM_READER_LE bitstream reader
  21. */
  22. unsigned int get_bits_long_le(GetBitContext *s, int n){
  23. if(n<=17) return get_bits(s, n);
  24. else{
  25. int ret= get_bits(s, 16);
  26. return ret | (get_bits(s, n-16) << 16);
  27. }
  28. }
  29. static unsigned int ilog(unsigned int i) { // unfortunatelly av_log2 uses different rounding
  30. unsigned int ret=0;
  31. while (i!=0) {
  32. ++ret;
  33. i>>=1;
  34. }
  35. return ret;
  36. }
  37. static unsigned int nth_root(unsigned int x, unsigned int n) { // x^(1/n)
  38. unsigned int ret=0, i, j;
  39. do {
  40. ++ret;
  41. for(i=0,j=ret;i<n-1;i++) j*=ret;
  42. } while (j<=x);
  43. return (ret-1);
  44. }
  45. static float vorbisfloat2float(uint_fast32_t val) {
  46. double mant=val&0x1fffff;
  47. long exp=(val&0x7fe00000L)>>21;
  48. if (val&0x80000000) mant=-mant;
  49. return(ldexp(mant, exp-20-768));
  50. }
  51. // Generate vlc codes from vorbis huffman code lengths
  52. static int vorbis_len2vlc(vorbis_context *vc, uint_fast8_t *bits, uint_fast32_t *codes, uint_fast32_t num) {
  53. uint_fast32_t exit_at_level[33]={404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
  54. 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};
  55. uint_fast8_t i,j;
  56. uint_fast32_t code,p;
  57. #ifdef V_DEBUG
  58. GetBitContext gb;
  59. #endif
  60. for(p=0;(bits[p]==0) && (p<num);++p);
  61. if (p==num) {
  62. // av_log(vc->avccontext, AV_LOG_INFO, "An empty codebook. Heh?! \n");
  63. return 0;
  64. }
  65. codes[p]=0;
  66. for(i=0;i<bits[p];++i) {
  67. exit_at_level[i+1]=1<<i;
  68. }
  69. #ifdef V_DEBUG
  70. av_log(vc->avccontext, AV_LOG_INFO, " %d. of %d code len %d code %d - ", p, num, bits[p], codes[p]);
  71. init_get_bits(&gb, (uint_fast8_t *)&codes[p], bits[p]);
  72. for(i=0;i<bits[p];++i) {
  73. av_log(vc->avccontext, AV_LOG_INFO, "%s", get_bits1(&gb) ? "1" : "0");
  74. }
  75. av_log(vc->avccontext, AV_LOG_INFO, "\n");
  76. #endif
  77. ++p;
  78. for(;p<num;++p) {
  79. if (bits[p]==0) continue;
  80. // find corresponding exit(node which the tree can grow further from)
  81. for(i=bits[p];i>0;--i) {
  82. if (exit_at_level[i]) break;
  83. }
  84. if (!i) return 1; // overspecified tree
  85. code=exit_at_level[i];
  86. exit_at_level[i]=0;
  87. // construct code (append 0s to end) and introduce new exits
  88. for(j=i+1;j<=bits[p];++j) {
  89. exit_at_level[j]=code+(1<<(j-1));
  90. }
  91. codes[p]=code;
  92. #ifdef V_DEBUG
  93. av_log(vc->avccontext, AV_LOG_INFO, " %d. code len %d code %d - ", p, bits[p], codes[p]);
  94. init_get_bits(&gb, (uint_fast8_t *)&codes[p], bits[p]);
  95. for(i=0;i<bits[p];++i) {
  96. av_log(vc->avccontext, AV_LOG_INFO, "%s", get_bits1(&gb) ? "1" : "0");
  97. }
  98. av_log(vc->avccontext, AV_LOG_INFO, "\n");
  99. #endif
  100. }
  101. //FIXME no exits should be left (underspecified tree - ie. unused valid vlcs - not allowed by SPEC)
  102. return 0;
  103. }
  104. // Free all allocated memory -----------------------------------------
  105. static void vorbis_free(vorbis_context *vc) {
  106. int_fast16_t i;
  107. av_freep(&vc->channel_residues);
  108. av_freep(&vc->channel_floors);
  109. av_freep(&vc->saved);
  110. av_freep(&vc->ret);
  111. av_freep(&vc->residues);
  112. av_freep(&vc->modes);
  113. ff_mdct_end(&vc->mdct0);
  114. ff_mdct_end(&vc->mdct1);
  115. for(i=0;i<vc->codebook_count;++i) {
  116. av_free(vc->codebooks[i].codevectors);
  117. free_vlc(&vc->codebooks[i].vlc);
  118. }
  119. av_freep(&vc->codebooks);
  120. for(i=0;i<vc->floor_count;++i) {
  121. av_free(vc->floors[i].x_list);
  122. av_free(vc->floors[i].x_list_order);
  123. av_free(vc->floors[i].low_neighbour);
  124. av_free(vc->floors[i].high_neighbour);
  125. }
  126. av_freep(&vc->floors);
  127. for(i=0;i<vc->mapping_count;++i) {
  128. av_free(vc->mappings[i].magnitude);
  129. av_free(vc->mappings[i].angle);
  130. av_free(vc->mappings[i].mux);
  131. }
  132. av_freep(&vc->mappings);
  133. }
  134. // Parse setup header -------------------------------------------------
  135. // Process codebooks part
  136. static int vorbis_parse_setup_hdr_codebooks(vorbis_context *vc) {
  137. uint_fast16_t cb;
  138. GetBitContext *gb=&vc->gb;
  139. vc->codebook_count=get_bits(gb,8)+1;
  140. AV_DEBUG(" Codebooks: %d \n", vc->codebook_count);
  141. vc->codebooks=(vorbis_codebook *)av_mallocz(vc->codebook_count * sizeof(vorbis_codebook));
  142. for(cb=0;cb<vc->codebook_count;++cb) {
  143. vorbis_codebook *codebook_setup=&vc->codebooks[cb];
  144. uint_fast8_t ordered;
  145. uint_fast32_t t, used_entries=0;
  146. uint_fast32_t entries;
  147. uint_fast8_t tmp_vlc_bits[V_MAX_VLCS];
  148. uint_fast32_t tmp_vlc_codes[V_MAX_VLCS];
  149. // memset(tmp_vlc_bits, 0, sizeof(tmp_vlc_bits));
  150. AV_DEBUG(" %d. Codebook \n", cb);
  151. if (get_bits(gb, 24)!=0x564342) {
  152. av_log(vc->avccontext, AV_LOG_ERROR, " %d. Codebook setup data corrupt. \n", cb);
  153. return 1;
  154. }
  155. codebook_setup->dimensions=get_bits(gb, 16);
  156. if (codebook_setup->dimensions>16) {
  157. av_log(vc->avccontext, AV_LOG_ERROR, " %d. Codebook's dimension is too large (%d). \n", cb, codebook_setup->dimensions);
  158. return 1;
  159. }
  160. entries=get_bits(gb, 24);
  161. if (entries>V_MAX_VLCS) {
  162. av_log(vc->avccontext, AV_LOG_ERROR, " %d. Codebook has too many entries (%d). \n", cb, entries);
  163. return 1;
  164. }
  165. ordered=get_bits1(gb);
  166. AV_DEBUG(" codebook_dimensions %d, codebook_entries %d \n", codebook_setup->dimensions, entries);
  167. if (!ordered) {
  168. uint_fast16_t ce;
  169. uint_fast8_t flag;
  170. uint_fast8_t sparse=get_bits1(gb);
  171. AV_DEBUG(" not ordered \n");
  172. if (sparse) {
  173. AV_DEBUG(" sparse \n");
  174. used_entries=0;
  175. for(ce=0;ce<entries;++ce) {
  176. flag=get_bits1(gb);
  177. if (flag) {
  178. tmp_vlc_bits[ce]=get_bits(gb, 5)+1;
  179. ++used_entries;
  180. }
  181. else tmp_vlc_bits[ce]=0;
  182. }
  183. } else {
  184. AV_DEBUG(" not sparse \n");
  185. used_entries=entries;
  186. for(ce=0;ce<entries;++ce) {
  187. tmp_vlc_bits[ce]=get_bits(gb, 5)+1;
  188. }
  189. }
  190. } else {
  191. uint_fast16_t current_entry=0;
  192. uint_fast8_t current_length=get_bits(gb, 5)+1;
  193. AV_DEBUG(" ordered, current length: %d \n", current_length); //FIXME
  194. used_entries=entries;
  195. for(;current_entry<used_entries;++current_length) {
  196. uint_fast16_t i, number;
  197. AV_DEBUG(" number bits: %d ", ilog(entries - current_entry));
  198. number=get_bits(gb, ilog(entries - current_entry));
  199. AV_DEBUG(" number: %d \n", number);
  200. for(i=current_entry;i<number+current_entry;++i) {
  201. if (i<used_entries) tmp_vlc_bits[i]=current_length;
  202. }
  203. current_entry+=number;
  204. }
  205. if (current_entry>used_entries) {
  206. av_log(vc->avccontext, AV_LOG_ERROR, " More codelengths than codes in codebook. \n");
  207. return 1;
  208. }
  209. }
  210. codebook_setup->lookup_type=get_bits(gb, 4);
  211. AV_DEBUG(" lookup type: %d : %s \n", codebook_setup->lookup_type, codebook_setup->lookup_type ? "vq" : "no lookup" );
  212. // If the codebook is used for (inverse) VQ, calculate codevectors.
  213. if (codebook_setup->lookup_type==1) {
  214. uint_fast16_t i, j, k;
  215. uint_fast16_t codebook_lookup_values=nth_root(entries, codebook_setup->dimensions);
  216. uint_fast16_t codebook_multiplicands[codebook_lookup_values];
  217. float codebook_minimum_value=vorbisfloat2float(get_bits_long_le(gb, 32));
  218. float codebook_delta_value=vorbisfloat2float(get_bits_long_le(gb, 32));
  219. uint_fast8_t codebook_value_bits=get_bits(gb, 4)+1;
  220. uint_fast8_t codebook_sequence_p=get_bits1(gb);
  221. AV_DEBUG(" We expect %d numbers for building the codevectors. \n", codebook_lookup_values);
  222. AV_DEBUG(" delta %f minmum %f \n", codebook_delta_value, codebook_minimum_value);
  223. for(i=0;i<codebook_lookup_values;++i) {
  224. codebook_multiplicands[i]=get_bits(gb, codebook_value_bits);
  225. AV_DEBUG(" multiplicands*delta+minmum : %e \n", (float)codebook_multiplicands[i]*codebook_delta_value+codebook_minimum_value);
  226. AV_DEBUG(" multiplicand %d \n", codebook_multiplicands[i]);
  227. }
  228. // Weed out unused vlcs and build codevector vector
  229. codebook_setup->codevectors=(float *)av_mallocz(used_entries*codebook_setup->dimensions * sizeof(float));
  230. for(j=0, i=0;i<entries;++i) {
  231. uint_fast8_t dim=codebook_setup->dimensions;
  232. if (tmp_vlc_bits[i]) {
  233. float last=0.0;
  234. uint_fast32_t lookup_offset=i;
  235. #ifdef V_DEBUG
  236. av_log(vc->avccontext, AV_LOG_INFO, "Lookup offset %d ,", i);
  237. #endif
  238. for(k=0;k<dim;++k) {
  239. uint_fast32_t multiplicand_offset = lookup_offset % codebook_lookup_values;
  240. codebook_setup->codevectors[j*dim+k]=codebook_multiplicands[multiplicand_offset]*codebook_delta_value+codebook_minimum_value+last;
  241. if (codebook_sequence_p) {
  242. last=codebook_setup->codevectors[j*dim+k];
  243. }
  244. lookup_offset/=codebook_lookup_values;
  245. }
  246. tmp_vlc_bits[j]=tmp_vlc_bits[i];
  247. #ifdef V_DEBUG
  248. av_log(vc->avccontext, AV_LOG_INFO, "real lookup offset %d, vector: ", j);
  249. for(k=0;k<dim;++k) {
  250. av_log(vc->avccontext, AV_LOG_INFO, " %f ", codebook_setup->codevectors[j*dim+k]);
  251. }
  252. av_log(vc->avccontext, AV_LOG_INFO, "\n");
  253. #endif
  254. ++j;
  255. }
  256. }
  257. if (j!=used_entries) {
  258. av_log(vc->avccontext, AV_LOG_ERROR, "Bug in codevector vector building code. \n");
  259. return 1;
  260. }
  261. entries=used_entries;
  262. }
  263. else if (codebook_setup->lookup_type>=2) {
  264. av_log(vc->avccontext, AV_LOG_ERROR, "Codebook lookup type not supported. \n");
  265. return 1;
  266. }
  267. // Initialize VLC table
  268. if (vorbis_len2vlc(vc, tmp_vlc_bits, tmp_vlc_codes, entries)) {
  269. av_log(vc->avccontext, AV_LOG_ERROR, " Invalid code lengths while generating vlcs. \n");
  270. return 1;
  271. }
  272. codebook_setup->maxdepth=0;
  273. for(t=0;t<entries;++t)
  274. if (tmp_vlc_bits[t]>=codebook_setup->maxdepth) codebook_setup->maxdepth=tmp_vlc_bits[t];
  275. codebook_setup->maxdepth=(codebook_setup->maxdepth+V_NB_BITS-1)/V_NB_BITS;
  276. if (init_vlc(&codebook_setup->vlc, V_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)) {
  277. av_log(vc->avccontext, AV_LOG_ERROR, " Error generating vlc tables. \n");
  278. return 1;
  279. }
  280. }
  281. return 0;
  282. }
  283. // Process time domain transforms part (unused in Vorbis I)
  284. static int vorbis_parse_setup_hdr_tdtransforms(vorbis_context *vc) {
  285. GetBitContext *gb=&vc->gb;
  286. uint_fast8_t i;
  287. uint_fast8_t vorbis_time_count=get_bits(gb, 6)+1;
  288. for(i=0;i<vorbis_time_count;++i) {
  289. uint_fast16_t vorbis_tdtransform=get_bits(gb, 16);
  290. AV_DEBUG(" Vorbis time domain transform %d: %d \n", vorbis_time_count, vorbis_tdtransform);
  291. if (vorbis_tdtransform) {
  292. av_log(vc->avccontext, AV_LOG_ERROR, "Vorbis time domain transform data nonzero. \n");
  293. return 1;
  294. }
  295. }
  296. return 0;
  297. }
  298. // Process floors part - only floor type 1 is supported
  299. static int vorbis_parse_setup_hdr_floors(vorbis_context *vc) {
  300. GetBitContext *gb=&vc->gb;
  301. uint_fast16_t i,j,k;
  302. vc->floor_count=get_bits(gb, 6)+1;
  303. vc->floors=(vorbis_floor *)av_mallocz(vc->floor_count * sizeof(vorbis_floor));
  304. for (i=0;i<vc->floor_count;++i) {
  305. vorbis_floor *floor_setup=&vc->floors[i];
  306. floor_setup->floor_type=get_bits(gb, 16);
  307. AV_DEBUG(" %d. floor type %d \n", i, floor_setup->floor_type);
  308. if (floor_setup->floor_type==1) {
  309. uint_fast8_t maximum_class=0;
  310. uint_fast8_t rangebits;
  311. uint_fast16_t floor1_values=2;
  312. floor_setup->partitions=get_bits(gb, 5);
  313. AV_DEBUG(" %d.floor: %d partitions \n", i, floor_setup->partitions);
  314. for(j=0;j<floor_setup->partitions;++j) {
  315. floor_setup->partition_class[j]=get_bits(gb, 4);
  316. if (floor_setup->partition_class[j]>maximum_class) maximum_class=floor_setup->partition_class[j];
  317. AV_DEBUG(" %d. floor %d partition class %d \n", i, j, floor_setup->partition_class[j]);
  318. }
  319. AV_DEBUG(" maximum class %d \n", maximum_class);
  320. floor_setup->maximum_class=maximum_class;
  321. for(j=0;j<=maximum_class;++j) {
  322. floor_setup->class_dimensions[j]=get_bits(gb, 3)+1;
  323. floor_setup->class_subclasses[j]=get_bits(gb, 2);
  324. AV_DEBUG(" %d floor %d class dim: %d subclasses %d \n", i, j, floor_setup->class_dimensions[j], floor_setup->class_subclasses[j]);
  325. if (floor_setup->class_subclasses[j]) {
  326. floor_setup->class_masterbook[j]=get_bits(gb, 8);
  327. AV_DEBUG(" masterbook: %d \n", floor_setup->class_masterbook[j]);
  328. }
  329. for(k=0;k<(1<<floor_setup->class_subclasses[j]);++k) {
  330. floor_setup->subclass_books[j][k]=get_bits(gb, 8)-1;
  331. AV_DEBUG(" book %d. : %d \n", k, floor_setup->subclass_books[j][k]);
  332. }
  333. }
  334. floor_setup->multiplier=get_bits(gb, 2)+1;
  335. floor_setup->x_list_dim=2;
  336. for(j=0;j<floor_setup->partitions;++j) {
  337. floor_setup->x_list_dim+=floor_setup->class_dimensions[floor_setup->partition_class[j]];
  338. }
  339. floor_setup->x_list=(uint_fast16_t *)av_mallocz(floor_setup->x_list_dim * sizeof(uint_fast16_t));
  340. floor_setup->x_list_order=(uint_fast16_t *)av_mallocz(floor_setup->x_list_dim * sizeof(uint_fast16_t));
  341. floor_setup->low_neighbour=(uint_fast16_t *)av_mallocz(floor_setup->x_list_dim * sizeof(uint_fast16_t));
  342. floor_setup->high_neighbour=(uint_fast16_t *)av_mallocz(floor_setup->x_list_dim * sizeof(uint_fast16_t));
  343. rangebits=get_bits(gb, 4);
  344. floor_setup->x_list[0] = 0;
  345. floor_setup->x_list[1] = (1<<rangebits);
  346. for(j=0;j<floor_setup->partitions;++j) {
  347. for(k=0;k<floor_setup->class_dimensions[floor_setup->partition_class[j]];++k,++floor1_values) {
  348. floor_setup->x_list[floor1_values]=get_bits(gb, rangebits);
  349. AV_DEBUG(" %d. floor1 Y coord. %d \n", floor1_values, floor_setup->x_list[floor1_values]);
  350. }
  351. }
  352. // Precalculate order of x coordinates - needed for decode
  353. for(k=0;k<floor_setup->x_list_dim;++k) {
  354. floor_setup->x_list_order[k]=k;
  355. }
  356. for(k=0;k<floor_setup->x_list_dim-1;++k) { // FIXME optimize sorting ?
  357. for(j=k+1;j<floor_setup->x_list_dim;++j) {
  358. if(floor_setup->x_list[floor_setup->x_list_order[k]]>floor_setup->x_list[floor_setup->x_list_order[j]]) {
  359. uint_fast16_t tmp=floor_setup->x_list_order[k];
  360. floor_setup->x_list_order[k]=floor_setup->x_list_order[j];
  361. floor_setup->x_list_order[j]=tmp;
  362. }
  363. }
  364. }
  365. // Precalculate low and high neighbours
  366. for(k=2;k<floor_setup->x_list_dim;++k) {
  367. floor_setup->low_neighbour[k]=0;
  368. floor_setup->high_neighbour[k]=1; // correct according to SPEC requirements
  369. for (j=0;j<k;++j) {
  370. if ((floor_setup->x_list[j]<floor_setup->x_list[k]) &&
  371. (floor_setup->x_list[j]>floor_setup->x_list[floor_setup->low_neighbour[k]])) {
  372. floor_setup->low_neighbour[k]=j;
  373. }
  374. if ((floor_setup->x_list[j]>floor_setup->x_list[k]) &&
  375. (floor_setup->x_list[j]<floor_setup->x_list[floor_setup->high_neighbour[k]])) {
  376. floor_setup->high_neighbour[k]=j;
  377. }
  378. }
  379. }
  380. }
  381. else {
  382. av_log(vc->avccontext, AV_LOG_ERROR, "Only floor type 1 supported. \n");
  383. return 1;
  384. }
  385. }
  386. return 0;
  387. }
  388. // Process residues part
  389. static int vorbis_parse_setup_hdr_residues(vorbis_context *vc){
  390. GetBitContext *gb=&vc->gb;
  391. uint_fast8_t i, j, k;
  392. vc->residue_count=get_bits(gb, 6)+1;
  393. vc->residues=(vorbis_residue *)av_mallocz(vc->residue_count * sizeof(vorbis_residue));
  394. AV_DEBUG(" There are %d residues. \n", vc->residue_count);
  395. for(i=0;i<vc->residue_count;++i) {
  396. vorbis_residue *res_setup=&vc->residues[i];
  397. uint_fast8_t cascade[64];
  398. uint_fast8_t high_bits;
  399. uint_fast8_t low_bits;
  400. res_setup->type=get_bits(gb, 16);
  401. AV_DEBUG(" %d. residue type %d \n", i, res_setup->type);
  402. res_setup->begin=get_bits(gb, 24);
  403. res_setup->end=get_bits(gb, 24);
  404. res_setup->partition_size=get_bits(gb, 24)+1;
  405. res_setup->classifications=get_bits(gb, 6)+1;
  406. res_setup->classbook=get_bits(gb, 8);
  407. 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,
  408. res_setup->classifications, res_setup->classbook);
  409. for(j=0;j<res_setup->classifications;++j) {
  410. high_bits=0;
  411. low_bits=get_bits(gb, 3);
  412. if (get_bits1(gb)) {
  413. high_bits=get_bits(gb, 5);
  414. }
  415. cascade[j]=(high_bits<<3)+low_bits;
  416. AV_DEBUG(" %d class casscade depth: %d \n", j, ilog(cascade[j]));
  417. }
  418. res_setup->maxpass=0;
  419. for(j=0;j<res_setup->classifications;++j) {
  420. for(k=0;k<8;++k) {
  421. if (cascade[j]&(1<<k)) {
  422. res_setup->books[j][k]=get_bits(gb, 8);
  423. AV_DEBUG(" %d class casscade depth %d book: %d \n", j, k, res_setup->books[j][k]);
  424. if (k>res_setup->maxpass) {
  425. res_setup->maxpass=k;
  426. }
  427. } else {
  428. res_setup->books[j][k]=-1;
  429. }
  430. }
  431. }
  432. }
  433. return 0;
  434. }
  435. // Process mappings part
  436. static int vorbis_parse_setup_hdr_mappings(vorbis_context *vc) {
  437. GetBitContext *gb=&vc->gb;
  438. uint_fast8_t i, j;
  439. vc->mapping_count=get_bits(gb, 6)+1;
  440. vc->mappings=(vorbis_mapping *)av_mallocz(vc->mapping_count * sizeof(vorbis_mapping));
  441. AV_DEBUG(" There are %d mappings. \n", vc->mapping_count);
  442. for(i=0;i<vc->mapping_count;++i) {
  443. vorbis_mapping *mapping_setup=&vc->mappings[i];
  444. if (get_bits(gb, 16)) {
  445. av_log(vc->avccontext, AV_LOG_ERROR, "Other mappings than type 0 are not compliant with the Vorbis I specification. \n");
  446. return 1;
  447. }
  448. if (get_bits1(gb)) {
  449. mapping_setup->submaps=get_bits(gb, 4)+1;
  450. } else {
  451. mapping_setup->submaps=1;
  452. }
  453. if (get_bits1(gb)) {
  454. mapping_setup->coupling_steps=get_bits(gb, 8)+1;
  455. mapping_setup->magnitude=(uint_fast8_t *)av_mallocz(mapping_setup->coupling_steps * sizeof(uint_fast8_t));
  456. mapping_setup->angle=(uint_fast8_t *)av_mallocz(mapping_setup->coupling_steps * sizeof(uint_fast8_t));
  457. for(j=0;j<mapping_setup->coupling_steps;++j) {
  458. mapping_setup->magnitude[j]=get_bits(gb, ilog(vc->audio_channels-1));
  459. mapping_setup->angle[j]=get_bits(gb, ilog(vc->audio_channels-1));
  460. // FIXME: sanity checks
  461. }
  462. } else {
  463. mapping_setup->coupling_steps=0;
  464. }
  465. AV_DEBUG(" %d mapping coupling steps: %d \n", i, mapping_setup->coupling_steps);
  466. if(get_bits(gb, 2)) {
  467. av_log(vc->avccontext, AV_LOG_ERROR, "%d. mapping setup data invalid. \n", i);
  468. return 1; // following spec.
  469. }
  470. if (mapping_setup->submaps>1) {
  471. mapping_setup->mux=(uint_fast8_t *)av_mallocz(vc->audio_channels * sizeof(uint_fast8_t));
  472. for(j=0;j<vc->audio_channels;++j) {
  473. mapping_setup->mux[j]=get_bits(gb, 4);
  474. }
  475. }
  476. for(j=0;j<mapping_setup->submaps;++j) {
  477. get_bits(gb, 8); // FIXME check?
  478. mapping_setup->submap_floor[j]=get_bits(gb, 8);
  479. mapping_setup->submap_residue[j]=get_bits(gb, 8);
  480. AV_DEBUG(" %d mapping %d submap : floor %d, residue %d \n", i, j, mapping_setup->submap_floor[j], mapping_setup->submap_residue[j]);
  481. }
  482. }
  483. return 0;
  484. }
  485. // Process modes part
  486. static int vorbis_parse_setup_hdr_modes(vorbis_context *vc) {
  487. GetBitContext *gb=&vc->gb;
  488. uint_fast8_t i;
  489. vc->mode_count=get_bits(gb, 6)+1;
  490. vc->modes=(vorbis_mode *)av_mallocz(vc->mode_count * sizeof(vorbis_mode));
  491. AV_DEBUG(" There are %d modes.\n", vc->mode_count);
  492. for(i=0;i<vc->mode_count;++i) {
  493. vorbis_mode *mode_setup=&vc->modes[i];
  494. mode_setup->blockflag=get_bits(gb, 1);
  495. mode_setup->windowtype=get_bits(gb, 16); //FIXME check
  496. mode_setup->transformtype=get_bits(gb, 16); //FIXME check
  497. mode_setup->mapping=get_bits(gb, 8); //FIXME check
  498. 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);
  499. }
  500. return 0;
  501. }
  502. // Process the whole setup header using the functions above
  503. static int vorbis_parse_setup_hdr(vorbis_context *vc) {
  504. GetBitContext *gb=&vc->gb;
  505. if ((get_bits(gb, 8)!='v') || (get_bits(gb, 8)!='o') ||
  506. (get_bits(gb, 8)!='r') || (get_bits(gb, 8)!='b') ||
  507. (get_bits(gb, 8)!='i') || (get_bits(gb, 8)!='s')) {
  508. av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (no vorbis signature). \n");
  509. return 1;
  510. }
  511. if (vorbis_parse_setup_hdr_codebooks(vc)) {
  512. av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (codebooks). \n");
  513. return 2;
  514. }
  515. if (vorbis_parse_setup_hdr_tdtransforms(vc)) {
  516. av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (time domain transforms). \n");
  517. return 3;
  518. }
  519. if (vorbis_parse_setup_hdr_floors(vc)) {
  520. av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (floors). \n");
  521. return 4;
  522. }
  523. if (vorbis_parse_setup_hdr_residues(vc)) {
  524. av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (residues). \n");
  525. return 5;
  526. }
  527. if (vorbis_parse_setup_hdr_mappings(vc)) {
  528. av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (mappings). \n");
  529. return 6;
  530. }
  531. if (vorbis_parse_setup_hdr_modes(vc)) {
  532. av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (modes). \n");
  533. return 7;
  534. }
  535. if (!get_bits1(gb)) {
  536. av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (framing flag). \n");
  537. return 8; // framing flag bit unset error
  538. }
  539. return 0;
  540. }
  541. // Process the identification header
  542. static int vorbis_parse_id_hdr(vorbis_context *vc){
  543. GetBitContext *gb=&vc->gb;
  544. uint_fast8_t bl0, bl1;
  545. const float *vwin[8]={ vwin64, vwin128, vwin256, vwin512, vwin1024, vwin2048, vwin4096, vwin8192 };
  546. if ((get_bits(gb, 8)!='v') || (get_bits(gb, 8)!='o') ||
  547. (get_bits(gb, 8)!='r') || (get_bits(gb, 8)!='b') ||
  548. (get_bits(gb, 8)!='i') || (get_bits(gb, 8)!='s')) {
  549. av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis id header packet corrupt (no vorbis signature). \n");
  550. return 1;
  551. }
  552. vc->version=get_bits_long_le(gb, 32); //FIXME check 0
  553. vc->audio_channels=get_bits(gb, 8); //FIXME check >0
  554. vc->audio_samplerate=get_bits_long_le(gb, 32); //FIXME check >0
  555. vc->bitrate_maximum=get_bits_long_le(gb, 32);
  556. vc->bitrate_nominal=get_bits_long_le(gb, 32);
  557. vc->bitrate_minimum=get_bits_long_le(gb, 32);
  558. bl0=get_bits(gb, 4);
  559. bl1=get_bits(gb, 4);
  560. vc->blocksize_0=(1<<bl0);
  561. vc->blocksize_1=(1<<bl1);
  562. if (bl0>13 || bl0<6 || bl1>13 || bl1<6) {
  563. av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis id header packet corrupt (illegal blocksize). \n");
  564. return 3;
  565. }
  566. vc->swin=vwin[bl0-6];
  567. vc->lwin=vwin[bl1-6];
  568. if ((get_bits1(gb)) == 0) {
  569. av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis id header packet corrupt (framing flag not set). \n");
  570. return 2;
  571. }
  572. vc->channel_residues=(float *)av_malloc((vc->blocksize_1/2)*vc->audio_channels * sizeof(float));
  573. vc->channel_floors=(float *)av_malloc((vc->blocksize_1/2)*vc->audio_channels * sizeof(float));
  574. vc->saved=(float *)av_malloc((vc->blocksize_1/2)*vc->audio_channels * sizeof(float));
  575. vc->ret=(float *)av_malloc((vc->blocksize_1/2)*vc->audio_channels * sizeof(float));
  576. vc->saved_start=0;
  577. ff_mdct_init(&vc->mdct0, bl0, 1);
  578. ff_mdct_init(&vc->mdct1, bl1, 1);
  579. 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 ",
  580. vc->version, vc->audio_channels, vc->audio_samplerate, vc->bitrate_maximum, vc->bitrate_nominal, vc->bitrate_minimum, vc->blocksize_0, vc->blocksize_1);
  581. /*
  582. BLK=vc->blocksize_0;
  583. for(i=0;i<BLK/2;++i) {
  584. vc->swin[i]=sin(0.5*3.14159265358*(sin(((float)i+0.5)/(float)BLK*3.14159265358))*(sin(((float)i+0.5)/(float)BLK*3.14159265358)));
  585. }
  586. */
  587. return 0;
  588. }
  589. // Process the extradata using the functions above (identification header, setup header)
  590. static int vorbis_decode_init(AVCodecContext *avccontext) {
  591. vorbis_context *vc = avccontext->priv_data ;
  592. uint8_t *headers = avccontext->extradata;
  593. int headers_len=avccontext->extradata_size;
  594. int header_len[3];
  595. GetBitContext *gb = &(vc->gb);
  596. int i, j, hdr_type;
  597. vc->avccontext = avccontext;
  598. if (!headers_len || headers[0]!=2) {
  599. av_log(avccontext, AV_LOG_ERROR, "Extradata corrupt.\n");
  600. return -1;
  601. }
  602. for(j=1,i=0;i<2;++i, ++j) {
  603. header_len[i]=0;
  604. while(j<headers_len && headers[j]==0xff) {
  605. header_len[i]+=0xff;
  606. ++j;
  607. }
  608. if (j>=headers_len) {
  609. av_log(avccontext, AV_LOG_ERROR, "Extradata corrupt.\n");
  610. return -1;
  611. }
  612. header_len[i]+=headers[j];
  613. }
  614. header_len[2]=headers_len-header_len[0]-header_len[1]-j;
  615. headers+=j;
  616. init_get_bits(gb, headers, header_len[0]*8);
  617. hdr_type=get_bits(gb, 8);
  618. if (hdr_type!=1) {
  619. av_log(avccontext, AV_LOG_ERROR, "First header is not the id header.\n");
  620. return -1;
  621. }
  622. if (vorbis_parse_id_hdr(vc)) {
  623. av_log(avccontext, AV_LOG_ERROR, "Id header corrupt.\n");
  624. vorbis_free(vc);
  625. return -1;
  626. }
  627. init_get_bits(gb, headers+header_len[0]+header_len[1], header_len[2]*8);
  628. hdr_type=get_bits(gb, 8);
  629. if (hdr_type!=5) {
  630. av_log(avccontext, AV_LOG_ERROR, "Third header is not the setup header.\n");
  631. return -1;
  632. }
  633. if (vorbis_parse_setup_hdr(vc)) {
  634. av_log(avccontext, AV_LOG_ERROR, "Setup header corrupt.\n");
  635. vorbis_free(vc);
  636. return -1;
  637. }
  638. avccontext->channels = vc->audio_channels;
  639. avccontext->sample_rate = vc->audio_samplerate;
  640. return 0 ;
  641. }
  642. // Decode audiopackets -------------------------------------------------
  643. // Read and decode floor (type 1 only)
  644. static uint_fast8_t vorbis_floor1_decode(vorbis_context *vc, vorbis_floor *vf, float *vec) {
  645. GetBitContext *gb=&vc->gb;
  646. uint_fast16_t range_v[4]={ 256, 128, 86, 64 };
  647. uint_fast16_t range=range_v[vf->multiplier-1];
  648. uint_fast16_t floor1_Y[vf->x_list_dim];
  649. uint_fast16_t floor1_Y_final[vf->x_list_dim];
  650. uint_fast8_t floor1_flag[vf->x_list_dim];
  651. uint_fast8_t class_;
  652. uint_fast8_t cdim;
  653. uint_fast8_t cbits;
  654. uint_fast8_t csub;
  655. uint_fast8_t cval;
  656. int_fast16_t book;
  657. uint_fast16_t offset;
  658. uint_fast16_t i,j;
  659. uint_fast16_t *floor_x_sort=vf->x_list_order;
  660. /*u*/int_fast16_t adx, ady, off, predicted; // WTF ? dy/adx= (unsigned)dy/adx ?
  661. int_fast16_t dy, err;
  662. uint_fast16_t lx,hx, ly, hy=0;
  663. if (!get_bits1(gb)) return 1; // silence
  664. // Read values (or differences) for the floor's points
  665. floor1_Y[0]=get_bits(gb, ilog(range-1));
  666. floor1_Y[1]=get_bits(gb, ilog(range-1));
  667. AV_DEBUG("floor 0 Y %d floor 1 Y %d \n", floor1_Y[0], floor1_Y[1]);
  668. offset=2;
  669. for(i=0;i<vf->partitions;++i) {
  670. class_=vf->partition_class[i];
  671. cdim=vf->class_dimensions[class_];
  672. cbits=vf->class_subclasses[class_];
  673. csub=(1<<cbits)-1;
  674. cval=0;
  675. AV_DEBUG("Cbits %d \n", cbits);
  676. if (cbits) { // this reads all subclasses for this partition's class
  677. cval=get_vlc2(gb, vc->codebooks[vf->class_masterbook[class_]].vlc.table,
  678. V_NB_BITS, vc->codebooks[vf->class_masterbook[class_]].maxdepth);
  679. }
  680. for(j=0;j<cdim;++j) {
  681. book=vf->subclass_books[class_][cval & csub];
  682. AV_DEBUG("book %d Cbits %d cval %d bits:%d \n", book, cbits, cval, get_bits_count(gb));
  683. cval=cval>>cbits;
  684. if (book>0) {
  685. floor1_Y[offset+j]=get_vlc2(gb, vc->codebooks[book].vlc.table,
  686. V_NB_BITS, vc->codebooks[book].maxdepth);
  687. } else {
  688. floor1_Y[offset+j]=0;
  689. }
  690. AV_DEBUG(" floor(%d) = %d \n", vf->x_list[offset+j], floor1_Y[offset+j]);
  691. }
  692. offset+=cdim;
  693. }
  694. // Amplitude calculation from the differences
  695. floor1_flag[0]=1;
  696. floor1_flag[1]=1;
  697. floor1_Y_final[0]=floor1_Y[0];
  698. floor1_Y_final[1]=floor1_Y[1];
  699. for(i=2;i<vf->x_list_dim;++i) {
  700. uint_fast16_t val, highroom, lowroom, room;
  701. uint_fast16_t high_neigh_offs;
  702. uint_fast16_t low_neigh_offs;
  703. low_neigh_offs=vf->low_neighbour[i];
  704. high_neigh_offs=vf->high_neighbour[i];
  705. dy=floor1_Y_final[high_neigh_offs]-floor1_Y_final[low_neigh_offs]; // render_point begin
  706. adx=vf->x_list[high_neigh_offs]-vf->x_list[low_neigh_offs];
  707. ady= ABS(dy);
  708. err=ady*(vf->x_list[i]-vf->x_list[low_neigh_offs]);
  709. off=err/adx;
  710. if (dy<0) {
  711. predicted=floor1_Y_final[low_neigh_offs]-off;
  712. } else {
  713. predicted=floor1_Y_final[low_neigh_offs]+off;
  714. } // render_point end
  715. val=floor1_Y[i];
  716. highroom=range-predicted;
  717. lowroom=predicted;
  718. if (highroom < lowroom) {
  719. room=highroom*2;
  720. } else {
  721. room=lowroom*2; // SPEC mispelling
  722. }
  723. if (val) {
  724. floor1_flag[low_neigh_offs]=1;
  725. floor1_flag[high_neigh_offs]=1;
  726. floor1_flag[i]=1;
  727. if (val>=room) {
  728. if (highroom > lowroom) {
  729. floor1_Y_final[i]=val-lowroom+predicted;
  730. } else {
  731. floor1_Y_final[i]=predicted-val+highroom-1;
  732. }
  733. } else {
  734. if (val & 1) {
  735. floor1_Y_final[i]=predicted-(val+1)/2;
  736. } else {
  737. floor1_Y_final[i]=predicted+val/2;
  738. }
  739. }
  740. } else {
  741. floor1_flag[i]=0;
  742. floor1_Y_final[i]=predicted;
  743. }
  744. AV_DEBUG(" Decoded floor(%d) = %d / val %d \n", vf->x_list[i], floor1_Y_final[i], val);
  745. }
  746. // Curve synth - connect the calculated dots and convert from dB scale FIXME optimize ?
  747. hx=0;
  748. lx=0;
  749. ly=floor1_Y_final[0]*vf->multiplier; // conforms to SPEC
  750. vec[0]=floor1_inverse_db_table[ly];
  751. for(i=1;i<vf->x_list_dim;++i) {
  752. AV_DEBUG(" Looking at post %d \n", i);
  753. if (floor1_flag[floor_x_sort[i]]) { // SPEC mispelled
  754. int_fast16_t x, y, dy, base, sy; // if uncommented: dy = -32 adx = 2 base = 2blablabla ?????
  755. hy=floor1_Y_final[floor_x_sort[i]]*vf->multiplier;
  756. hx=vf->x_list[floor_x_sort[i]];
  757. dy=hy-ly;
  758. adx=hx-lx;
  759. ady= (dy<0) ? -dy:dy;//ABS(dy);
  760. base=dy/adx;
  761. AV_DEBUG(" dy %d adx %d base %d = %d \n", dy, adx, base, dy/adx);
  762. x=lx;
  763. y=ly;
  764. err=0;
  765. if (dy<0) {
  766. sy=base-1;
  767. } else {
  768. sy=base+1;
  769. }
  770. ady=ady-(base<0 ? -base : base)*adx;
  771. vec[x]=floor1_inverse_db_table[y];
  772. AV_DEBUG(" vec[ %d ] = %d \n", x, y);
  773. for(x=lx+1;(x<hx) && (x<vf->x_list[1]);++x) {
  774. err+=ady;
  775. if (err>=adx) {
  776. err-=adx;
  777. y+=sy;
  778. } else {
  779. y+=base;
  780. }
  781. vec[x]=floor1_inverse_db_table[y];
  782. AV_DEBUG(" vec[ %d ] = %d \n", x, y);
  783. }
  784. /* for(j=1;j<hx-lx+1;++j) { // iterating render_point
  785. dy=hy-ly;
  786. adx=hx-lx;
  787. ady= dy<0 ? -dy : dy;
  788. err=ady*j;
  789. off=err/adx;
  790. if (dy<0) {
  791. predicted=ly-off;
  792. } else {
  793. predicted=ly+off;
  794. }
  795. if (lx+j < vf->x_list[1]) {
  796. vec[lx+j]=floor1_inverse_db_table[predicted];
  797. }
  798. }*/
  799. lx=hx;
  800. ly=hy;
  801. }
  802. }
  803. if (hx<vf->x_list[1]) {
  804. for(i=hx;i<vf->x_list[1];++i) {
  805. vec[i]=floor1_inverse_db_table[hy];
  806. }
  807. }
  808. AV_DEBUG(" Floor decoded\n");
  809. return 0;
  810. }
  811. // Read and decode residue
  812. static 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) {
  813. GetBitContext *gb=&vc->gb;
  814. uint_fast8_t c_p_c=vc->codebooks[vr->classbook].dimensions;
  815. uint_fast16_t n_to_read=vr->end-vr->begin;
  816. uint_fast16_t ptns_to_read=n_to_read/vr->partition_size;
  817. uint_fast8_t classifs[ptns_to_read*vc->audio_channels];
  818. uint_fast8_t pass;
  819. uint_fast8_t ch_used;
  820. uint_fast8_t i,j,l;
  821. uint_fast16_t k;
  822. if (vr->type==2) {
  823. for(j=1;j<ch;++j) {
  824. do_not_decode[0]&=do_not_decode[j]; // FIXME - clobbering input
  825. }
  826. if (do_not_decode[0]) return 0;
  827. ch_used=1;
  828. } else {
  829. ch_used=ch;
  830. }
  831. AV_DEBUG(" residue type 0/1/2 decode begin, ch: %d cpc %d \n", ch, c_p_c);
  832. for(pass=0;pass<=vr->maxpass;++pass) { // FIXME OPTIMIZE?
  833. uint_fast16_t voffset;
  834. uint_fast16_t partition_count;
  835. uint_fast16_t j_times_ptns_to_read;
  836. voffset=vr->begin;
  837. for(partition_count=0;partition_count<ptns_to_read;) { // SPEC error
  838. if (!pass) {
  839. for(j_times_ptns_to_read=0, j=0;j<ch_used;++j) {
  840. if (!do_not_decode[j]) {
  841. uint_fast32_t temp=get_vlc2(gb, vc->codebooks[vr->classbook].vlc.table,
  842. V_NB_BITS, vc->codebooks[vr->classbook].maxdepth);
  843. AV_DEBUG("Classword: %d \n", temp);
  844. for(i=0;i<c_p_c;++i) {
  845. uint_fast32_t temp2;
  846. temp2=temp/vr->classifications;
  847. classifs[j_times_ptns_to_read+partition_count+c_p_c-1-i]=temp-temp2*vr->classifications;
  848. temp=temp2;
  849. }
  850. }
  851. j_times_ptns_to_read+=ptns_to_read;
  852. }
  853. }
  854. for(i=0;(i<c_p_c) && (partition_count<ptns_to_read);++i) {
  855. for(j_times_ptns_to_read=0, j=0;j<ch_used;++j) {
  856. uint_fast16_t voffs;
  857. if (!do_not_decode[j]) {
  858. uint_fast8_t vqclass=classifs[j_times_ptns_to_read+partition_count];
  859. int_fast16_t vqbook=vr->books[vqclass][pass];
  860. if (vqbook>=0) {
  861. uint_fast16_t coffs;
  862. if (vr->type==0) {
  863. uint_fast16_t step=vr->partition_size/vc->codebooks[vqbook].dimensions;
  864. voffs=voffset+j*vlen;
  865. for(k=0;k<step;++k) {
  866. coffs=get_vlc2(gb, vc->codebooks[vqbook].vlc.table,
  867. V_NB_BITS, vc->codebooks[vr->classbook].maxdepth) * vc->codebooks[vqbook].dimensions;
  868. for(l=0;l<vc->codebooks[vqbook].dimensions;++l) {
  869. vec[voffs+k+l*step]+=vc->codebooks[vqbook].codevectors[coffs+l]; // FPMATH
  870. }
  871. }
  872. }
  873. else if (vr->type==1) {
  874. voffs=voffset+j*vlen;
  875. for(k=0;k<vr->partition_size/vc->codebooks[vqbook].dimensions;++k) {
  876. coffs=get_vlc2(gb, vc->codebooks[vqbook].vlc.table,
  877. V_NB_BITS, vc->codebooks[vr->classbook].maxdepth) * vc->codebooks[vqbook].dimensions;
  878. for(l=0;l<vc->codebooks[vqbook].dimensions;++l, ++voffs) {
  879. vec[voffs]+=vc->codebooks[vqbook].codevectors[coffs+l]; // FPMATH
  880. AV_DEBUG(" pass %d offs: %d curr: %f change: %f cv offs.: %d \n", pass, voffs, vec[voffs], vc->codebooks[vqbook].codevectors[coffs+l], coffs);
  881. }
  882. }
  883. }
  884. else if (vr->type==2 && ch==2) { // most frequent case optimized
  885. voffs=voffset;
  886. for(k=0;k<vr->partition_size/vc->codebooks[vqbook].dimensions;++k) {
  887. coffs=get_vlc2(gb, vc->codebooks[vqbook].vlc.table,
  888. V_NB_BITS, vc->codebooks[vr->classbook].maxdepth) * vc->codebooks[vqbook].dimensions;
  889. for(l=0;l<vc->codebooks[vqbook].dimensions;++l, ++voffs) {
  890. vec[(voffs>>1)+((voffs&1) ? vlen : 0)]+=vc->codebooks[vqbook].codevectors[coffs+l]; // FPMATH
  891. 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], vc->codebooks[vqbook].codevectors[coffs+l], coffs, l);
  892. }
  893. }
  894. }
  895. else if (vr->type==2) {
  896. voffs=voffset;
  897. for(k=0;k<vr->partition_size/vc->codebooks[vqbook].dimensions;++k) {
  898. coffs=get_vlc2(gb, vc->codebooks[vqbook].vlc.table,
  899. V_NB_BITS, vc->codebooks[vr->classbook].maxdepth) * vc->codebooks[vqbook].dimensions;
  900. for(l=0;l<vc->codebooks[vqbook].dimensions;++l, ++voffs) {
  901. vec[voffs/ch+(voffs%ch)*vlen]+=vc->codebooks[vqbook].codevectors[coffs+l]; // FPMATH FIXME use if and counter instead of / and %
  902. 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], vc->codebooks[vqbook].codevectors[coffs+l], coffs, l);
  903. }
  904. }
  905. } else {
  906. av_log(vc->avccontext, AV_LOG_ERROR, " Invalid residue type while residue decode?! \n");
  907. return 1;
  908. }
  909. }
  910. }
  911. j_times_ptns_to_read+=ptns_to_read;
  912. }
  913. ++partition_count;
  914. voffset+=vr->partition_size;
  915. }
  916. }
  917. }
  918. return 0;
  919. }
  920. // Decode the audio packet using the functions above
  921. static int vorbis_parse_audio_packet(vorbis_context *vc) {
  922. GetBitContext *gb=&vc->gb;
  923. uint_fast8_t previous_window=0,next_window=0;
  924. uint_fast8_t mode_number;
  925. uint_fast16_t blocksize;
  926. int_fast32_t i,j;
  927. uint_fast8_t no_residue[vc->audio_channels];
  928. uint_fast8_t do_not_decode[vc->audio_channels];
  929. vorbis_mapping *mapping;
  930. float *ch_res_ptr=vc->channel_residues;
  931. float *ch_floor_ptr=vc->channel_floors;
  932. uint_fast8_t res_chan[vc->audio_channels];
  933. uint_fast8_t res_num=0;
  934. int_fast16_t retlen=0;
  935. uint_fast16_t saved_start=0;
  936. if (get_bits1(gb)) {
  937. av_log(vc->avccontext, AV_LOG_ERROR, "Not a Vorbis I audio packet.\n");
  938. return -1; // packet type not audio
  939. }
  940. mode_number=get_bits(gb, ilog(vc->mode_count-1));
  941. mapping=&vc->mappings[vc->modes[mode_number].mapping];
  942. AV_DEBUG(" Mode number: %d , mapping: %d , blocktype %d \n", mode_number, vc->modes[mode_number].mapping, vc->modes[mode_number].blockflag);
  943. if (vc->modes[mode_number].blockflag) {
  944. previous_window=get_bits1(gb);
  945. next_window=get_bits1(gb);
  946. }
  947. blocksize=vc->modes[mode_number].blockflag ? vc->blocksize_1 : vc->blocksize_0;
  948. memset(ch_res_ptr, 0, sizeof(float)*vc->audio_channels*blocksize/2); //FIXME can this be removed ?
  949. memset(ch_floor_ptr, 0, sizeof(float)*vc->audio_channels*blocksize/2); //FIXME can this be removed ?
  950. // Decode floor(1)
  951. for(i=0;i<vc->audio_channels;++i) {
  952. vorbis_floor *floor;
  953. if (mapping->submaps>1) {
  954. floor=&vc->floors[mapping->submap_floor[mapping->mux[i]]];
  955. } else {
  956. floor=&vc->floors[mapping->submap_floor[0]];
  957. }
  958. no_residue[i]=vorbis_floor1_decode(vc, floor, ch_floor_ptr);
  959. ch_floor_ptr+=blocksize/2;
  960. }
  961. // Nonzero vector propagate
  962. for(i=mapping->coupling_steps-1;i>=0;--i) {
  963. if (!(no_residue[mapping->magnitude[i]] & no_residue[mapping->angle[i]])) {
  964. no_residue[mapping->magnitude[i]]=0;
  965. no_residue[mapping->angle[i]]=0;
  966. }
  967. }
  968. // Decode residue
  969. for(i=0;i<mapping->submaps;++i) {
  970. vorbis_residue *residue;
  971. uint_fast8_t ch=0;
  972. for(j=0;j<vc->audio_channels;++j) {
  973. if ((mapping->submaps==1) || (i=mapping->mux[j])) {
  974. res_chan[j]=res_num;
  975. if (no_residue[j]) {
  976. do_not_decode[ch]=1;
  977. } else {
  978. do_not_decode[ch]=0;
  979. }
  980. ++ch;
  981. ++res_num;
  982. }
  983. }
  984. residue=&vc->residues[mapping->submap_residue[i]];
  985. vorbis_residue_decode(vc, residue, ch, do_not_decode, ch_res_ptr, blocksize/2);
  986. ch_res_ptr+=ch*blocksize/2;
  987. }
  988. // Inverse coupling
  989. for(i=mapping->coupling_steps-1;i>=0;--i) { //warning: i has to be signed
  990. float *mag, *ang;
  991. mag=vc->channel_residues+res_chan[mapping->magnitude[i]]*blocksize/2;
  992. ang=vc->channel_residues+res_chan[mapping->angle[i]]*blocksize/2;
  993. for(j=0;j<blocksize/2;++j) {
  994. float temp;
  995. if (mag[j]>0.0) {
  996. if (ang[j]>0.0) {
  997. ang[j]=mag[j]-ang[j];
  998. } else {
  999. temp=ang[j];
  1000. ang[j]=mag[j];
  1001. mag[j]+=temp;
  1002. }
  1003. } else {
  1004. if (ang[j]>0.0) {
  1005. ang[j]+=mag[j];
  1006. } else {
  1007. temp=ang[j];
  1008. ang[j]=mag[j];
  1009. mag[j]-=temp;
  1010. }
  1011. }
  1012. }
  1013. }
  1014. // Dotproduct
  1015. for(j=0, ch_floor_ptr=vc->channel_floors;j<vc->audio_channels;++j,ch_floor_ptr+=blocksize/2) {
  1016. ch_res_ptr=vc->channel_residues+res_chan[j]*blocksize/2;
  1017. for(i=0;i<blocksize/2;++i) {
  1018. ch_floor_ptr[i]*=ch_res_ptr[i]; //FPMATH
  1019. }
  1020. }
  1021. // MDCT, overlap/add, save data for next overlapping FPMATH
  1022. for(j=0;j<vc->audio_channels;++j) {
  1023. uint_fast8_t step=vc->audio_channels;
  1024. uint_fast16_t k;
  1025. float *saved=vc->saved+j*vc->blocksize_1/2;
  1026. float *ret=vc->ret;
  1027. const float *lwin=vc->lwin;
  1028. const float *swin=vc->swin;
  1029. float buf[blocksize];
  1030. float buf_tmp[blocksize];
  1031. ch_floor_ptr=vc->channel_floors+j*blocksize/2;
  1032. saved_start=vc->saved_start;
  1033. ff_imdct_calc(vc->modes[mode_number].blockflag ? &vc->mdct1 : &vc->mdct0, buf, ch_floor_ptr, buf_tmp);
  1034. if (vc->modes[mode_number].blockflag) {
  1035. // -- overlap/add
  1036. if (previous_window) {
  1037. for(k=j, i=0;i<vc->blocksize_1/2;++i, k+=step) {
  1038. ret[k]=saved[i]+buf[i]*lwin[i];
  1039. }
  1040. retlen=vc->blocksize_1/2;
  1041. } else {
  1042. for(k=j, i=0;i<vc->blocksize_0/2;++i, k+=step) {
  1043. ret[k]=saved[i]+buf[(vc->blocksize_1-vc->blocksize_0)/4+i]*swin[i];
  1044. }
  1045. for(i=0;i<(vc->blocksize_1-vc->blocksize_0)/4;++i, k+=step) {
  1046. ret[k]=buf[vc->blocksize_0/2+(vc->blocksize_1-vc->blocksize_0)/4+i];
  1047. }
  1048. retlen=vc->blocksize_0/2+(vc->blocksize_1-vc->blocksize_0)/4;
  1049. }
  1050. // -- save
  1051. if (next_window) {
  1052. for(i=0;i<vc->blocksize_1/2;++i) {
  1053. saved[i]=buf[vc->blocksize_1/2+i]*lwin[vc->blocksize_1/2-1-i];
  1054. }
  1055. saved_start=0;
  1056. } else {
  1057. saved_start=(vc->blocksize_1-vc->blocksize_0)/4;
  1058. for(i=0;i<saved_start;++i) {
  1059. saved[i]=buf[vc->blocksize_1/2+i];
  1060. }
  1061. for(i=0;i<vc->blocksize_0/2;++i) {
  1062. saved[saved_start+i]=buf[vc->blocksize_1/2+saved_start+i]*swin[vc->blocksize_0/2-1-i];
  1063. }
  1064. }
  1065. } else {
  1066. // --overlap/add
  1067. for(k=j, i=0;i<saved_start;++i, k+=step) {
  1068. ret[k]=saved[i];
  1069. }
  1070. for(i=0;i<vc->blocksize_0/2;++i, k+=step) {
  1071. ret[k]=saved[saved_start+i]+buf[i]*swin[i];
  1072. }
  1073. retlen=saved_start+vc->blocksize_0/2;
  1074. // -- save
  1075. for(i=0;i<vc->blocksize_0/2;++i) {
  1076. saved[i]=buf[vc->blocksize_0/2+i]*swin[vc->blocksize_0/2-1-i];
  1077. }
  1078. saved_start=0;
  1079. }
  1080. }
  1081. vc->saved_start=saved_start;
  1082. return retlen*vc->audio_channels;
  1083. }
  1084. // Return the decoded audio packet through the standard api
  1085. static int vorbis_decode_frame(AVCodecContext *avccontext,
  1086. void *data, int *data_size,
  1087. uint8_t *buf, int buf_size)
  1088. {
  1089. vorbis_context *vc = avccontext->priv_data ;
  1090. GetBitContext *gb = &(vc->gb);
  1091. int_fast16_t i, len;
  1092. if(!buf_size){
  1093. return 0;
  1094. }
  1095. AV_DEBUG("packet length %d \n", buf_size);
  1096. init_get_bits(gb, buf, buf_size*8);
  1097. len=vorbis_parse_audio_packet(vc);
  1098. if (len<=0) {
  1099. *data_size=0;
  1100. return buf_size;
  1101. }
  1102. if (!vc->first_frame) {
  1103. vc->first_frame=1;
  1104. *data_size=0;
  1105. return buf_size ;
  1106. }
  1107. AV_DEBUG("parsed %d bytes %d bits, returned %d samples (*ch*bits) \n", get_bits_count(gb)/8, get_bits_count(gb)%8, len);
  1108. for(i=0;i<len;++i) {
  1109. int_fast32_t tmp;
  1110. tmp=vc->ret[i]*32768;
  1111. if (tmp>32767) tmp=32767;
  1112. if (tmp<-32768) tmp=-32768;
  1113. ((int16_t*)data)[i]=tmp;
  1114. }
  1115. *data_size=len*2;
  1116. return buf_size ;
  1117. }
  1118. // Close decoder
  1119. static int vorbis_decode_close(AVCodecContext *avccontext) {
  1120. vorbis_context *vc = avccontext->priv_data;
  1121. vorbis_free(vc);
  1122. return 0 ;
  1123. }
  1124. AVCodec vorbis_decoder = {
  1125. "vorbis",
  1126. CODEC_TYPE_AUDIO,
  1127. CODEC_ID_VORBIS,
  1128. sizeof(vorbis_context),
  1129. vorbis_decode_init,
  1130. NULL,
  1131. vorbis_decode_close,
  1132. vorbis_decode_frame,
  1133. };