libavcodec/vorbisdec.c
07c55d8e
 /**
ba87f080
  * @file
07c55d8e
  * Vorbis I decoder
  * @author Denes Balatoni  ( dbalatoni programozo hu )
a7adcf29
  *
07c55d8e
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
2d9570a3
 #include <inttypes.h>
07c55d8e
 #include <math.h>
 
 #define ALT_BITSTREAM_READER_LE
 #include "avcodec.h"
9106a698
 #include "get_bits.h"
07c55d8e
 #include "dsputil.h"
1429224b
 #include "fft.h"
fe2ff6d2
 #include "fmtconvert.h"
07c55d8e
 
 #include "vorbis.h"
 #include "xiph.h"
 
 #define V_NB_BITS 8
 #define V_NB_BITS2 11
a7adcf29
 #define V_MAX_VLCS (1 << 16)
 #define V_MAX_PARTITIONS (1 << 20)
07c55d8e
 
 #undef NDEBUG
 #include <assert.h>
 
 typedef struct {
0a6b1a9f
     uint8_t      dimensions;
     uint8_t      lookup_type;
     uint8_t      maxdepth;
     VLC          vlc;
     float       *codevectors;
07c55d8e
     unsigned int nb_bits;
 } vorbis_codebook;
 
a7adcf29
 typedef union  vorbis_floor_u  vorbis_floor_data;
07c55d8e
 typedef struct vorbis_floor0_s vorbis_floor0;
 typedef struct vorbis_floor1_s vorbis_floor1;
 struct vorbis_context_s;
 typedef
3dde6675
 int (* vorbis_floor_decode_func)
     (struct vorbis_context_s *, vorbis_floor_data *, float *);
07c55d8e
 typedef struct {
0a6b1a9f
     uint8_t floor_type;
07c55d8e
     vorbis_floor_decode_func decode;
5e56b30e
     union vorbis_floor_u {
         struct vorbis_floor0_s {
0a6b1a9f
             uint8_t       order;
             uint16_t      rate;
             uint16_t      bark_map_size;
             int32_t      *map[2];
             uint32_t      map_size[2];
             uint8_t       amplitude_bits;
             uint8_t       amplitude_offset;
             uint8_t       num_books;
             uint8_t      *book_list;
a7adcf29
             float        *lsp;
07c55d8e
         } t0;
5e56b30e
         struct vorbis_floor1_s {
0a6b1a9f
             uint8_t       partitions;
             uint8_t       partition_class[32];
             uint8_t       class_dimensions[16];
             uint8_t       class_subclasses[16];
             uint8_t       class_masterbook[16];
             int16_t       subclass_books[16][8];
             uint8_t       multiplier;
             uint16_t      x_list_dim;
a7adcf29
             vorbis_floor1_entry *list;
07c55d8e
         } t1;
     } data;
 } vorbis_floor;
 
 typedef struct {
0a6b1a9f
     uint16_t      type;
     uint32_t      begin;
     uint32_t      end;
c934562c
     unsigned      partition_size;
0a6b1a9f
     uint8_t       classifications;
     uint8_t       classbook;
     int16_t       books[64][8];
     uint8_t       maxpass;
     uint16_t      ptns_to_read;
     uint8_t      *classifs;
07c55d8e
 } vorbis_residue;
 
 typedef struct {
0a6b1a9f
     uint8_t       submaps;
     uint16_t      coupling_steps;
     uint8_t      *magnitude;
     uint8_t      *angle;
     uint8_t      *mux;
     uint8_t       submap_floor[16];
     uint8_t       submap_residue[16];
07c55d8e
 } vorbis_mapping;
 
 typedef struct {
0a6b1a9f
     uint8_t       blockflag;
     uint16_t      windowtype;
     uint16_t      transformtype;
     uint8_t       mapping;
07c55d8e
 } vorbis_mode;
 
 typedef struct vorbis_context_s {
     AVCodecContext *avccontext;
     GetBitContext gb;
     DSPContext dsp;
fe2ff6d2
     FmtConvertContext fmt_conv;
07c55d8e
 
01b22147
     FFTContext mdct[2];
0a6b1a9f
     uint8_t       first_frame;
     uint32_t      version;
     uint8_t       audio_channels;
     uint32_t      audio_samplerate;
     uint32_t      bitrate_maximum;
     uint32_t      bitrate_nominal;
     uint32_t      bitrate_minimum;
     uint32_t      blocksize[2];
a7adcf29
     const float  *win[2];
0a6b1a9f
     uint16_t      codebook_count;
07c55d8e
     vorbis_codebook *codebooks;
0a6b1a9f
     uint8_t       floor_count;
07c55d8e
     vorbis_floor *floors;
0a6b1a9f
     uint8_t       residue_count;
07c55d8e
     vorbis_residue *residues;
0a6b1a9f
     uint8_t       mapping_count;
07c55d8e
     vorbis_mapping *mappings;
0a6b1a9f
     uint8_t       mode_count;
a7adcf29
     vorbis_mode  *modes;
0a6b1a9f
     uint8_t       mode_number; // mode number for the current packet
     uint8_t       previous_window;
a7adcf29
     float        *channel_residues;
     float        *channel_floors;
     float        *saved;
733dbe7d
     float         scale_bias; // for float->int conversion
07c55d8e
 } vorbis_context;
 
 /* Helper functions */
 
 #define BARK(x) \
a7adcf29
     (13.1f * atan(0.00074f * (x)) + 2.24f * atan(1.85e-8f * (x) * (x)) + 1e-4f * (x))
07c55d8e
 
