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
  */
 
6168781f
 /**
  * @file
  * Vorbis I decoder
  * @author Denes Balatoni  ( dbalatoni programozo hu )
  */
 
2d9570a3
 #include <inttypes.h>
07c55d8e
 #include <math.h>
 
aaf47bcd
 #define BITSTREAM_READER_LE
d5a7229b
 #include "libavutil/float_dsp.h"
5f298c67
 #include "libavutil/avassert.h"
07c55d8e
 #include "avcodec.h"
9106a698
 #include "get_bits.h"
1429224b
 #include "fft.h"
fe2ff6d2
 #include "fmtconvert.h"
594d4d5d
 #include "internal.h"
07c55d8e
 
 #include "vorbis.h"
fef906c7
 #include "vorbisdsp.h"
07c55d8e
 #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
 
 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 {
e951b6d9
     AVCodecContext *avctx;
07c55d8e
     GetBitContext gb;
fef906c7
     VorbisDSPContext dsp;
d5a7229b
     AVFloatDSPContext fdsp;
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
a9753049
     int8_t       previous_window;
a7adcf29
     float        *channel_residues;
     float        *saved;
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) {\
e951b6d9
         av_log(vc->avctx, AV_LOG_ERROR,\
7a41027c
                idx_err_str,\
                (int)(idx), (int)(limit - 1), #idx, __FILE__, __LINE__);\
f666276f
         return AVERROR_INVALIDDATA;\
7a41027c
     }
 #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->saved);
 
778069c8
     if (vc->residues)
         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]);
 
778069c8
     if (vc->codebooks)
         for (i = 0; i < vc->codebook_count; ++i) {
             av_free(vc->codebooks[i].codevectors);
             ff_free_vlc(&vc->codebooks[i].vlc);
         }
07c55d8e
     av_freep(&vc->codebooks);
 
778069c8
     if (vc->floors)
         for (i = 0; i < vc->floor_count; ++i) {
             if (vc->floors[i].floor_type == 0) {
                 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);
             } else {
                 av_free(vc->floors[i].data.t1.list);
             }
07c55d8e
         }
     av_freep(&vc->floors);
 
778069c8
     if (vc->mappings)
         for (i = 0; i < vc->mapping_count; ++i) {
             av_free(vc->mappings[i].magnitude);
             av_free(vc->mappings[i].angle);
             av_free(vc->mappings[i].mux);
         }
07c55d8e
     av_freep(&vc->mappings);
 }
 
 // Parse setup header -------------------------------------------------
 
 // Process codebooks part
 
5e56b30e
 static int vorbis_parse_setup_hdr_codebooks(vorbis_context *vc)
 {
cf3ac543
     unsigned cb;
02055b6d
     uint8_t  *tmp_vlc_bits  = NULL;
     uint32_t *tmp_vlc_codes = NULL;
a7adcf29
     GetBitContext *gb = &vc->gb;
02055b6d
     uint16_t *codebook_multiplicands = NULL;
f666276f
     int ret = 0;
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));
02055b6d
     if (!vc->codebooks ||
         !tmp_vlc_bits || !tmp_vlc_codes || !codebook_multiplicands) {
         ret = AVERROR(ENOMEM);
         goto error;
     }
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) {
e951b6d9
             av_log(vc->avctx, AV_LOG_ERROR,
cf3ac543
                    " %u. Codebook setup data corrupt.\n", cb);
f666276f
             ret = AVERROR_INVALIDDATA;
07c55d8e
             goto error;
         }
 
         codebook_setup->dimensions=get_bits(gb, 16);
a7adcf29
         if (codebook_setup->dimensions > 16 || codebook_setup->dimensions == 0) {
e951b6d9
             av_log(vc->avctx, AV_LOG_ERROR,
cf3ac543
                    " %u. Codebook's dimension is invalid (%d).\n",
                    cb, codebook_setup->dimensions);
f666276f
             ret = AVERROR_INVALIDDATA;
07c55d8e
             goto error;
         }
a7adcf29
         entries = get_bits(gb, 24);
         if (entries > V_MAX_VLCS) {
e951b6d9
             av_log(vc->avctx, AV_LOG_ERROR,
cf3ac543
                    " %u. Codebook has too many entries (%u).\n",
                    cb, entries);
f666276f
             ret = AVERROR_INVALIDDATA;
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) {
e951b6d9
                 av_log(vc->avctx, AV_LOG_ERROR, " More codelengths than codes in codebook. \n");
f666276f
                 ret = AVERROR_INVALIDDATA;
07c55d8e
                 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
 
e951b6d9
                     av_dlog(vc->avctx, "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
 
e951b6d9
                     av_dlog(vc->avctx, "real lookup offset %u, vector: ", j);
a7adcf29
                     for (k = 0; k < dim; ++k)
e951b6d9
                         av_dlog(vc->avctx, " %f ",
23664624
                                 codebook_setup->codevectors[j * dim + k]);
e951b6d9
                     av_dlog(vc->avctx, "\n");
07c55d8e
 
                     ++j;
                 }
             }
