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.

1748 lines
61KB

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