7a41027c
 static const char idx_err_str[] = "Index value %d out of range (0 - %d) for %s at %s:%i\n";
 #define VALIDATE_INDEX(idx, limit) \
     if (idx >= limit) {\
         av_log(vc->avccontext, AV_LOG_ERROR,\
                idx_err_str,\
                (int)(idx), (int)(limit - 1), #idx, __FILE__, __LINE__);\
         return -1;\
     }
 #define GET_VALIDATED_INDEX(idx, bits, limit) \
     {\
         idx = get_bits(gb, bits);\
         VALIDATE_INDEX(idx, limit)\
     }
 
cf3ac543
 static float vorbisfloat2float(unsigned val)
5e56b30e
 {
a7adcf29
     double mant = val & 0x1fffff;
     long exp    = (val & 0x7fe00000L) >> 21;
     if (val & 0x80000000)
         mant = -mant;
a5c0969a
     return ldexp(mant, exp - 20 - 768);
07c55d8e
 }
 
 
 // Free all allocated memory -----------------------------------------
 
5e56b30e
 static void vorbis_free(vorbis_context *vc)
 {
cf3ac543
     int i;
07c55d8e
 
     av_freep(&vc->channel_residues);
     av_freep(&vc->channel_floors);
     av_freep(&vc->saved);
 
3c35da2f
     for (i = 0; i < vc->residue_count; i++)
         av_free(vc->residues[i].classifs);
07c55d8e
     av_freep(&vc->residues);
     av_freep(&vc->modes);
 
     ff_mdct_end(&vc->mdct[0]);
     ff_mdct_end(&vc->mdct[1]);
 
a7adcf29
     for (i = 0; i < vc->codebook_count; ++i) {
07c55d8e
         av_free(vc->codebooks[i].codevectors);
         free_vlc(&vc->codebooks[i].vlc);
     }
     av_freep(&vc->codebooks);
 
a7adcf29
     for (i = 0; i < vc->floor_count; ++i) {
         if (vc->floors[i].floor_type == 0) {
07c55d8e
             av_free(vc->floors[i].data.t0.map[0]);
             av_free(vc->floors[i].data.t0.map[1]);
             av_free(vc->floors[i].data.t0.book_list);
             av_free(vc->floors[i].data.t0.lsp);
5e56b30e
         } else {
07c55d8e
             av_free(vc->floors[i].data.t1.list);
         }
     }
     av_freep(&vc->floors);
 
a7adcf29
     for (i = 0; i < vc->mapping_count; ++i) {
07c55d8e
         av_free(vc->mappings[i].magnitude);
         av_free(vc->mappings[i].angle);
         av_free(vc->mappings[i].mux);
     }
     av_freep(&vc->mappings);
 }
 
 // Parse setup header -------------------------------------------------
 
 // Process codebooks part
 
5e56b30e
 static int vorbis_parse_setup_hdr_codebooks(vorbis_context *vc)
 {
cf3ac543
     unsigned cb;
a7adcf29
     uint8_t  *tmp_vlc_bits;
07c55d8e
     uint32_t *tmp_vlc_codes;
a7adcf29
     GetBitContext *gb = &vc->gb;
0a6b1a9f
     uint16_t *codebook_multiplicands;
07c55d8e
 
a7adcf29
     vc->codebook_count = get_bits(gb, 8) + 1;
07c55d8e
 
df96f22d
     av_dlog(NULL, " Codebooks: %d \n", vc->codebook_count);
07c55d8e
 
d1be646e
     vc->codebooks = av_mallocz(vc->codebook_count * sizeof(*vc->codebooks));
     tmp_vlc_bits  = av_mallocz(V_MAX_VLCS * sizeof(*tmp_vlc_bits));
     tmp_vlc_codes = av_mallocz(V_MAX_VLCS * sizeof(*tmp_vlc_codes));
3c35da2f
     codebook_multiplicands = av_malloc(V_MAX_VLCS * sizeof(*codebook_multiplicands));
07c55d8e
 
a7adcf29
     for (cb = 0; cb < vc->codebook_count; ++cb) {
         vorbis_codebook *codebook_setup = &vc->codebooks[cb];
cf3ac543
         unsigned ordered, t, entries, used_entries = 0;
07c55d8e
 
df96f22d
         av_dlog(NULL, " %u. Codebook\n", cb);
07c55d8e
 
a7adcf29
         if (get_bits(gb, 24) != 0x564342) {
cf3ac543
             av_log(vc->avccontext, AV_LOG_ERROR,
                    " %u. Codebook setup data corrupt.\n", cb);
07c55d8e
             goto error;
         }
 
         codebook_setup->dimensions=get_bits(gb, 16);
a7adcf29
         if (codebook_setup->dimensions > 16 || codebook_setup->dimensions == 0) {
cf3ac543
             av_log(vc->avccontext, AV_LOG_ERROR,
                    " %u. Codebook's dimension is invalid (%d).\n",
                    cb, codebook_setup->dimensions);
07c55d8e
             goto error;
         }
a7adcf29
         entries = get_bits(gb, 24);
         if (entries > V_MAX_VLCS) {
cf3ac543
             av_log(vc->avccontext, AV_LOG_ERROR,
                    " %u. Codebook has too many entries (%u).\n",
                    cb, entries);
07c55d8e
             goto error;
         }
 
a7adcf29
         ordered = get_bits1(gb);
07c55d8e
 
df96f22d
         av_dlog(NULL, " codebook_dimensions %d, codebook_entries %u\n",
                 codebook_setup->dimensions, entries);
07c55d8e
 
         if (!ordered) {
cf3ac543
             unsigned ce, flag;
             unsigned sparse = get_bits1(gb);
07c55d8e
 
df96f22d
             av_dlog(NULL, " not ordered \n");
07c55d8e
 
             if (sparse) {
df96f22d
                 av_dlog(NULL, " sparse \n");
07c55d8e
 
a7adcf29
                 used_entries = 0;
                 for (ce = 0; ce < entries; ++ce) {
                     flag = get_bits1(gb);
07c55d8e
                     if (flag) {
a7adcf29
                         tmp_vlc_bits[ce] = get_bits(gb, 5) + 1;
07c55d8e
                         ++used_entries;
5e56b30e
                     } else
a7adcf29
                         tmp_vlc_bits[ce] = 0;
07c55d8e
                 }
             } else {
df96f22d
                 av_dlog(NULL, " not sparse \n");
07c55d8e
 
a7adcf29
                 used_entries = entries;
                 for (ce = 0; ce < entries; ++ce)
                     tmp_vlc_bits[ce] = get_bits(gb, 5) + 1;
07c55d8e
             }
         } else {
cf3ac543
             unsigned current_entry  = 0;
             unsigned current_length = get_bits(gb, 5) + 1;
07c55d8e
 
df96f22d
             av_dlog(NULL, " ordered, current length: %u\n", current_length);  //FIXME
07c55d8e
 
a7adcf29
             used_entries = entries;
             for (; current_entry < used_entries && current_length <= 32; ++current_length) {
cf3ac543
                 unsigned i, number;
07c55d8e
 
df96f22d
                 av_dlog(NULL, " number bits: %u ", ilog(entries - current_entry));
07c55d8e
 
a7adcf29
                 number = get_bits(gb, ilog(entries - current_entry));
07c55d8e
 
df96f22d
                 av_dlog(NULL, " number: %u\n", number);
07c55d8e
 
a7adcf29
                 for (i = current_entry; i < number+current_entry; ++i)
                     if (i < used_entries)
                         tmp_vlc_bits[i] = current_length;
07c55d8e
 
                 current_entry+=number;
             }
             if (current_entry>used_entries) {
                 av_log(vc->avccontext, AV_LOG_ERROR, " More codelengths than codes in codebook. \n");
                 goto error;
             }
         }
 
a7adcf29
         codebook_setup->lookup_type = get_bits(gb, 4);
07c55d8e
 
df96f22d
         av_dlog(NULL, " lookup type: %d : %s \n", codebook_setup->lookup_type,
                 codebook_setup->lookup_type ? "vq" : "no lookup");
07c55d8e
 
 // If the codebook is used for (inverse) VQ, calculate codevectors.
 
a7adcf29
         if (codebook_setup->lookup_type == 1) {
cf3ac543
             unsigned i, j, k;
             unsigned codebook_lookup_values = ff_vorbis_nth_root(entries, codebook_setup->dimensions);
07c55d8e
 
a7adcf29
             float codebook_minimum_value = vorbisfloat2float(get_bits_long(gb, 32));
             float codebook_delta_value   = vorbisfloat2float(get_bits_long(gb, 32));
cf3ac543
             unsigned codebook_value_bits = get_bits(gb, 4) + 1;
             unsigned codebook_sequence_p = get_bits1(gb);
07c55d8e
 
df96f22d
             av_dlog(NULL, " We expect %d numbers for building the codevectors. \n",
                     codebook_lookup_values);
             av_dlog(NULL, "  delta %f minmum %f \n",
                     codebook_delta_value, codebook_minimum_value);
07c55d8e
 
a7adcf29
             for (i = 0; i < codebook_lookup_values; ++i) {
                 codebook_multiplicands[i] = get_bits(gb, codebook_value_bits);
07c55d8e
 
df96f22d
                 av_dlog(NULL, " multiplicands*delta+minmum : %e \n",
                         (float)codebook_multiplicands[i] * codebook_delta_value + codebook_minimum_value);
                 av_dlog(NULL, " multiplicand %u\n", codebook_multiplicands[i]);
07c55d8e
             }
 
 // Weed out unused vlcs and build codevector vector
d1be646e
             codebook_setup->codevectors = used_entries ? av_mallocz(used_entries *
                                                                     codebook_setup->dimensions *
                                                                     sizeof(*codebook_setup->codevectors))
                                                        : NULL;
a7adcf29
             for (j = 0, i = 0; i < entries; ++i) {
cf3ac543
                 unsigned dim = codebook_setup->dimensions;
07c55d8e
 
                 if (tmp_vlc_bits[i]) {
a7adcf29
                     float last = 0.0;
cf3ac543
                     unsigned lookup_offset = i;
07c55d8e
 
23664624
                     av_dlog(vc->avccontext, "Lookup offset %u ,", i);
07c55d8e
 
a7adcf29
                     for (k = 0; k < dim; ++k) {
cf3ac543
                         unsigned multiplicand_offset = lookup_offset % codebook_lookup_values;
a7adcf29
                         codebook_setup->codevectors[j * dim + k] = codebook_multiplicands[multiplicand_offset] * codebook_delta_value + codebook_minimum_value + last;
5e56b30e
                         if (codebook_sequence_p)
a7adcf29
                             last = codebook_setup->codevectors[j * dim + k];
07c55d8e
                         lookup_offset/=codebook_lookup_values;
                     }
a7adcf29
                     tmp_vlc_bits[j] = tmp_vlc_bits[i];
07c55d8e
 
23664624
                     av_dlog(vc->avccontext, "real lookup offset %u, vector: ", j);
a7adcf29
                     for (k = 0; k < dim; ++k)
23664624
                         av_dlog(vc->avccontext, " %f ",
                                 codebook_setup->codevectors[j * dim + k]);
                     av_dlog(vc->avccontext, "\n");
07c55d8e
 
                     ++j;
                 }
             }
a7adcf29
             if (j != used_entries) {
07c55d8e
                 av_log(vc->avccontext, AV_LOG_ERROR, "Bug in codevector vector building code. \n");
                 goto error;
             }
a7adcf29
             entries = used_entries;
         } else if (codebook_setup->lookup_type >= 2) {
07c55d8e
             av_log(vc->avccontext, AV_LOG_ERROR, "Codebook lookup type not supported. \n");
             goto error;
         }
 
 // Initialize VLC table
         if (ff_vorbis_len2vlc(tmp_vlc_bits, tmp_vlc_codes, entries)) {
             av_log(vc->avccontext, AV_LOG_ERROR, " Invalid code lengths while generating vlcs. \n");
             goto error;
         }
a7adcf29
         codebook_setup->maxdepth = 0;
         for (t = 0; t < entries; ++t)
             if (tmp_vlc_bits[t] >= codebook_setup->maxdepth)
                 codebook_setup->maxdepth = tmp_vlc_bits[t];
07c55d8e
 
a7adcf29
         if (codebook_setup->maxdepth > 3 * V_NB_BITS)
             codebook_setup->nb_bits = V_NB_BITS2;
5e56b30e
         else
a7adcf29
             codebook_setup->nb_bits = V_NB_BITS;
07c55d8e
 
a7adcf29
         codebook_setup->maxdepth = (codebook_setup->maxdepth+codebook_setup->nb_bits - 1) / codebook_setup->nb_bits;
07c55d8e
 
         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)) {
             av_log(vc->avccontext, AV_LOG_ERROR, " Error generating vlc tables. \n");
             goto error;
         }
     }
 
     av_free(tmp_vlc_bits);
     av_free(tmp_vlc_codes);
3c35da2f
     av_free(codebook_multiplicands);
07c55d8e
     return 0;
 
 // Error:
 error:
     av_free(tmp_vlc_bits);
     av_free(tmp_vlc_codes);
3c35da2f
     av_free(codebook_multiplicands);
0a01efd0
     return -1;
07c55d8e
 }
 
 // Process time domain transforms part (unused in Vorbis I)
 
5e56b30e
 static int vorbis_parse_setup_hdr_tdtransforms(vorbis_context *vc)
 {
a7adcf29
     GetBitContext *gb = &vc->gb;
cf3ac543
     unsigned i, vorbis_time_count = get_bits(gb, 6) + 1;
07c55d8e
 
a7adcf29
     for (i = 0; i < vorbis_time_count; ++i) {
cf3ac543
         unsigned vorbis_tdtransform = get_bits(gb, 16);
07c55d8e
 
df96f22d
         av_dlog(NULL, " Vorbis time domain transform %u: %u\n",
                 vorbis_time_count, vorbis_tdtransform);
07c55d8e
 
         if (vorbis_tdtransform) {
             av_log(vc->avccontext, AV_LOG_ERROR, "Vorbis time domain transform data nonzero. \n");
0a01efd0
             return -1;
07c55d8e
         }
     }
     return 0;
 }
 
 // Process floors part
 
3dde6675
 static int vorbis_floor0_decode(vorbis_context *vc,
                                 vorbis_floor_data *vfu, float *vec);
cf3ac543
 static void create_map(vorbis_context *vc, unsigned floor_number);
3dde6675
 static int vorbis_floor1_decode(vorbis_context *vc,
                                 vorbis_floor_data *vfu, float *vec);
