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.

1723 lines
60KB

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