a7adcf29
             if (j != used_entries) {
e951b6d9
                 av_log(vc->avctx, AV_LOG_ERROR, "Bug in codevector vector building code. \n");
f666276f
                 ret = AVERROR_INVALIDDATA;
07c55d8e
                 goto error;
             }
a7adcf29
             entries = used_entries;
         } else if (codebook_setup->lookup_type >= 2) {
e951b6d9
             av_log(vc->avctx, AV_LOG_ERROR, "Codebook lookup type not supported. \n");
f666276f
             ret = AVERROR_INVALIDDATA;
07c55d8e
             goto error;
         }
 
 // Initialize VLC table
         if (ff_vorbis_len2vlc(tmp_vlc_bits, tmp_vlc_codes, entries)) {
e951b6d9
             av_log(vc->avctx, AV_LOG_ERROR, " Invalid code lengths while generating vlcs. \n");
f666276f
             ret = AVERROR_INVALIDDATA;
07c55d8e
             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
 
f666276f
         if ((ret = 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))) {
e951b6d9
             av_log(vc->avctx, AV_LOG_ERROR, " Error generating vlc tables. \n");
07c55d8e
             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);
f666276f
     return ret;
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) {
e951b6d9
             av_log(vc->avctx, AV_LOG_ERROR, "Vorbis time domain transform data nonzero. \n");
f666276f
             return AVERROR_INVALIDDATA;
07c55d8e
         }
     }
     return 0;
 }
 
 // Process floors part
 
3dde6675
 static int vorbis_floor0_decode(vorbis_context *vc,
                                 vorbis_floor_data *vfu, float *vec);
02055b6d
 static int 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;
02055b6d
     int i, j, k, ret;
07c55d8e
 
a7adcf29
     vc->floor_count = get_bits(gb, 6) + 1;
07c55d8e
 
d1be646e
     vc->floors = av_mallocz(vc->floor_count * sizeof(*vc->floors));
02055b6d
     if (!vc->floors)
         return AVERROR(ENOMEM);
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));
02055b6d
             if (!floor_setup->data.t1.list)
                 return AVERROR(ENOMEM);
07c55d8e
 
a7adcf29
             rangebits = get_bits(gb, 4);
13184036
             rangemax = (1 << rangebits);
             if (rangemax > vc->blocksize[1] / 2) {
e951b6d9
                 av_log(vc->avctx, AV_LOG_ERROR,
0a6b1a9f
                        "Floor value is too large for blocksize: %u (%"PRIu32")\n",
13184036
                        rangemax, vc->blocksize[1] / 2);
f666276f
                 return AVERROR_INVALIDDATA;
13184036
             }
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
e951b6d9
             if (ff_vorbis_ready_floor1_list(vc->avctx,
ecf79c4d
                                             floor_setup->data.t1.list,
                                             floor_setup->data.t1.x_list_dim)) {
                 return AVERROR_INVALIDDATA;
ebc9ff8e
             }
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);
5b47c19b
             if (!floor_setup->data.t0.order) {
e951b6d9
                 av_log(vc->avctx, AV_LOG_ERROR, "Floor 0 order is 0.\n");
5b47c19b
                 return AVERROR_INVALIDDATA;
             }
a7adcf29
             floor_setup->data.t0.rate           = get_bits(gb, 16);
5b47c19b
             if (!floor_setup->data.t0.rate) {
e951b6d9
                 av_log(vc->avctx, AV_LOG_ERROR, "Floor 0 rate is 0.\n");
5b47c19b
                 return AVERROR_INVALIDDATA;
             }
a7adcf29
             floor_setup->data.t0.bark_map_size  = get_bits(gb, 16);
fc386f2e
             if (!floor_setup->data.t0.bark_map_size) {
e951b6d9
                 av_log(vc->avctx, AV_LOG_ERROR,
11dcecfc
                        "Floor 0 bark map size is 0.\n");
                 return AVERROR_INVALIDDATA;
             }
a7adcf29
             floor_setup->data.t0.amplitude_bits = get_bits(gb,  6);
             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)
f666276f
                 return AVERROR(ENOMEM);
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
                 }
             }
 