5e56b30e
 static int vorbis_parse_setup_hdr_floors(vorbis_context *vc)
 {
a7adcf29
     GetBitContext *gb = &vc->gb;
c740f737
     int i,j,k;
07c55d8e
 
a7adcf29
     vc->floor_count = get_bits(gb, 6) + 1;
07c55d8e
 
d1be646e
     vc->floors = av_mallocz(vc->floor_count * sizeof(*vc->floors));
07c55d8e
 
a7adcf29
     for (i = 0; i < vc->floor_count; ++i) {
         vorbis_floor *floor_setup = &vc->floors[i];
07c55d8e
 
a7adcf29
         floor_setup->floor_type = get_bits(gb, 16);
07c55d8e
 
df96f22d
         av_dlog(NULL, " %d. floor type %d \n", i, floor_setup->floor_type);
07c55d8e
 
a7adcf29
         if (floor_setup->floor_type == 1) {
54fdf5d1
             int maximum_class = -1;
cf3ac543
             unsigned rangebits, rangemax, floor1_values = 2;
07c55d8e
 
a7adcf29
             floor_setup->decode = vorbis_floor1_decode;
07c55d8e
 
a7adcf29
             floor_setup->data.t1.partitions = get_bits(gb, 5);
07c55d8e
 
df96f22d
             av_dlog(NULL, " %d.floor: %d partitions \n",
                     i, floor_setup->data.t1.partitions);
07c55d8e
 
a7adcf29
             for (j = 0; j < floor_setup->data.t1.partitions; ++j) {
                 floor_setup->data.t1.partition_class[j] = get_bits(gb, 4);
                 if (floor_setup->data.t1.partition_class[j] > maximum_class)
                     maximum_class = floor_setup->data.t1.partition_class[j];
07c55d8e
 
df96f22d
                 av_dlog(NULL, " %d. floor %d partition class %d \n",
                         i, j, floor_setup->data.t1.partition_class[j]);
07c55d8e
 
             }
 
df96f22d
             av_dlog(NULL, " maximum class %d \n", maximum_class);
07c55d8e
 
a7adcf29
             for (j = 0; j <= maximum_class; ++j) {
                 floor_setup->data.t1.class_dimensions[j] = get_bits(gb, 3) + 1;
                 floor_setup->data.t1.class_subclasses[j] = get_bits(gb, 2);
07c55d8e
 
df96f22d
                 av_dlog(NULL, " %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]);
07c55d8e
 
                 if (floor_setup->data.t1.class_subclasses[j]) {
7a41027c
                     GET_VALIDATED_INDEX(floor_setup->data.t1.class_masterbook[j], 8, vc->codebook_count)
07c55d8e
 
df96f22d
                     av_dlog(NULL, "   masterbook: %d \n", floor_setup->data.t1.class_masterbook[j]);
07c55d8e
                 }
 
a7adcf29
                 for (k = 0; k < (1 << floor_setup->data.t1.class_subclasses[j]); ++k) {
                     int16_t bits = get_bits(gb, 8) - 1;
7a41027c
                     if (bits != -1)
                         VALIDATE_INDEX(bits, vc->codebook_count)
a7adcf29
                     floor_setup->data.t1.subclass_books[j][k] = bits;
07c55d8e
 
df96f22d
                     av_dlog(NULL, "    book %d. : %d \n", k, floor_setup->data.t1.subclass_books[j][k]);
07c55d8e
                 }
             }
 
a7adcf29
             floor_setup->data.t1.multiplier = get_bits(gb, 2) + 1;
             floor_setup->data.t1.x_list_dim = 2;
07c55d8e
 
a7adcf29
             for (j = 0; j < floor_setup->data.t1.partitions; ++j)
07c55d8e
                 floor_setup->data.t1.x_list_dim+=floor_setup->data.t1.class_dimensions[floor_setup->data.t1.partition_class[j]];
 
d1be646e
             floor_setup->data.t1.list = av_mallocz(floor_setup->data.t1.x_list_dim *
                                                    sizeof(*floor_setup->data.t1.list));
07c55d8e
 
 
a7adcf29
             rangebits = get_bits(gb, 4);
13184036
             rangemax = (1 << rangebits);
             if (rangemax > vc->blocksize[1] / 2) {
                 av_log(vc->avccontext, AV_LOG_ERROR,
0a6b1a9f
                        "Floor value is too large for blocksize: %u (%"PRIu32")\n",
13184036
                        rangemax, vc->blocksize[1] / 2);
                 return -1;
             }
07c55d8e
             floor_setup->data.t1.list[0].x = 0;
13184036
             floor_setup->data.t1.list[1].x = rangemax;
07c55d8e
 
a7adcf29
             for (j = 0; j < floor_setup->data.t1.partitions; ++j) {
                 for (k = 0; k < floor_setup->data.t1.class_dimensions[floor_setup->data.t1.partition_class[j]]; ++k, ++floor1_values) {
                     floor_setup->data.t1.list[floor1_values].x = get_bits(gb, rangebits);
07c55d8e
 
df96f22d
                     av_dlog(NULL, " %u. floor1 Y coord. %d\n", floor1_values,
                             floor_setup->data.t1.list[floor1_values].x);
07c55d8e
                 }
             }
 
 // Precalculate order of x coordinates - needed for decode
             ff_vorbis_ready_floor1_list(floor_setup->data.t1.list, floor_setup->data.t1.x_list_dim);
a7adcf29
         } else if (floor_setup->floor_type == 0) {
cf3ac543
             unsigned max_codebook_dim = 0;
07c55d8e
 
a7adcf29
             floor_setup->decode = vorbis_floor0_decode;
07c55d8e
 
a7adcf29
             floor_setup->data.t0.order          = get_bits(gb,  8);
             floor_setup->data.t0.rate           = get_bits(gb, 16);
             floor_setup->data.t0.bark_map_size  = get_bits(gb, 16);
             floor_setup->data.t0.amplitude_bits = get_bits(gb,  6);
07c55d8e
             /* zero would result in a div by zero later *
              * 2^0 - 1 == 0                             */
             if (floor_setup->data.t0.amplitude_bits == 0) {
6d173dae
                 av_log(vc->avccontext, AV_LOG_ERROR,
                        "Floor 0 amplitude bits is 0.\n");
                 return -1;
07c55d8e
             }
a7adcf29
             floor_setup->data.t0.amplitude_offset = get_bits(gb, 8);
             floor_setup->data.t0.num_books        = get_bits(gb, 4) + 1;
07c55d8e
 
             /* allocate mem for booklist */
a7adcf29
             floor_setup->data.t0.book_list =
07c55d8e
                 av_malloc(floor_setup->data.t0.num_books);
a7adcf29
             if (!floor_setup->data.t0.book_list)
5e56b30e
                 return -1;
07c55d8e
             /* read book indexes */
             {
                 int idx;
cf3ac543
                 unsigned book_idx;
a7adcf29
                 for (idx = 0; idx < floor_setup->data.t0.num_books; ++idx) {
961b0c41
                     GET_VALIDATED_INDEX(book_idx, 8, vc->codebook_count)
                     floor_setup->data.t0.book_list[idx] = book_idx;
07c55d8e
                     if (vc->codebooks[book_idx].dimensions > max_codebook_dim)
a7adcf29
                         max_codebook_dim = vc->codebooks[book_idx].dimensions;
07c55d8e
                 }
             }
 
a7adcf29
             create_map(vc, i);
07c55d8e
 
b2a51e3d
             /* codebook dim is for padding if codebook dim doesn't *
              * divide order+1 then we need to read more data       */
             floor_setup->data.t0.lsp =
d1be646e
                 av_malloc((floor_setup->data.t0.order + 1 + max_codebook_dim)
                           * sizeof(*floor_setup->data.t0.lsp));
b2a51e3d
             if (!floor_setup->data.t0.lsp)
                 return -1;
07c55d8e
 
df96f22d
             /* debug output parsed headers */
             av_dlog(NULL, "floor0 order: %u\n", floor_setup->data.t0.order);
             av_dlog(NULL, "floor0 rate: %u\n", floor_setup->data.t0.rate);
             av_dlog(NULL, "floor0 bark map size: %u\n",
                     floor_setup->data.t0.bark_map_size);
             av_dlog(NULL, "floor0 amplitude bits: %u\n",
                     floor_setup->data.t0.amplitude_bits);
             av_dlog(NULL, "floor0 amplitude offset: %u\n",
                     floor_setup->data.t0.amplitude_offset);
             av_dlog(NULL, "floor0 number of books: %u\n",
                     floor_setup->data.t0.num_books);
             av_dlog(NULL, "floor0 book list pointer: %p\n",
                     floor_setup->data.t0.book_list);
07c55d8e
             {
6d173dae
                 int idx;
                 for (idx = 0; idx < floor_setup->data.t0.num_books; ++idx) {
df96f22d
                     av_dlog(NULL, "  Book %d: %u\n", idx + 1,
                             floor_setup->data.t0.book_list[idx]);
6d173dae
                 }
07c55d8e
             }
5e56b30e
         } else {
07c55d8e
             av_log(vc->avccontext, AV_LOG_ERROR, "Invalid floor type!\n");
0a01efd0
             return -1;
07c55d8e
         }
     }
     return 0;
 }
 
 // Process residues part
 
5e56b30e
 static int vorbis_parse_setup_hdr_residues(vorbis_context *vc)
 {
a7adcf29
     GetBitContext *gb = &vc->gb;
cf3ac543
     unsigned i, j, k;
07c55d8e
 
a7adcf29
     vc->residue_count = get_bits(gb, 6)+1;
d1be646e
     vc->residues      = av_mallocz(vc->residue_count * sizeof(*vc->residues));
07c55d8e
 
df96f22d
     av_dlog(NULL, " There are %d residues. \n", vc->residue_count);
07c55d8e
 
a7adcf29
     for (i = 0; i < vc->residue_count; ++i) {
         vorbis_residue *res_setup = &vc->residues[i];
0a6b1a9f
         uint8_t cascade[64];
cf3ac543
         unsigned high_bits, low_bits;
07c55d8e
 
a7adcf29
         res_setup->type = get_bits(gb, 16);
07c55d8e
 
df96f22d
         av_dlog(NULL, " %u. residue type %d\n", i, res_setup->type);
07c55d8e
 
a7adcf29
         res_setup->begin          = get_bits(gb, 24);
         res_setup->end            = get_bits(gb, 24);
         res_setup->partition_size = get_bits(gb, 24) + 1;
36b7e983
         /* Validations to prevent a buffer overflow later. */
a7adcf29
         if (res_setup->begin>res_setup->end ||
925aa969
             res_setup->end > vc->avccontext->channels * vc->blocksize[1] / 2 ||
a7adcf29
             (res_setup->end-res_setup->begin) / res_setup->partition_size > V_MAX_PARTITIONS) {
0a6b1a9f
             av_log(vc->avccontext, AV_LOG_ERROR,
                    "partition out of bounds: type, begin, end, size, blocksize: %"PRIu16", %"PRIu32", %"PRIu32", %u, %"PRIu32"\n",
                    res_setup->type, res_setup->begin, res_setup->end,
                    res_setup->partition_size, vc->blocksize[1] / 2);
0a01efd0
             return -1;
36b7e983
         }
 
a7adcf29
         res_setup->classifications = get_bits(gb, 6) + 1;
7a41027c
         GET_VALIDATED_INDEX(res_setup->classbook, 8, vc->codebook_count)
07c55d8e
 
3c35da2f
         res_setup->ptns_to_read =
             (res_setup->end - res_setup->begin) / res_setup->partition_size;
         res_setup->classifs = av_malloc(res_setup->ptns_to_read *
                                         vc->audio_channels *
                                         sizeof(*res_setup->classifs));
55aa55f2
         if (!res_setup->classifs)
             return AVERROR(ENOMEM);
3c35da2f
 
df96f22d
         av_dlog(NULL, "    begin %d end %d part.size %d classif.s %d classbook %d \n",
                 res_setup->begin, res_setup->end, res_setup->partition_size,
                 res_setup->classifications, res_setup->classbook);
07c55d8e
 
a7adcf29
         for (j = 0; j < res_setup->classifications; ++j) {
             high_bits = 0;
             low_bits  = get_bits(gb, 3);
5e56b30e
             if (get_bits1(gb))
a7adcf29
                 high_bits = get_bits(gb, 5);
             cascade[j] = (high_bits << 3) + low_bits;
07c55d8e
 
df96f22d
             av_dlog(NULL, "     %u class cascade depth: %d\n", j, ilog(cascade[j]));
07c55d8e
         }
 
a7adcf29
         res_setup->maxpass = 0;
         for (j = 0; j < res_setup->classifications; ++j) {
             for (k = 0; k < 8; ++k) {
                 if (cascade[j]&(1 << k)) {
7a41027c
                     GET_VALIDATED_INDEX(res_setup->books[j][k], 8, vc->codebook_count)
07c55d8e
 
df96f22d
                     av_dlog(NULL, "     %u class cascade depth %u book: %d\n",
                             j, k, res_setup->books[j][k]);
07c55d8e
 
5e56b30e
                     if (k>res_setup->maxpass)
a7adcf29
                         res_setup->maxpass = k;
07c55d8e
                 } else {
a7adcf29
                     res_setup->books[j][k] = -1;
07c55d8e
                 }
             }
         }
     }
     return 0;
 }
 
 // Process mappings part
 
5e56b30e
 static int vorbis_parse_setup_hdr_mappings(vorbis_context *vc)
 {
a7adcf29
     GetBitContext *gb = &vc->gb;
cf3ac543
     unsigned i, j;
07c55d8e
 
a7adcf29
     vc->mapping_count = get_bits(gb, 6)+1;
d1be646e
     vc->mappings      = av_mallocz(vc->mapping_count * sizeof(*vc->mappings));
07c55d8e
 
df96f22d
     av_dlog(NULL, " There are %d mappings. \n", vc->mapping_count);
07c55d8e
 
a7adcf29
     for (i = 0; i < vc->mapping_count; ++i) {
         vorbis_mapping *mapping_setup = &vc->mappings[i];
07c55d8e
 
         if (get_bits(gb, 16)) {
             av_log(vc->avccontext, AV_LOG_ERROR, "Other mappings than type 0 are not compliant with the Vorbis I specification. \n");
0a01efd0
             return -1;
07c55d8e
         }
         if (get_bits1(gb)) {
a7adcf29
             mapping_setup->submaps = get_bits(gb, 4) + 1;
07c55d8e
         } else {
a7adcf29
             mapping_setup->submaps = 1;
07c55d8e
         }
 
         if (get_bits1(gb)) {
a7adcf29
             mapping_setup->coupling_steps = get_bits(gb, 8) + 1;
d1be646e
             mapping_setup->magnitude      = av_mallocz(mapping_setup->coupling_steps *
                                                        sizeof(*mapping_setup->magnitude));
             mapping_setup->angle          = av_mallocz(mapping_setup->coupling_steps *
                                                        sizeof(*mapping_setup->angle));
a7adcf29
             for (j = 0; j < mapping_setup->coupling_steps; ++j) {
7a41027c
                 GET_VALIDATED_INDEX(mapping_setup->magnitude[j], ilog(vc->audio_channels - 1), vc->audio_channels)
                 GET_VALIDATED_INDEX(mapping_setup->angle[j],     ilog(vc->audio_channels - 1), vc->audio_channels)
07c55d8e
             }
         } else {
a7adcf29
             mapping_setup->coupling_steps = 0;
07c55d8e
         }
 
df96f22d
         av_dlog(NULL, "   %u mapping coupling steps: %d\n",
                 i, mapping_setup->coupling_steps);
07c55d8e
 
a7adcf29
         if (get_bits(gb, 2)) {
cf3ac543
             av_log(vc->avccontext, AV_LOG_ERROR, "%u. mapping setup data invalid.\n", i);
0a01efd0
             return -1; // following spec.
07c55d8e
         }
 
         if (mapping_setup->submaps>1) {
d1be646e
             mapping_setup->mux = av_mallocz(vc->audio_channels *
                                             sizeof(*mapping_setup->mux));
a7adcf29
             for (j = 0; j < vc->audio_channels; ++j)
                 mapping_setup->mux[j] = get_bits(gb, 4);
07c55d8e
         }
 
a7adcf29
         for (j = 0; j < mapping_setup->submaps; ++j) {
7ae7300e
             skip_bits(gb, 8); // FIXME check?
7a41027c
             GET_VALIDATED_INDEX(mapping_setup->submap_floor[j],   8, vc->floor_count)
             GET_VALIDATED_INDEX(mapping_setup->submap_residue[j], 8, vc->residue_count)
07c55d8e
 
df96f22d
             av_dlog(NULL, "   %u mapping %u submap : floor %d, residue %d\n", i, j,
                     mapping_setup->submap_floor[j],
                     mapping_setup->submap_residue[j]);
07c55d8e
         }
     }
     return 0;
 }
 
 // Process modes part
 
cf3ac543
 static void create_map(vorbis_context *vc, unsigned floor_number)
07c55d8e
 {
a7adcf29
     vorbis_floor *floors = vc->floors;
     vorbis_floor0 *vf;
07c55d8e
     int idx;
cf3ac543
     int blockflag, n;
0a6b1a9f
     int32_t *map;
07c55d8e
 
a7adcf29
     for (blockflag = 0; blockflag < 2; ++blockflag) {
         n = vc->blocksize[blockflag] / 2;
         floors[floor_number].data.t0.map[blockflag] =
0a6b1a9f
             av_malloc((n + 1) * sizeof(int32_t)); // n + sentinel
07c55d8e
 
a7adcf29
         map =  floors[floor_number].data.t0.map[blockflag];
         vf  = &floors[floor_number].data.t0;
07c55d8e
 
a7adcf29
         for (idx = 0; idx < n; ++idx) {
             map[idx] = floor(BARK((vf->rate * idx) / (2.0f * n)) *
                              ((vf->bark_map_size) /
                               BARK(vf->rate / 2.0f)));
             if (vf->bark_map_size-1 < map[idx])
                 map[idx] = vf->bark_map_size - 1;
         }
         map[n] = -1;
         vf->map_size[blockflag] = n;
07c55d8e
     }
 
a7adcf29
     for (idx = 0; idx <= n; ++idx) {
df96f22d
         av_dlog(NULL, "floor0 map: map at pos %d is %d\n", idx, map[idx]);
07c55d8e
     }
 }
 
5e56b30e
 static int vorbis_parse_setup_hdr_modes(vorbis_context *vc)
 {
a7adcf29
     GetBitContext *gb = &vc->gb;
cf3ac543
     unsigned i;
07c55d8e
 
a7adcf29
     vc->mode_count = get_bits(gb, 6) + 1;
d1be646e
     vc->modes      = av_mallocz(vc->mode_count * sizeof(*vc->modes));
07c55d8e
 
df96f22d
     av_dlog(NULL, " There are %d modes.\n", vc->mode_count);
07c55d8e
 
a7adcf29
     for (i = 0; i < vc->mode_count; ++i) {
         vorbis_mode *mode_setup = &vc->modes[i];
07c55d8e
 
a7adcf29
         mode_setup->blockflag     = get_bits1(gb);
         mode_setup->windowtype    = get_bits(gb, 16); //FIXME check
         mode_setup->transformtype = get_bits(gb, 16); //FIXME check
7a41027c
         GET_VALIDATED_INDEX(mode_setup->mapping, 8, vc->mapping_count);
07c55d8e
 
df96f22d
         av_dlog(NULL, " %u mode: blockflag %d, windowtype %d, transformtype %d, mapping %d\n",
                 i, mode_setup->blockflag, mode_setup->windowtype,
                 mode_setup->transformtype, mode_setup->mapping);
07c55d8e
     }
     return 0;
 }
 
 // Process the whole setup header using the functions above
 
5e56b30e
 static int vorbis_parse_setup_hdr(vorbis_context *vc)
 {
a7adcf29
     GetBitContext *gb = &vc->gb;
07c55d8e
 
a7adcf29
     if ((get_bits(gb, 8) != 'v') || (get_bits(gb, 8) != 'o') ||
         (get_bits(gb, 8) != 'r') || (get_bits(gb, 8) != 'b') ||
         (get_bits(gb, 8) != 'i') || (get_bits(gb, 8) != 's')) {
07c55d8e
         av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (no vorbis signature). \n");
0a01efd0
         return -1;
07c55d8e
     }
 
     if (vorbis_parse_setup_hdr_codebooks(vc)) {
         av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (codebooks). \n");
0a01efd0
         return -2;
07c55d8e
     }
     if (vorbis_parse_setup_hdr_tdtransforms(vc)) {
         av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (time domain transforms). \n");
0a01efd0
         return -3;
07c55d8e
     }
     if (vorbis_parse_setup_hdr_floors(vc)) {
         av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (floors). \n");
0a01efd0
         return -4;
07c55d8e
     }
     if (vorbis_parse_setup_hdr_residues(vc)) {
         av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (residues). \n");
0a01efd0
         return -5;
07c55d8e
     }
     if (vorbis_parse_setup_hdr_mappings(vc)) {
         av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (mappings). \n");
0a01efd0
         return -6;
07c55d8e
     }
     if (vorbis_parse_setup_hdr_modes(vc)) {
         av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (modes). \n");
0a01efd0
         return -7;
07c55d8e
     }
     if (!get_bits1(gb)) {
         av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (framing flag). \n");
0a01efd0
         return -8; // framing flag bit unset error
07c55d8e
     }
 
     return 0;
 }
 
 // Process the identification header
 
5e56b30e
 static int vorbis_parse_id_hdr(vorbis_context *vc)
 {
a7adcf29
     GetBitContext *gb = &vc->gb;
cf3ac543
     unsigned bl0, bl1;
07c55d8e
 
a7adcf29
     if ((get_bits(gb, 8) != 'v') || (get_bits(gb, 8) != 'o') ||
         (get_bits(gb, 8) != 'r') || (get_bits(gb, 8) != 'b') ||
         (get_bits(gb, 8) != 'i') || (get_bits(gb, 8) != 's')) {
07c55d8e
         av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis id header packet corrupt (no vorbis signature). \n");
0a01efd0
         return -1;
07c55d8e
     }
 
a7adcf29
     vc->version        = get_bits_long(gb, 32);    //FIXME check 0
     vc->audio_channels = get_bits(gb, 8);
     if (vc->audio_channels <= 0) {
9062cd35
         av_log(vc->avccontext, AV_LOG_ERROR, "Invalid number of channels\n");
         return -1;
     }
a7adcf29
     vc->audio_samplerate = get_bits_long(gb, 32);
     if (vc->audio_samplerate <= 0) {
9062cd35
         av_log(vc->avccontext, AV_LOG_ERROR, "Invalid samplerate\n");
         return -1;
     }
a7adcf29
     vc->bitrate_maximum = get_bits_long(gb, 32);
     vc->bitrate_nominal = get_bits_long(gb, 32);
     vc->bitrate_minimum = get_bits_long(gb, 32);
     bl0 = get_bits(gb, 4);
     bl1 = get_bits(gb, 4);
     vc->blocksize[0] = (1 << bl0);
     vc->blocksize[1] = (1 << bl1);
     if (bl0 > 13 || bl0 < 6 || bl1 > 13 || bl1 < 6 || bl1 < bl0) {
07c55d8e
         av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis id header packet corrupt (illegal blocksize). \n");
0a01efd0
         return -3;
07c55d8e
     }
     // output format int16
a7adcf29
     if (vc->blocksize[1] / 2 * vc->audio_channels * 2 > AVCODEC_MAX_AUDIO_FRAME_SIZE) {
07c55d8e
         av_log(vc->avccontext, AV_LOG_ERROR, "Vorbis channel count makes "
                "output packets too large.\n");
0a01efd0
         return -4;
07c55d8e
     }
a7adcf29
     vc->win[0] = ff_vorbis_vwin[bl0 - 6];
     vc->win[1] = ff_vorbis_vwin[bl1 - 6];
07c55d8e
 
     if ((get_bits1(gb)) == 0) {
         av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis id header packet corrupt (framing flag not set). \n");
0a01efd0
         return -2;
07c55d8e
     }
 
d1be646e
     vc->channel_residues =  av_malloc((vc->blocksize[1]  / 2) * vc->audio_channels * sizeof(*vc->channel_residues));
     vc->channel_floors   =  av_malloc((vc->blocksize[1]  / 2) * vc->audio_channels * sizeof(*vc->channel_floors));
     vc->saved            =  av_mallocz((vc->blocksize[1] / 4) * vc->audio_channels * sizeof(*vc->saved));
a7adcf29
     vc->previous_window  = 0;
07c55d8e
 
733dbe7d
     ff_mdct_init(&vc->mdct[0], bl0, 1, -vc->scale_bias);
     ff_mdct_init(&vc->mdct[1], bl1, 1, -vc->scale_bias);
07c55d8e
 
df96f22d
     av_dlog(NULL, " 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 ",
07c55d8e
             vc->version, vc->audio_channels, vc->audio_samplerate, vc->bitrate_maximum, vc->bitrate_nominal, vc->bitrate_minimum, vc->blocksize[0], vc->blocksize[1]);
 
 /*
a7adcf29
     BLK = vc->blocksize[0];
     for (i = 0; i < BLK / 2; ++i) {
         vc->win[0][i] = sin(0.5*3.14159265358*(sin(((float)i + 0.5) / (float)BLK*3.14159265358))*(sin(((float)i + 0.5) / (float)BLK*3.14159265358)));
07c55d8e
     }
 */
 
     return 0;
 }
 
 // Process the extradata using the functions above (identification header, setup header)
 
5e56b30e
 static av_cold int vorbis_decode_init(AVCodecContext *avccontext)
 {
07c55d8e
     vorbis_context *vc = avccontext->priv_data ;
a7adcf29
     uint8_t *headers   = avccontext->extradata;
     int headers_len    = avccontext->extradata_size;
07c55d8e
     uint8_t *header_start[3];
     int header_len[3];
     GetBitContext *gb = &(vc->gb);
     int hdr_type;
 
     vc->avccontext = avccontext;
     dsputil_init(&vc->dsp, avccontext);
fe2ff6d2
     ff_fmt_convert_init(&vc->fmt_conv, avccontext);
07c55d8e
 
9aa8193a
     if (avccontext->request_sample_fmt == AV_SAMPLE_FMT_FLT) {
         avccontext->sample_fmt = AV_SAMPLE_FMT_FLT;
         vc->scale_bias = 1.0f;
     } else {
         avccontext->sample_fmt = AV_SAMPLE_FMT_S16;
         vc->scale_bias = 32768.0f;
     }
07c55d8e
 
     if (!headers_len) {
b2cc8111
         av_log(avccontext, AV_LOG_ERROR, "Extradata missing.\n");
07c55d8e
         return -1;
     }
 
     if (ff_split_xiph_headers(headers, headers_len, 30, header_start, header_len) < 0) {
         av_log(avccontext, AV_LOG_ERROR, "Extradata corrupt.\n");
         return -1;
     }
 
     init_get_bits(gb, header_start[0], header_len[0]*8);
a7adcf29
     hdr_type = get_bits(gb, 8);
     if (hdr_type != 1) {
07c55d8e
         av_log(avccontext, AV_LOG_ERROR, "First header is not the id header.\n");
         return -1;
     }
     if (vorbis_parse_id_hdr(vc)) {
         av_log(avccontext, AV_LOG_ERROR, "Id header corrupt.\n");
         vorbis_free(vc);
         return -1;
     }
 
     init_get_bits(gb, header_start[2], header_len[2]*8);
a7adcf29
     hdr_type = get_bits(gb, 8);
     if (hdr_type != 5) {
07c55d8e
         av_log(avccontext, AV_LOG_ERROR, "Third header is not the setup header.\n");
c8562a6f
         vorbis_free(vc);
07c55d8e
         return -1;
     }
     if (vorbis_parse_setup_hdr(vc)) {
         av_log(avccontext, AV_LOG_ERROR, "Setup header corrupt.\n");
         vorbis_free(vc);
         return -1;
     }
 
4a27f326
     if (vc->audio_channels > 8)
53a71e1b
         avccontext->channel_layout = 0;
     else
         avccontext->channel_layout = ff_vorbis_channel_layouts[vc->audio_channels - 1];
 
a7adcf29
     avccontext->channels    = vc->audio_channels;
07c55d8e
     avccontext->sample_rate = vc->audio_samplerate;
a7adcf29
     avccontext->frame_size  = FFMIN(vc->blocksize[0], vc->blocksize[1]) >> 2;
07c55d8e
 
     return 0 ;
 }
 
 // Decode audiopackets -------------------------------------------------
 
 // Read and decode floor
 
3dde6675
 static int vorbis_floor0_decode(vorbis_context *vc,
                                 vorbis_floor_data *vfu, float *vec)
5e56b30e
 {
a7adcf29
     vorbis_floor0 *vf = &vfu->t0;
     float *lsp = vf->lsp;
cf3ac543
     unsigned amplitude, book_idx;
     unsigned blockflag = vc->modes[vc->mode_number].blockflag;
07c55d8e
 
a7adcf29
     amplitude = get_bits(&vc->gb, vf->amplitude_bits);
     if (amplitude > 0) {
07c55d8e
         float last = 0;
cf3ac543
         unsigned idx, lsp_len = 0;
07c55d8e
         vorbis_codebook codebook;
 
a7adcf29
         book_idx = get_bits(&vc->gb, ilog(vf->num_books));
         if (book_idx >= vf->num_books) {
             av_log(vc->avccontext, AV_LOG_ERROR,
                     "floor0 dec: booknumber too high!\n");
             book_idx =  0;
07c55d8e
         }
df96f22d
         av_dlog(NULL, "floor0 dec: booknumber: %u\n", book_idx);
a7adcf29
         codebook = vc->codebooks[vf->book_list[book_idx]];
3dde6675
         /* Invalid codebook! */
         if (!codebook.codevectors)
             return -1;
07c55d8e
 
         while (lsp_len<vf->order) {
             int vec_off;
 
df96f22d
             av_dlog(NULL, "floor0 dec: book dimension: %d\n", codebook.dimensions);
             av_dlog(NULL, "floor0 dec: maximum depth: %d\n", codebook.maxdepth);
07c55d8e
             /* read temp vector */
a7adcf29
             vec_off = get_vlc2(&vc->gb, codebook.vlc.table,
                                codebook.nb_bits, codebook.maxdepth)
                       * codebook.dimensions;
df96f22d
             av_dlog(NULL, "floor0 dec: vector offset: %d\n", vec_off);
07c55d8e
             /* copy each vector component and add last to it */
a7adcf29
             for (idx = 0; idx < codebook.dimensions; ++idx)
                 lsp[lsp_len+idx] = codebook.codevectors[vec_off+idx] + last;
             last = lsp[lsp_len+idx-1]; /* set last to last vector component */
07c55d8e
 
             lsp_len += codebook.dimensions;
         }
         /* DEBUG: output lsp coeffs */
         {
             int idx;
a7adcf29
             for (idx = 0; idx < lsp_len; ++idx)
df96f22d
                 av_dlog(NULL, "floor0 dec: coeff at %d is %f\n", idx, lsp[idx]);
07c55d8e
         }
 
         /* synthesize floor output vector */
         {
             int i;
a7adcf29
             int order = vf->order;
             float wstep = M_PI / vf->bark_map_size;
07c55d8e
 
a7adcf29
             for (i = 0; i < order; i++)
                 lsp[i] = 2.0f * cos(lsp[i]);
07c55d8e
 
2d9570a3
             av_dlog(NULL, "floor0 synth: map_size = %"PRIu32"; m = %d; wstep = %f\n",
                     vf->map_size[blockflag], order, wstep);
 
a7adcf29
             i = 0;
             while (i < vf->map_size[blockflag]) {
                 int j, iter_cond = vf->map[blockflag][i];
                 float p = 0.5f;
                 float q = 0.5f;
                 float two_cos_w = 2.0f * cos(wstep * iter_cond); // needed all times
07c55d8e
 
                 /* similar part for the q and p products */
a7adcf29
                 for (j = 0; j + 1 < order; j += 2) {
                     q *= lsp[j]     - two_cos_w;
                     p *= lsp[j + 1] - two_cos_w;
07c55d8e
                 }
a7adcf29
                 if (j == order) { // even order
                     p *= p * (2.0f - two_cos_w);
                     q *= q * (2.0f + two_cos_w);
5e56b30e
                 } else { // odd order
07c55d8e
                     q *= two_cos_w-lsp[j]; // one more time for q
 
                     /* final step and square */
a7adcf29
                     p *= p * (4.f - two_cos_w * two_cos_w);
07c55d8e
                     q *= q;
                 }
 
                 /* calculate linear floor value */
b2a51e3d
                 q = exp((((amplitude*vf->amplitude_offset) /
                           (((1 << vf->amplitude_bits) - 1) * sqrt(p + q)))
                          - vf->amplitude_offset) * .11512925f);
07c55d8e
 
                 /* fill vector */
5e56b30e
                 do {
a7adcf29
                     vec[i] = q; ++i;
                 } while (vf->map[blockflag][i] == iter_cond);
07c55d8e
             }
         }
5e56b30e
     } else {
07c55d8e
         /* this channel is unused */
         return 1;
     }
 
df96f22d
     av_dlog(NULL, " Floor0 decoded\n");
07c55d8e
 
     return 0;
 }
 
3dde6675
 static int vorbis_floor1_decode(vorbis_context *vc,
                                 vorbis_floor_data *vfu, float *vec)
5e56b30e
 {
a7adcf29
     vorbis_floor1 *vf = &vfu->t1;
     GetBitContext *gb = &vc->gb;
0a6b1a9f
     uint16_t range_v[4] = { 256, 128, 86, 64 };
     unsigned range = range_v[vf->multiplier - 1];
     uint16_t floor1_Y[258];
     uint16_t floor1_Y_final[258];
3c35da2f
     int floor1_flag[258];
be315a32
     unsigned partition_class, cdim, cbits, csub, cval, offset, i, j;
cf3ac543
     int book, adx, ady, dy, off, predicted, err;
07c55d8e
 
 
0b8e7ab0
     if (!get_bits1(gb)) // silence
         return 1;
07c55d8e
 
 // Read values (or differences) for the floor's points
 
a7adcf29
     floor1_Y[0] = get_bits(gb, ilog(range - 1));
     floor1_Y[1] = get_bits(gb, ilog(range - 1));
07c55d8e
 
df96f22d
     av_dlog(NULL, "floor 0 Y %d floor 1 Y %d \n", floor1_Y[0], floor1_Y[1]);
07c55d8e
 
a7adcf29
     offset = 2;
     for (i = 0; i < vf->partitions; ++i) {
b35a8469
         partition_class = vf->partition_class[i];
         cdim   = vf->class_dimensions[partition_class];
         cbits  = vf->class_subclasses[partition_class];
a7adcf29
         csub = (1 << cbits) - 1;
         cval = 0;
07c55d8e
 
df96f22d
         av_dlog(NULL, "Cbits %u\n", cbits);
07c55d8e
 
5e56b30e
         if (cbits) // this reads all subclasses for this partition's class
b35a8469
             cval = get_vlc2(gb, vc->codebooks[vf->class_masterbook[partition_class]].vlc.table,
                             vc->codebooks[vf->class_masterbook[partition_class]].nb_bits, 3);
07c55d8e
 
a7adcf29
         for (j = 0; j < cdim; ++j) {
b35a8469
             book = vf->subclass_books[partition_class][cval & csub];
07c55d8e
 
df96f22d
             av_dlog(NULL, "book %d Cbits %u cval %u  bits:%d\n",
                     book, cbits, cval, get_bits_count(gb));
07c55d8e
 
a7adcf29
             cval = cval >> cbits;
             if (book > -1) {
                 floor1_Y[offset+j] = get_vlc2(gb, vc->codebooks[book].vlc.table,
07c55d8e
                 vc->codebooks[book].nb_bits, 3);
             } else {
a7adcf29
                 floor1_Y[offset+j] = 0;
07c55d8e
             }
 
df96f22d
             av_dlog(NULL, " floor(%d) = %d \n",
                     vf->list[offset+j].x, floor1_Y[offset+j]);
07c55d8e
         }
         offset+=cdim;
     }
 
 // Amplitude calculation from the differences
 
a7adcf29
     floor1_flag[0] = 1;
     floor1_flag[1] = 1;
     floor1_Y_final[0] = floor1_Y[0];
     floor1_Y_final[1] = floor1_Y[1];
07c55d8e
 
a7adcf29
     for (i = 2; i < vf->x_list_dim; ++i) {
cf3ac543
         unsigned val, highroom, lowroom, room, high_neigh_offs, low_neigh_offs;
07c55d8e
 
a7adcf29
         low_neigh_offs  = vf->list[i].low;
         high_neigh_offs = vf->list[i].high;
         dy  = floor1_Y_final[high_neigh_offs] - floor1_Y_final[low_neigh_offs];  // render_point begin
         adx = vf->list[high_neigh_offs].x - vf->list[low_neigh_offs].x;
         ady = FFABS(dy);
         err = ady * (vf->list[i].x - vf->list[low_neigh_offs].x);
8455e8c7
         off = err / adx;
a7adcf29
         if (dy < 0) {
             predicted = floor1_Y_final[low_neigh_offs] - off;
07c55d8e
         } else {
a7adcf29
             predicted = floor1_Y_final[low_neigh_offs] + off;
07c55d8e
         } // render_point end
 
a7adcf29
         val = floor1_Y[i];
         highroom = range-predicted;
         lowroom  = predicted;
07c55d8e
         if (highroom < lowroom) {
a7adcf29
             room = highroom * 2;
07c55d8e
         } else {
a7adcf29
             room = lowroom * 2;   // SPEC mispelling
07c55d8e
         }
         if (val) {
a7adcf29
             floor1_flag[low_neigh_offs]  = 1;
             floor1_flag[high_neigh_offs] = 1;
             floor1_flag[i]               = 1;
             if (val >= room) {
07c55d8e
                 if (highroom > lowroom) {
a7adcf29
                     floor1_Y_final[i] = val - lowroom + predicted;
07c55d8e
                 } else {
a7adcf29
                     floor1_Y_final[i] = predicted - val + highroom - 1;
07c55d8e
                 }
             } else {
                 if (val & 1) {
a7adcf29
                     floor1_Y_final[i] = predicted - (val + 1) / 2;
07c55d8e
                 } else {
a7adcf29
                     floor1_Y_final[i] = predicted + val / 2;
07c55d8e
                 }
             }
         } else {
a7adcf29
             floor1_flag[i]    = 0;
             floor1_Y_final[i] = predicted;
07c55d8e
         }
 
df96f22d
         av_dlog(NULL, " Decoded floor(%d) = %u / val %u\n",
                 vf->list[i].x, floor1_Y_final[i], val);
07c55d8e
     }
 
 // Curve synth - connect the calculated dots and convert from dB scale FIXME optimize ?
 
     ff_vorbis_floor1_render_list(vf->list, vf->x_list_dim, floor1_Y_final, floor1_flag, vf->multiplier, vec, vf->list[1].x);
 
df96f22d
     av_dlog(NULL, " Floor decoded\n");
07c55d8e
 
     return 0;
 }
 
 // Read and decode residue
 
5e56b30e
 static av_always_inline int vorbis_residue_decode_internal(vorbis_context *vc,
                                                            vorbis_residue *vr,
cf3ac543
                                                            unsigned ch,
0a6b1a9f
                                                            uint8_t *do_not_decode,
5e56b30e
                                                            float *vec,
cf3ac543
                                                            unsigned vlen,
a7adcf29
                                                            int vr_type)
5e56b30e
 {
a7adcf29
     GetBitContext *gb = &vc->gb;
cf3ac543
     unsigned c_p_c        = vc->codebooks[vr->classbook].dimensions;
     unsigned ptns_to_read = vr->ptns_to_read;
366d9190
     uint8_t *classifs = vr->classifs;
cf3ac543
     unsigned pass, ch_used, i, j, k, l;
07c55d8e
 
a7adcf29
     if (vr_type == 2) {
         for (j = 1; j < ch; ++j)
             do_not_decode[0] &= do_not_decode[j];  // FIXME - clobbering input
5e56b30e
         if (do_not_decode[0])
             return 0;
a7adcf29
         ch_used = 1;
07c55d8e
     } else {
a7adcf29
         ch_used = ch;
07c55d8e
     }
 
df96f22d
     av_dlog(NULL, " residue type 0/1/2 decode begin, ch: %d  cpc %d  \n", ch, c_p_c);
07c55d8e
 
a7adcf29
     for (pass = 0; pass <= vr->maxpass; ++pass) { // FIXME OPTIMIZE?
cf3ac543
         uint16_t voffset, partition_count, j_times_ptns_to_read;
07c55d8e
 
a7adcf29
         voffset = vr->begin;
         for (partition_count = 0; partition_count < ptns_to_read;) {  // SPEC        error
07c55d8e
             if (!pass) {
cf3ac543
                 unsigned inverse_class = ff_inverse[vr->classifications];
a7adcf29
                 for (j_times_ptns_to_read = 0, j = 0; j < ch_used; ++j) {
07c55d8e
                     if (!do_not_decode[j]) {
cf3ac543
                         unsigned temp = get_vlc2(gb, vc->codebooks[vr->classbook].vlc.table,
                                                  vc->codebooks[vr->classbook].nb_bits, 3);
07c55d8e
 
df96f22d
                         av_dlog(NULL, "Classword: %u\n", temp);
07c55d8e
 
a7adcf29
                         assert(vr->classifications > 1 && temp <= 65536); //needed for inverse[]
                         for (i = 0; i < c_p_c; ++i) {
cf3ac543
                             unsigned temp2;
07c55d8e
 
cf3ac543
                             temp2 = (((uint64_t)temp) * inverse_class) >> 32;
a7adcf29
                             if (partition_count + c_p_c - 1 - i < ptns_to_read)
                                 classifs[j_times_ptns_to_read + partition_count + c_p_c - 1 - i] = temp - temp2 * vr->classifications;
                             temp = temp2;
07c55d8e
                         }
                     }
a7adcf29
                     j_times_ptns_to_read += ptns_to_read;
07c55d8e
                 }
             }
a7adcf29
             for (i = 0; (i < c_p_c) && (partition_count < ptns_to_read); ++i) {
                 for (j_times_ptns_to_read = 0, j = 0; j < ch_used; ++j) {
cf3ac543
                     unsigned voffs;
07c55d8e
 
                     if (!do_not_decode[j]) {
cf3ac543
                         unsigned vqclass = classifs[j_times_ptns_to_read + partition_count];
                         int vqbook  = vr->books[vqclass][pass];
07c55d8e
 
a7adcf29
                         if (vqbook >= 0 && vc->codebooks[vqbook].codevectors) {
cf3ac543
                             unsigned coffs;
                             unsigned dim  = vc->codebooks[vqbook].dimensions;
                             unsigned step = dim == 1 ? vr->partition_size
                                                      : FASTDIV(vr->partition_size, dim);
a7adcf29
                             vorbis_codebook codebook = vc->codebooks[vqbook];
 
                             if (vr_type == 0) {
 
                                 voffs = voffset+j*vlen;
                                 for (k = 0; k < step; ++k) {
                                     coffs = get_vlc2(gb, codebook.vlc.table, codebook.nb_bits, 3) * dim;
                                     for (l = 0; l < dim; ++l)
                                         vec[voffs + k + l * step] += codebook.codevectors[coffs + l];  // FPMATH
07c55d8e
                                 }
a7adcf29
                             } else if (vr_type == 1) {
                                 voffs = voffset + j * vlen;
                                 for (k = 0; k < step; ++k) {
                                     coffs = get_vlc2(gb, codebook.vlc.table, codebook.nb_bits, 3) * dim;
                                     for (l = 0; l < dim; ++l, ++voffs) {
07c55d8e
                                         vec[voffs]+=codebook.codevectors[coffs+l];  // FPMATH
 
df96f22d
                                         av_dlog(NULL, " pass %d offs: %d curr: %f change: %f cv offs.: %d  \n",
                                                 pass, voffs, vec[voffs], codebook.codevectors[coffs+l], coffs);
07c55d8e
                                     }
                                 }
a7adcf29
                             } else if (vr_type == 2 && ch == 2 && (voffset & 1) == 0 && (dim & 1) == 0) { // most frequent case optimized
                                 voffs = voffset >> 1;
 
                                 if (dim == 2) {
                                     for (k = 0; k < step; ++k) {
                                         coffs = get_vlc2(gb, codebook.vlc.table, codebook.nb_bits, 3) * 2;
                                         vec[voffs + k       ] += codebook.codevectors[coffs    ];  // FPMATH
                                         vec[voffs + k + vlen] += codebook.codevectors[coffs + 1];  // FPMATH
07c55d8e
                                     }
a7adcf29
                                 } else if (dim == 4) {
                                     for (k = 0; k < step; ++k, voffs += 2) {
                                         coffs = get_vlc2(gb, codebook.vlc.table, codebook.nb_bits, 3) * 4;
                                         vec[voffs           ] += codebook.codevectors[coffs    ];  // FPMATH
                                         vec[voffs + 1       ] += codebook.codevectors[coffs + 2];  // FPMATH
                                         vec[voffs + vlen    ] += codebook.codevectors[coffs + 1];  // FPMATH
                                         vec[voffs + vlen + 1] += codebook.codevectors[coffs + 3];  // FPMATH
1a325367
                                     }
07c55d8e
                                 } else
a7adcf29
                                 for (k = 0; k < step; ++k) {
                                     coffs = get_vlc2(gb, codebook.vlc.table, codebook.nb_bits, 3) * dim;
                                     for (l = 0; l < dim; l += 2, voffs++) {
                                         vec[voffs       ] += codebook.codevectors[coffs + l    ];  // FPMATH
                                         vec[voffs + vlen] += codebook.codevectors[coffs + l + 1];  // FPMATH
07c55d8e
 
df96f22d
                                         av_dlog(NULL, " 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);
07c55d8e
                                     }
                                 }
 
a7adcf29
                             } else if (vr_type == 2) {
                                 voffs = voffset;
07c55d8e
 
a7adcf29
                                 for (k = 0; k < step; ++k) {
                                     coffs = get_vlc2(gb, codebook.vlc.table, codebook.nb_bits, 3) * dim;
                                     for (l = 0; l < dim; ++l, ++voffs) {
                                         vec[voffs / ch + (voffs % ch) * vlen] += codebook.codevectors[coffs + l];  // FPMATH FIXME use if and counter instead of / and %
07c55d8e
 
df96f22d
                                         av_dlog(NULL, " 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);
07c55d8e
                                     }
                                 }
                             }
                         }
                     }
a7adcf29
                     j_times_ptns_to_read += ptns_to_read;
07c55d8e
                 }
                 ++partition_count;
a7adcf29
                 voffset += vr->partition_size;
07c55d8e
             }
         }
     }
     return 0;
 }
 
5e56b30e
 static inline int vorbis_residue_decode(vorbis_context *vc, vorbis_residue *vr,
cf3ac543
                                         unsigned ch,
0a6b1a9f
                                         uint8_t *do_not_decode,
cf3ac543
                                         float *vec, unsigned vlen)
c541e668
 {
a7adcf29
     if (vr->type == 2)
c541e668
         return vorbis_residue_decode_internal(vc, vr, ch, do_not_decode, vec, vlen, 2);
a7adcf29
     else if (vr->type == 1)
c541e668
         return vorbis_residue_decode_internal(vc, vr, ch, do_not_decode, vec, vlen, 1);
a7adcf29
     else if (vr->type == 0)
c541e668
         return vorbis_residue_decode_internal(vc, vr, ch, do_not_decode, vec, vlen, 0);
     else {
         av_log(vc->avccontext, AV_LOG_ERROR, " Invalid residue type while residue decode?! \n");
0a01efd0
         return -1;
c541e668
     }
 }
 
07c55d8e
 void vorbis_inverse_coupling(float *mag, float *ang, int blocksize)
 {
     int i;
a7adcf29
     for (i = 0;  i < blocksize;  i++) {
         if (mag[i] > 0.0) {
             if (ang[i] > 0.0) {
                 ang[i] = mag[i] - ang[i];
07c55d8e
             } else {
a7adcf29
                 float temp = ang[i];
                 ang[i]     = mag[i];
                 mag[i]    += temp;
07c55d8e
             }
         } else {
a7adcf29
             if (ang[i] > 0.0) {
                 ang[i] += mag[i];
07c55d8e
             } else {
a7adcf29
                 float temp = ang[i];
                 ang[i]     = mag[i];
                 mag[i]    -= temp;
07c55d8e
             }
         }
     }
 }
 
 // Decode the audio packet using the functions above
 
5e56b30e
 static int vorbis_parse_audio_packet(vorbis_context *vc)
 {
a7adcf29
     GetBitContext *gb = &vc->gb;
26f548bb
     FFTContext *mdct;
cf3ac543
     unsigned previous_window = vc->previous_window;
     unsigned mode_number, blockflag, blocksize;
     int i, j;
0a6b1a9f
     uint8_t no_residue[255];
     uint8_t do_not_decode[255];
07c55d8e
     vorbis_mapping *mapping;
a7adcf29
     float *ch_res_ptr   = vc->channel_residues;
     float *ch_floor_ptr = vc->channel_floors;
0a6b1a9f
     uint8_t res_chan[255];
cf3ac543
     unsigned res_num = 0;
     int retlen  = 0;
07c55d8e
 
     if (get_bits1(gb)) {
         av_log(vc->avccontext, AV_LOG_ERROR, "Not a Vorbis I audio packet.\n");
         return -1; // packet type not audio
     }
 
a7adcf29
     if (vc->mode_count == 1) {
         mode_number = 0;
07c55d8e
     } else {
7a41027c
         GET_VALIDATED_INDEX(mode_number, ilog(vc->mode_count-1), vc->mode_count)
e5b0cfb5
     }
a7adcf29
     vc->mode_number = mode_number;
     mapping = &vc->mappings[vc->modes[mode_number].mapping];
07c55d8e
 
df96f22d
     av_dlog(NULL, " Mode number: %u , mapping: %d , blocktype %d\n", mode_number,
             vc->modes[mode_number].mapping, vc->modes[mode_number].blockflag);
07c55d8e
 
a7adcf29
     blockflag = vc->modes[mode_number].blockflag;
     blocksize = vc->blocksize[blockflag];
5e56b30e
     if (blockflag)
f27e1d64
         skip_bits(gb, 2); // previous_window, next_window
07c55d8e
 
a7adcf29
     memset(ch_res_ptr,   0, sizeof(float) * vc->audio_channels * blocksize / 2); //FIXME can this be removed ?
     memset(ch_floor_ptr, 0, sizeof(float) * vc->audio_channels * blocksize / 2); //FIXME can this be removed ?
07c55d8e
 
 // Decode floor
 
a7adcf29
     for (i = 0; i < vc->audio_channels; ++i) {
07c55d8e
         vorbis_floor *floor;
3dde6675
         int ret;
a7adcf29
         if (mapping->submaps > 1) {
             floor = &vc->floors[mapping->submap_floor[mapping->mux[i]]];
07c55d8e
         } else {
a7adcf29
             floor = &vc->floors[mapping->submap_floor[0]];
07c55d8e
         }
 
3dde6675
         ret = floor->decode(vc, &floor->data, ch_floor_ptr);
 
         if (ret < 0) {
             av_log(vc->avccontext, AV_LOG_ERROR, "Invalid codebook in vorbis_floor_decode.\n");
             return -1;
         }
         no_residue[i] = ret;
a7adcf29
         ch_floor_ptr += blocksize / 2;
07c55d8e
     }
 
 // Nonzero vector propagate
 
a7adcf29
     for (i = mapping->coupling_steps - 1; i >= 0; --i) {
07c55d8e
         if (!(no_residue[mapping->magnitude[i]] & no_residue[mapping->angle[i]])) {
a7adcf29
             no_residue[mapping->magnitude[i]] = 0;
             no_residue[mapping->angle[i]]     = 0;
07c55d8e
         }
     }
 
 // Decode residue
 
a7adcf29
     for (i = 0; i < mapping->submaps; ++i) {
07c55d8e
         vorbis_residue *residue;
cf3ac543
         unsigned ch = 0;
07c55d8e
 
a7adcf29
         for (j = 0; j < vc->audio_channels; ++j) {
             if ((mapping->submaps == 1) || (i == mapping->mux[j])) {
                 res_chan[j] = res_num;
07c55d8e
                 if (no_residue[j]) {
a7adcf29
                     do_not_decode[ch] = 1;
07c55d8e
                 } else {
a7adcf29
                     do_not_decode[ch] = 0;
07c55d8e
                 }
                 ++ch;
                 ++res_num;
             }
         }
a7adcf29
         residue = &vc->residues[mapping->submap_residue[i]];
07c55d8e
         vorbis_residue_decode(vc, residue, ch, do_not_decode, ch_res_ptr, blocksize/2);
 
a7adcf29
         ch_res_ptr += ch * blocksize / 2;
07c55d8e
     }
 
 // Inverse coupling
 
a7adcf29
     for (i = mapping->coupling_steps - 1; i >= 0; --i) { //warning: i has to be signed
07c55d8e
         float *mag, *ang;
 
a7adcf29
         mag = vc->channel_residues+res_chan[mapping->magnitude[i]] * blocksize / 2;
         ang = vc->channel_residues+res_chan[mapping->angle[i]]     * blocksize / 2;
         vc->dsp.vorbis_inverse_coupling(mag, ang, blocksize / 2);
07c55d8e
     }
 
9d2b5cf2
 // Dotproduct, MDCT
07c55d8e
 
26f548bb
     mdct = &vc->mdct[blockflag];
 
a7adcf29
     for (j = vc->audio_channels-1;j >= 0; j--) {
         ch_floor_ptr = vc->channel_floors   + j           * blocksize / 2;
         ch_res_ptr   = vc->channel_residues + res_chan[j] * blocksize / 2;
015f9f1a
         vc->dsp.vector_fmul(ch_floor_ptr, ch_floor_ptr, ch_res_ptr, blocksize / 2);
26f548bb
         mdct->imdct_half(mdct, ch_res_ptr, ch_floor_ptr);
07c55d8e
     }
 
9d2b5cf2
 // Overlap/add, save data for next overlapping  FPMATH
07c55d8e
 
a7adcf29
     retlen = (blocksize + vc->blocksize[previous_window]) / 4;
     for (j = 0; j < vc->audio_channels; j++) {
cf3ac543
         unsigned bs0 = vc->blocksize[0];
         unsigned bs1 = vc->blocksize[1];
a7adcf29
         float *residue    = vc->channel_residues + res_chan[j] * blocksize / 2;
         float *saved      = vc->saved + j * bs1 / 4;
         float *ret        = vc->channel_floors + j * retlen;
         float *buf        = residue;
         const float *win  = vc->win[blockflag & previous_window];
 
         if (blockflag == previous_window) {
a8ae4e0e
             vc->dsp.vector_fmul_window(ret, saved, buf, win, blocksize / 4);
a7adcf29
         } else if (blockflag > previous_window) {
a8ae4e0e
             vc->dsp.vector_fmul_window(ret, saved, buf, win, bs0 / 4);
733dbe7d
             memcpy(ret+bs0/2, buf+bs0/4, ((bs1-bs0)/4) * sizeof(float));
07c55d8e
         } else {
733dbe7d
             memcpy(ret, saved, ((bs1 - bs0) / 4) * sizeof(float));
a8ae4e0e
             vc->dsp.vector_fmul_window(ret + (bs1 - bs0) / 4, saved + (bs1 - bs0) / 4, buf, win, bs0 / 4);
07c55d8e
         }
a7adcf29
         memcpy(saved, buf + blocksize / 4, blocksize / 4 * sizeof(float));
07c55d8e
     }
 
f27e1d64
     vc->previous_window = blockflag;
     return retlen;
07c55d8e
 }
 
 // Return the decoded audio packet through the standard api
 
 static int vorbis_decode_frame(AVCodecContext *avccontext,
a7adcf29
                                void *data, int *data_size,
                                AVPacket *avpkt)
07c55d8e
 {
7a00bbad
     const uint8_t *buf = avpkt->data;
a7adcf29
     int buf_size       = avpkt->size;
07c55d8e
     vorbis_context *vc = avccontext->priv_data ;
     GetBitContext *gb = &(vc->gb);
3c35da2f
     const float *channel_ptrs[255];
2137d990
     int i, len, out_size;
07c55d8e
 
a7adcf29
     if (!buf_size)
07c55d8e
         return 0;
 
df96f22d
     av_dlog(NULL, "packet length %d \n", buf_size);
07c55d8e
 
     init_get_bits(gb, buf, buf_size*8);
 
a7adcf29
     len = vorbis_parse_audio_packet(vc);
07c55d8e
 
a7adcf29
     if (len <= 0) {
         *data_size = 0;
07c55d8e
         return buf_size;
     }
 
     if (!vc->first_frame) {
a7adcf29
         vc->first_frame = 1;
         *data_size = 0;
07c55d8e
         return buf_size ;
     }
 
df96f22d
     av_dlog(NULL, "parsed %d bytes %d bits, returned %d samples (*ch*bits) \n",
             get_bits_count(gb) / 8, get_bits_count(gb) % 8, len);
07c55d8e
 
2137d990
     out_size = len * vc->audio_channels *
                av_get_bytes_per_sample(avccontext->sample_fmt);
     if (*data_size < out_size) {
         av_log(avccontext, AV_LOG_ERROR, "output buffer is too small\n");
         return AVERROR(EINVAL);
     }
 
4a27f326
     if (vc->audio_channels > 8) {
f640478b
         for (i = 0; i < vc->audio_channels; i++)
             channel_ptrs[i] = vc->channel_floors + i * len;
53a71e1b
     } else {
         for (i = 0; i < vc->audio_channels; i++)
             channel_ptrs[i] = vc->channel_floors +
                               len * ff_vorbis_channel_layout_offsets[vc->audio_channels - 1][i];
     }
 
9aa8193a
     if (avccontext->sample_fmt == AV_SAMPLE_FMT_FLT)
         vc->fmt_conv.float_interleave(data, channel_ptrs, len, vc->audio_channels);
     else
5aff31b1
         vc->fmt_conv.float_to_int16_interleave(data, channel_ptrs, len,
                                                vc->audio_channels);
9aa8193a
 
2137d990
     *data_size = out_size;
07c55d8e
 
     return buf_size ;
 }
 
 // Close decoder
 
5e56b30e
 static av_cold int vorbis_decode_close(AVCodecContext *avccontext)
 {
07c55d8e
     vorbis_context *vc = avccontext->priv_data;
 
     vorbis_free(vc);
 
     return 0 ;
 }
 
e7e2df27
 AVCodec ff_vorbis_decoder = {
07c55d8e
     "vorbis",
72415b2a
     AVMEDIA_TYPE_AUDIO,
07c55d8e
     CODEC_ID_VORBIS,
     sizeof(vorbis_context),
     vorbis_decode_init,
     NULL,
     vorbis_decode_close,
     vorbis_decode_frame,
fe4bf374
     .long_name = NULL_IF_CONFIG_SMALL("Vorbis"),
53a71e1b
     .channel_layouts = ff_vorbis_channel_layouts,
9aa8193a
     .sample_fmts = (const enum AVSampleFormat[]) {
         AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_NONE
     },
07c55d8e
 };