vorbis.c
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:50k
源码类别:

Windows CE

开发平台:

C/C++

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