02055b6d
             if ((ret = create_map(vc, i)) < 0)
                 return ret;
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)
f666276f
                 return AVERROR(ENOMEM);
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 {
e951b6d9
             av_log(vc->avctx, AV_LOG_ERROR, "Invalid floor type!\n");
f666276f
             return AVERROR_INVALIDDATA;
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));
02055b6d
     if (!vc->residues)
         return AVERROR(ENOMEM);
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 ||
172a5cab
             (res_setup->end-res_setup->begin) / res_setup->partition_size > FFMIN(V_MAX_PARTITIONS, 65535)) {
e951b6d9
             av_log(vc->avctx, AV_LOG_ERROR,
0a6b1a9f
                    "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);
f666276f
             return AVERROR_INVALIDDATA;
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));
02055b6d
     if (!vc->mappings)
         return AVERROR(ENOMEM);
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)) {
e951b6d9
             av_log(vc->avctx, AV_LOG_ERROR, "Other mappings than type 0 are not compliant with the Vorbis I specification. \n");
f666276f
             return AVERROR_INVALIDDATA;
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));
02055b6d
             if (!mapping_setup->angle || !mapping_setup->magnitude)
                 return AVERROR(ENOMEM);
 
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)) {
e951b6d9
             av_log(vc->avctx, AV_LOG_ERROR, "%u. mapping setup data invalid.\n", i);
f666276f
             return AVERROR_INVALIDDATA; // following spec.
07c55d8e
         }
 
         if (mapping_setup->submaps>1) {
d1be646e
             mapping_setup->mux = av_mallocz(vc->audio_channels *
                                             sizeof(*mapping_setup->mux));
02055b6d
             if (!mapping_setup->mux)
                 return AVERROR(ENOMEM);
 
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
 
02055b6d
 static int 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
02055b6d
         if (!floors[floor_number].data.t0.map[blockflag])
             return AVERROR(ENOMEM);
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)) *
3dc99a18
                              (vf->bark_map_size / BARK(vf->rate / 2.0f)));
a7adcf29
             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
     }
02055b6d
 
     return 0;
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));
02055b6d
     if (!vc->modes)
         return AVERROR(ENOMEM);
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;
f666276f
     int ret;
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')) {
e951b6d9
         av_log(vc->avctx, AV_LOG_ERROR, " Vorbis setup header packet corrupt (no vorbis signature). \n");
f666276f
         return AVERROR_INVALIDDATA;
07c55d8e
     }
 
f666276f
     if ((ret = vorbis_parse_setup_hdr_codebooks(vc))) {
e951b6d9
         av_log(vc->avctx, AV_LOG_ERROR, " Vorbis setup header packet corrupt (codebooks). \n");
f666276f
         return ret;
07c55d8e
     }
f666276f
     if ((ret = vorbis_parse_setup_hdr_tdtransforms(vc))) {
e951b6d9
         av_log(vc->avctx, AV_LOG_ERROR, " Vorbis setup header packet corrupt (time domain transforms). \n");
f666276f
         return ret;
07c55d8e
     }
f666276f
     if ((ret = vorbis_parse_setup_hdr_floors(vc))) {
e951b6d9
         av_log(vc->avctx, AV_LOG_ERROR, " Vorbis setup header packet corrupt (floors). \n");
f666276f
         return ret;
07c55d8e
     }
f666276f
     if ((ret = vorbis_parse_setup_hdr_residues(vc))) {
e951b6d9
         av_log(vc->avctx, AV_LOG_ERROR, " Vorbis setup header packet corrupt (residues). \n");
f666276f
         return ret;
07c55d8e
     }
f666276f
     if ((ret = vorbis_parse_setup_hdr_mappings(vc))) {
e951b6d9
         av_log(vc->avctx, AV_LOG_ERROR, " Vorbis setup header packet corrupt (mappings). \n");
f666276f
         return ret;
07c55d8e
     }
f666276f
     if ((ret = vorbis_parse_setup_hdr_modes(vc))) {
e951b6d9
         av_log(vc->avctx, AV_LOG_ERROR, " Vorbis setup header packet corrupt (modes). \n");
f666276f
         return ret;
07c55d8e
     }
     if (!get_bits1(gb)) {
e951b6d9
         av_log(vc->avctx, AV_LOG_ERROR, " Vorbis setup header packet corrupt (framing flag). \n");
f666276f
         return AVERROR_INVALIDDATA; // 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')) {
e951b6d9
         av_log(vc->avctx, AV_LOG_ERROR, " Vorbis id header packet corrupt (no vorbis signature). \n");
f666276f
         return AVERROR_INVALIDDATA;
07c55d8e
     }
 
