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.

1468 lines
50KB

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