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.

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