a7adcf29
     vc->version        = get_bits_long(gb, 32);    //FIXME check 0
     vc->audio_channels = get_bits(gb, 8);
     if (vc->audio_channels <= 0) {
e951b6d9
         av_log(vc->avctx, AV_LOG_ERROR, "Invalid number of channels\n");
f666276f
         return AVERROR_INVALIDDATA;
9062cd35
     }
a7adcf29
     vc->audio_samplerate = get_bits_long(gb, 32);
     if (vc->audio_samplerate <= 0) {
e951b6d9
         av_log(vc->avctx, AV_LOG_ERROR, "Invalid samplerate\n");
f666276f
         return AVERROR_INVALIDDATA;
9062cd35
     }
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);
     if (bl0 > 13 || bl0 < 6 || bl1 > 13 || bl1 < 6 || bl1 < bl0) {
e951b6d9
         av_log(vc->avctx, AV_LOG_ERROR, " Vorbis id header packet corrupt (illegal blocksize). \n");
f666276f
         return AVERROR_INVALIDDATA;
07c55d8e
     }
405e99bd
     vc->blocksize[0] = (1 << bl0);
     vc->blocksize[1] = (1 << bl1);
a7adcf29
     vc->win[0] = ff_vorbis_vwin[bl0 - 6];
     vc->win[1] = ff_vorbis_vwin[bl1 - 6];
07c55d8e
 
     if ((get_bits1(gb)) == 0) {
e951b6d9
         av_log(vc->avctx, AV_LOG_ERROR, " Vorbis id header packet corrupt (framing flag not set). \n");
f666276f
         return AVERROR_INVALIDDATA;
07c55d8e
     }
 
d1be646e
     vc->channel_residues =  av_malloc((vc->blocksize[1]  / 2) * vc->audio_channels * sizeof(*vc->channel_residues));
     vc->saved            =  av_mallocz((vc->blocksize[1] / 4) * vc->audio_channels * sizeof(*vc->saved));
02055b6d
     if (!vc->channel_residues || !vc->saved)
         return AVERROR(ENOMEM);
 
a9753049
     vc->previous_window  = -1;
07c55d8e
 
79b77475
     ff_mdct_init(&vc->mdct[0], bl0, 1, -1.0);
     ff_mdct_init(&vc->mdct[1], bl1, 1, -1.0);
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)
 
e951b6d9
 static av_cold int vorbis_decode_init(AVCodecContext *avctx)
5e56b30e
 {
e951b6d9
     vorbis_context *vc = avctx->priv_data;
     uint8_t *headers   = avctx->extradata;
     int headers_len    = avctx->extradata_size;
07c55d8e
     uint8_t *header_start[3];
     int header_len[3];
3dc99a18
     GetBitContext *gb = &vc->gb;
f666276f
     int hdr_type, ret;
07c55d8e
 
e951b6d9
     vc->avctx = avctx;
fef906c7
     ff_vorbisdsp_init(&vc->dsp);
e951b6d9
     avpriv_float_dsp_init(&vc->fdsp, avctx->flags & CODEC_FLAG_BITEXACT);
     ff_fmt_convert_init(&vc->fmt_conv, avctx);
07c55d8e
 
e951b6d9
     avctx->sample_fmt = AV_SAMPLE_FMT_FLTP;
07c55d8e
 
     if (!headers_len) {
e951b6d9
         av_log(avctx, AV_LOG_ERROR, "Extradata missing.\n");
f666276f
         return AVERROR_INVALIDDATA;
07c55d8e
     }
 
f666276f
     if ((ret = avpriv_split_xiph_headers(headers, headers_len, 30, header_start, header_len)) < 0) {
e951b6d9
         av_log(avctx, AV_LOG_ERROR, "Extradata corrupt.\n");
f666276f
         return ret;
07c55d8e
     }
 
     init_get_bits(gb, header_start[0], header_len[0]*8);
a7adcf29
     hdr_type = get_bits(gb, 8);
     if (hdr_type != 1) {
e951b6d9
         av_log(avctx, AV_LOG_ERROR, "First header is not the id header.\n");
f666276f
         return AVERROR_INVALIDDATA;
07c55d8e
     }
f666276f
     if ((ret = vorbis_parse_id_hdr(vc))) {
e951b6d9
         av_log(avctx, AV_LOG_ERROR, "Id header corrupt.\n");
07c55d8e
         vorbis_free(vc);
f666276f
         return ret;
07c55d8e
     }
 
     init_get_bits(gb, header_start[2], header_len[2]*8);
a7adcf29
     hdr_type = get_bits(gb, 8);
     if (hdr_type != 5) {
e951b6d9
         av_log(avctx, AV_LOG_ERROR, "Third header is not the setup header.\n");
c8562a6f
         vorbis_free(vc);
f666276f
         return AVERROR_INVALIDDATA;
07c55d8e
     }
f666276f
     if ((ret = vorbis_parse_setup_hdr(vc))) {
e951b6d9
         av_log(avctx, AV_LOG_ERROR, "Setup header corrupt.\n");
07c55d8e
         vorbis_free(vc);
f666276f
         return ret;
07c55d8e
     }
 
4a27f326
     if (vc->audio_channels > 8)
e951b6d9
         avctx->channel_layout = 0;
53a71e1b
     else
e951b6d9
         avctx->channel_layout = ff_vorbis_channel_layouts[vc->audio_channels - 1];
53a71e1b
 
e951b6d9
     avctx->channels    = vc->audio_channels;
     avctx->sample_rate = vc->audio_samplerate;
07c55d8e
 
b95fbba7
     return 0;
07c55d8e
 }
 
 // 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
 
23bd9ef4
     if (!vf->amplitude_bits)
         return 1;
 
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) {
e951b6d9
             av_log(vc->avctx, AV_LOG_ERROR, "floor0 dec: booknumber too high!\n");
a7adcf29
             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)
f666276f
             return AVERROR_INVALIDDATA;
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) {
709cae2b
                 int v = get_vlc2(gb, vc->codebooks[book].vlc.table,
                                  vc->codebooks[book].nb_bits, 3);
                 if (v < 0)
                     return AVERROR_INVALIDDATA;
                 floor1_Y[offset+j] = v;
07c55d8e
             } 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 {
511cf612
             room = lowroom * 2;   // SPEC misspelling
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) {
24947d49
                     floor1_Y_final[i] = av_clip_uint16(val - lowroom + predicted);
07c55d8e
                 } else {
24947d49
                     floor1_Y_final[i] = av_clip_uint16(predicted - val + highroom - 1);
07c55d8e
                 }
             } else {
                 if (val & 1) {
24947d49
                     floor1_Y_final[i] = av_clip_uint16(predicted - (val + 1) / 2);
07c55d8e
                 } else {
24947d49
                     floor1_Y_final[i] = av_clip_uint16(predicted + val / 2);
07c55d8e
                 }
             }
         } else {
a7adcf29
             floor1_flag[i]    = 0;
24947d49
             floor1_Y_final[i] = av_clip_uint16(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;
 }
 
98186578
 static av_always_inline int setup_classifs(vorbis_context *vc,
                                            vorbis_residue *vr,
                                            uint8_t *do_not_decode,
                                            unsigned ch_used,
21808e21
                                            int partition_count,
                                            int ptns_to_read
                                           )
98186578
 {
     int p, j, i;
     unsigned c_p_c         = vc->codebooks[vr->classbook].dimensions;
     unsigned inverse_class = ff_inverse[vr->classifications];
     unsigned temp, temp2;
     for (p = 0, j = 0; j < ch_used; ++j) {
         if (!do_not_decode[j]) {
             temp = get_vlc2(&vc->gb, vc->codebooks[vr->classbook].vlc.table,
                                      vc->codebooks[vr->classbook].nb_bits, 3);
 
             av_dlog(NULL, "Classword: %u\n", temp);
 
709cae2b
             if ((int)temp < 0)
                 return temp;
 
c5e11e89
             av_assert0(vr->classifications > 1); //needed for inverse[]
98186578
 
db347280
             if (temp <= 65536) {
                 for (i = partition_count + c_p_c - 1; i >= partition_count; i--) {
                     temp2 = (((uint64_t)temp) * inverse_class) >> 32;
ddf1b4a2
 
21808e21
                     if (i < ptns_to_read)
db347280
                         vr->classifs[p + i] = temp - temp2 * vr->classifications;
                     temp = temp2;
                 }
             } else {
                 for (i = partition_count + c_p_c - 1; i >= partition_count; i--) {
                     temp2 = temp / vr->classifications;
ddf1b4a2
 
21808e21
                     if (i < ptns_to_read)
db347280
                         vr->classifs[p + i] = temp - temp2 * vr->classifications;
                     temp = temp2;
                 }
98186578
             }
         }
21808e21
         p += ptns_to_read;
98186578
     }
     return 0;
 }
07c55d8e
 // 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,
f74ce3a6
                                                            unsigned ch_left,
a7adcf29
                                                            int vr_type)
5e56b30e
 {
a7adcf29
     GetBitContext *gb = &vc->gb;
cf3ac543
     unsigned c_p_c        = vc->codebooks[vr->classbook].dimensions;
366d9190
     uint8_t *classifs = vr->classifs;
cf3ac543
     unsigned pass, ch_used, i, j, k, l;
f74ce3a6
     unsigned max_output = (ch - 1) * vlen;
36f10380
     int ptns_to_read = vr->ptns_to_read;
172a5cab
     int libvorbis_bug = 0;
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;
f74ce3a6
         max_output += vr->end / ch;
07c55d8e
     } else {
a7adcf29
         ch_used = ch;
f74ce3a6
         max_output += vr->end;
     }
 
     if (max_output > ch_left * vlen) {
172a5cab
         if (max_output <= ch_left * vlen + vr->partition_size*ch_used/ch) {
             ptns_to_read--;
             libvorbis_bug = 1;
         } else {
             av_log(vc->avctx, AV_LOG_ERROR, "Insufficient output buffer\n");
             return AVERROR_INVALIDDATA;
         }
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?
36f10380
         int 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) {
ae038c09
                 int ret;
21808e21
                 if ((ret = setup_classifs(vc, vr, do_not_decode, ch_used, partition_count, ptns_to_read)) < 0)
ae038c09
                     return ret;
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;
714508bc
                             unsigned step = FASTDIV(vr->partition_size << 1, dim << 1);
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)
4855022a
                                         vec[voffs + k + l * step] += codebook.codevectors[coffs + l];
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) {
4855022a
                                         vec[voffs]+=codebook.codevectors[coffs+l];
07c55d8e
 
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;
4855022a
                                         vec[voffs + k       ] += codebook.codevectors[coffs    ];
                                         vec[voffs + k + vlen] += codebook.codevectors[coffs + 1];
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;
4855022a
                                         vec[voffs           ] += codebook.codevectors[coffs    ];
                                         vec[voffs + 1       ] += codebook.codevectors[coffs + 2];
                                         vec[voffs + vlen    ] += codebook.codevectors[coffs + 1];
                                         vec[voffs + vlen + 1] += codebook.codevectors[coffs + 3];
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++) {
4855022a
                                         vec[voffs       ] += codebook.codevectors[coffs + l    ];
                                         vec[voffs + vlen] += codebook.codevectors[coffs + l + 1];
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) {
714508bc
                                 unsigned voffs_div = FASTDIV(voffset << 1, ch <<1);
9fcda25e
                                 unsigned voffs_mod = voffset - voffs_div * ch;
07c55d8e
 
a7adcf29
                                 for (k = 0; k < step; ++k) {
                                     coffs = get_vlc2(gb, codebook.vlc.table, codebook.nb_bits, 3) * dim;
9fcda25e
                                     for (l = 0; l < dim; ++l) {
                                         vec[voffs_div + voffs_mod * vlen] +=
                                             codebook.codevectors[coffs + l];
07c55d8e
 
df96f22d
                                         av_dlog(NULL, " pass %d offs: %d curr: %f change: %f cv offs.: %d+%d  \n",
9fcda25e
                                                 pass, voffs_div + voffs_mod * vlen,
                                                 vec[voffs_div + voffs_mod * vlen],
df96f22d
                                                 codebook.codevectors[coffs + l], coffs, l);
9fcda25e
 
                                         if (++voffs_mod == ch) {
                                             voffs_div++;
                                             voffs_mod = 0;
                                         }
07c55d8e
                                     }
                                 }
                             }
                         }
                     }
a7adcf29
                     j_times_ptns_to_read += ptns_to_read;
07c55d8e
                 }
                 ++partition_count;
a7adcf29
                 voffset += vr->partition_size;
07c55d8e
             }
         }
172a5cab
         if (libvorbis_bug && !pass) {
             for (j = 0; j < ch_used; ++j) {
                 if (!do_not_decode[j]) {
                     get_vlc2(&vc->gb, vc->codebooks[vr->classbook].vlc.table,
                                 vc->codebooks[vr->classbook].nb_bits, 3);
                 }
             }
         }
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,
f74ce3a6
                                         float *vec, unsigned vlen,
                                         unsigned ch_left)
c541e668
 {
a7adcf29
     if (vr->type == 2)
f74ce3a6
         return vorbis_residue_decode_internal(vc, vr, ch, do_not_decode, vec, vlen, ch_left, 2);
a7adcf29
     else if (vr->type == 1)
f74ce3a6
         return vorbis_residue_decode_internal(vc, vr, ch, do_not_decode, vec, vlen, ch_left, 1);
a7adcf29
     else if (vr->type == 0)
f74ce3a6
         return vorbis_residue_decode_internal(vc, vr, ch, do_not_decode, vec, vlen, ch_left, 0);
c541e668
     else {
e951b6d9
         av_log(vc->avctx, AV_LOG_ERROR, " Invalid residue type while residue decode?! \n");
f666276f
         return AVERROR_INVALIDDATA;
c541e668
     }
 }
 
1768e43c
 void ff_vorbis_inverse_coupling(float *mag, float *ang, intptr_t blocksize)
07c55d8e
 {
     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
 
79b77475
 static int vorbis_parse_audio_packet(vorbis_context *vc, float **floor_ptr)
5e56b30e
 {
a7adcf29
     GetBitContext *gb = &vc->gb;
26f548bb
     FFTContext *mdct;
a9753049
     int previous_window = vc->previous_window;
cf3ac543
     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;
0a6b1a9f
     uint8_t res_chan[255];
cf3ac543
     unsigned res_num = 0;
     int retlen  = 0;
f74ce3a6
     unsigned ch_left = vc->audio_channels;
     unsigned vlen;
07c55d8e
 
     if (get_bits1(gb)) {
e951b6d9
         av_log(vc->avctx, AV_LOG_ERROR, "Not a Vorbis I audio packet.\n");
f666276f
         return AVERROR_INVALIDDATA; // packet type not audio
07c55d8e
     }
 
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];
f74ce3a6
     vlen = blocksize / 2;
737ca448
     if (blockflag) {
a9753049
         int code = get_bits(gb, 2);
         if (previous_window < 0)
             previous_window = code>>1;
     } else if (previous_window < 0)
         previous_window = 0;
07c55d8e
 
f74ce3a6
     memset(ch_res_ptr,   0, sizeof(float) * vc->audio_channels * vlen); //FIXME can this be removed ?
79b77475
     for (i = 0; i < vc->audio_channels; ++i)
         memset(floor_ptr[i], 0, vlen * sizeof(floor_ptr[0][0])); //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
         }
 
79b77475
         ret = floor->decode(vc, &floor->data, floor_ptr[i]);
3dde6675
 
         if (ret < 0) {
e951b6d9
             av_log(vc->avctx, AV_LOG_ERROR, "Invalid codebook in vorbis_floor_decode.\n");
f666276f
             return AVERROR_INVALIDDATA;
3dde6675
         }
         no_residue[i] = ret;
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;
f74ce3a6
         int ret;
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]];
68226ed9
         if (ch_left < ch) {
e951b6d9
             av_log(vc->avctx, AV_LOG_ERROR, "Too many channels in vorbis_floor_decode.\n");
92b3caa1
             return AVERROR_INVALIDDATA;
68226ed9
         }
ff7f198d
         if (ch) {
             ret = vorbis_residue_decode(vc, residue, ch, do_not_decode, ch_res_ptr, vlen, ch_left);
             if (ret < 0)
                 return ret;
         }
07c55d8e
 
f74ce3a6
         ch_res_ptr += ch * vlen;
68226ed9
         ch_left -= ch;
07c55d8e
     }
 
12623a80
     if (ch_left > 0)
         return AVERROR_INVALIDDATA;
 
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_res_ptr   = vc->channel_residues + res_chan[j] * blocksize / 2;
79b77475
         vc->fdsp.vector_fmul(floor_ptr[j], floor_ptr[j], ch_res_ptr, blocksize / 2);
         mdct->imdct_half(mdct, ch_res_ptr, floor_ptr[j]);
07c55d8e
     }
 
4855022a
 // Overlap/add, save data for next overlapping
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;
79b77475
         float *ret        = floor_ptr[j];
a7adcf29
         float *buf        = residue;
         const float *win  = vc->win[blockflag & previous_window];
 
         if (blockflag == previous_window) {
e034cc6c
             vc->fdsp.vector_fmul_window(ret, saved, buf, win, blocksize / 4);
a7adcf29
         } else if (blockflag > previous_window) {
e034cc6c
             vc->fdsp.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));
e034cc6c
             vc->fdsp.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
 
e951b6d9
 static int vorbis_decode_frame(AVCodecContext *avctx, void *data,
0eea2129
                                int *got_frame_ptr, AVPacket *avpkt)
07c55d8e
 {
7a00bbad
     const uint8_t *buf = avpkt->data;
a7adcf29
     int buf_size       = avpkt->size;
e951b6d9
     vorbis_context *vc = avctx->priv_data;
ee6ca11b
     AVFrame *frame     = data;
3dc99a18
     GetBitContext *gb = &vc->gb;
79b77475
     float *channel_ptrs[255];
0eea2129
     int i, len, ret;
07c55d8e
 
df96f22d
     av_dlog(NULL, "packet length %d \n", buf_size);
07c55d8e
 
e9ffee23
     if (*buf == 1 && buf_size > 7) {
         init_get_bits(gb, buf+1, buf_size*8 - 8);
         vorbis_free(vc);
         if ((ret = vorbis_parse_id_hdr(vc))) {
13fa0741
             av_log(avctx, AV_LOG_ERROR, "Id header corrupt.\n");
e9ffee23
             vorbis_free(vc);
             return ret;
         }
 
         if (vc->audio_channels > 8)
13fa0741
             avctx->channel_layout = 0;
e9ffee23
         else
13fa0741
             avctx->channel_layout = ff_vorbis_channel_layouts[vc->audio_channels - 1];
e9ffee23
 
13fa0741
         avctx->channels    = vc->audio_channels;
         avctx->sample_rate = vc->audio_samplerate;
e9ffee23
         return buf_size;
     }
 
     if (*buf == 3 && buf_size > 7) {
13fa0741
         av_log(avctx, AV_LOG_DEBUG, "Ignoring comment header\n");
e9ffee23
         return buf_size;
     }
 
     if (*buf == 5 && buf_size > 7 && vc->channel_residues && !vc->modes) {
         init_get_bits(gb, buf+1, buf_size*8 - 8);
         if ((ret = vorbis_parse_setup_hdr(vc))) {
13fa0741
             av_log(avctx, AV_LOG_ERROR, "Setup header corrupt.\n");
e9ffee23
             vorbis_free(vc);
             return ret;
         }
         return buf_size;
     }
 
     if (!vc->channel_residues || !vc->modes) {
13fa0741
         av_log(avctx, AV_LOG_ERROR, "Data packet before valid headers\n");
e9ffee23
         return AVERROR_INVALIDDATA;
     }
 
79b77475
     /* get output buffer */
ee6ca11b
     frame->nb_samples = vc->blocksize[1] / 2;
1ec94b0f
     if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)
79b77475
         return ret;
 
     if (vc->audio_channels > 8) {
         for (i = 0; i < vc->audio_channels; i++)
ee6ca11b
             channel_ptrs[i] = (float *)frame->extended_data[i];
79b77475
     } else {
         for (i = 0; i < vc->audio_channels; i++) {
             int ch = ff_vorbis_channel_layout_offsets[vc->audio_channels - 1][i];
ee6ca11b
             channel_ptrs[ch] = (float *)frame->extended_data[i];
79b77475
         }
     }
 
07c55d8e
     init_get_bits(gb, buf, buf_size*8);
 
79b77475
     if ((len = vorbis_parse_audio_packet(vc, channel_ptrs)) <= 0)
f666276f
         return len;
07c55d8e
 
     if (!vc->first_frame) {
a7adcf29
         vc->first_frame = 1;
0eea2129
         *got_frame_ptr = 0;
cde1e7db
         av_frame_unref(frame);
b95fbba7
         return buf_size;
07c55d8e
     }
 
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
 
ee6ca11b
     frame->nb_samples = len;
     *got_frame_ptr    = 1;
07c55d8e
 
b95fbba7
     return buf_size;
07c55d8e
 }
 
 // Close decoder
 
e951b6d9
 static av_cold int vorbis_decode_close(AVCodecContext *avctx)
5e56b30e
 {
e951b6d9
     vorbis_context *vc = avctx->priv_data;
07c55d8e
 
     vorbis_free(vc);
 
b95fbba7
     return 0;
07c55d8e
 }
 
e951b6d9
 static av_cold void vorbis_decode_flush(AVCodecContext *avctx)
19adb0bc
 {
e951b6d9
     vorbis_context *vc = avctx->priv_data;
19adb0bc
 
     if (vc->saved) {
         memset(vc->saved, 0, (vc->blocksize[1] / 4) * vc->audio_channels *
                              sizeof(*vc->saved));
     }
a9753049
     vc->previous_window = -1;
19adb0bc
 }
 
e7e2df27
 AVCodec ff_vorbis_decoder = {
00c3b67b
     .name            = "vorbis",
b2bed932
     .long_name       = NULL_IF_CONFIG_SMALL("Vorbis"),
00c3b67b
     .type            = AVMEDIA_TYPE_AUDIO,
36ef5369
     .id              = AV_CODEC_ID_VORBIS,
00c3b67b
     .priv_data_size  = sizeof(vorbis_context),
     .init            = vorbis_decode_init,
     .close           = vorbis_decode_close,
     .decode          = vorbis_decode_frame,
     .flush           = vorbis_decode_flush,
     .capabilities    = CODEC_CAP_DR1,
53a71e1b
     .channel_layouts = ff_vorbis_channel_layouts,
79b77475
     .sample_fmts     = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_FLTP,
                                                        AV_SAMPLE_FMT_NONE },
07c55d8e
 };