vorbis_dec.c 60.3 KB
Newer Older
1
/**
2
 * @file libavcodec/vorbis_dec.c
3 4
 * Vorbis I decoder
 * @author Denes Balatoni  ( dbalatoni programozo hu )
5
 *
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
 * 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
 */

#undef V_DEBUG
//#define V_DEBUG
//#define AV_DEBUG(...) av_log(NULL, AV_LOG_INFO, __VA_ARGS__)

#include <math.h>

#define ALT_BITSTREAM_READER_LE
#include "avcodec.h"
31
#include "get_bits.h"
32 33 34 35 36 37 38
#include "dsputil.h"

#include "vorbis.h"
#include "xiph.h"

#define V_NB_BITS 8
#define V_NB_BITS2 11
39 40
#define V_MAX_VLCS (1 << 16)
#define V_MAX_PARTITIONS (1 << 20)
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57

#ifndef V_DEBUG
#define AV_DEBUG(...)
#endif

#undef NDEBUG
#include <assert.h>

typedef struct {
    uint_fast8_t dimensions;
    uint_fast8_t lookup_type;
    uint_fast8_t maxdepth;
    VLC vlc;
    float *codevectors;
    unsigned int nb_bits;
} vorbis_codebook;

58
typedef union  vorbis_floor_u  vorbis_floor_data;
59 60 61 62 63 64 65 66 67
typedef struct vorbis_floor0_s vorbis_floor0;
typedef struct vorbis_floor1_s vorbis_floor1;
struct vorbis_context_s;
typedef
uint_fast8_t (* vorbis_floor_decode_func)
             (struct vorbis_context_s *, vorbis_floor_data *, float *);
typedef struct {
    uint_fast8_t floor_type;
    vorbis_floor_decode_func decode;
68 69
    union vorbis_floor_u {
        struct vorbis_floor0_s {
70
            uint_fast8_t  order;
71 72
            uint_fast16_t rate;
            uint_fast16_t bark_map_size;
73
            int_fast32_t *map[2];
74
            uint_fast32_t map_size[2];
75 76 77 78 79
            uint_fast8_t  amplitude_bits;
            uint_fast8_t  amplitude_offset;
            uint_fast8_t  num_books;
            uint_fast8_t *book_list;
            float        *lsp;
80
        } t0;
81
        struct vorbis_floor1_s {
82 83 84 85 86 87 88 89 90
            uint_fast8_t partitions;
            uint_fast8_t maximum_class;
            uint_fast8_t partition_class[32];
            uint_fast8_t class_dimensions[16];
            uint_fast8_t class_subclasses[16];
            uint_fast8_t class_masterbook[16];
            int_fast16_t subclass_books[16][8];
            uint_fast8_t multiplier;
            uint_fast16_t x_list_dim;
91
            vorbis_floor1_entry *list;
92 93 94 95 96 97 98 99 100
        } t1;
    } data;
} vorbis_floor;

typedef struct {
    uint_fast16_t type;
    uint_fast32_t begin;
    uint_fast32_t end;
    uint_fast32_t partition_size;
101 102 103 104
    uint_fast8_t  classifications;
    uint_fast8_t  classbook;
    int_fast16_t  books[64][8];
    uint_fast8_t  maxpass;
105 106 107
} vorbis_residue;

typedef struct {
108
    uint_fast8_t  submaps;
109 110 111 112
    uint_fast16_t coupling_steps;
    uint_fast8_t *magnitude;
    uint_fast8_t *angle;
    uint_fast8_t *mux;
113 114
    uint_fast8_t  submap_floor[16];
    uint_fast8_t  submap_residue[16];
115 116 117
} vorbis_mapping;

typedef struct {
118
    uint_fast8_t  blockflag;
119 120
    uint_fast16_t windowtype;
    uint_fast16_t transformtype;
121
    uint_fast8_t  mapping;
122 123 124 125 126 127 128
} vorbis_mode;

typedef struct vorbis_context_s {
    AVCodecContext *avccontext;
    GetBitContext gb;
    DSPContext dsp;

129
    FFTContext mdct[2];
130
    uint_fast8_t  first_frame;
131
    uint_fast32_t version;
132
    uint_fast8_t  audio_channels;
133 134 135 136 137
    uint_fast32_t audio_samplerate;
    uint_fast32_t bitrate_maximum;
    uint_fast32_t bitrate_nominal;
    uint_fast32_t bitrate_minimum;
    uint_fast32_t blocksize[2];
138
    const float  *win[2];
139 140
    uint_fast16_t codebook_count;
    vorbis_codebook *codebooks;
141
    uint_fast8_t  floor_count;
142
    vorbis_floor *floors;
143
    uint_fast8_t  residue_count;
144
    vorbis_residue *residues;
145
    uint_fast8_t  mapping_count;
146
    vorbis_mapping *mappings;
147 148 149 150 151 152 153
    uint_fast8_t  mode_count;
    vorbis_mode  *modes;
    uint_fast8_t  mode_number; // mode number for the current packet
    uint_fast8_t  previous_window;
    float        *channel_residues;
    float        *channel_floors;
    float        *saved;
154 155 156 157 158 159 160
    uint_fast32_t add_bias; // for float->int conversion
    uint_fast32_t exp_bias;
} vorbis_context;

/* Helper functions */

#define BARK(x) \
161
    (13.1f * atan(0.00074f * (x)) + 2.24f * atan(1.85e-8f * (x) * (x)) + 1e-4f * (x))
162

163 164 165 166 167 168 169 170 171 172 173 174 175 176
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)\
    }

177 178
static float vorbisfloat2float(uint_fast32_t val)
{
179 180 181 182
    double mant = val & 0x1fffff;
    long exp    = (val & 0x7fe00000L) >> 21;
    if (val & 0x80000000)
        mant = -mant;
183
    return ldexp(mant, exp - 20 - 768);
184 185 186 187 188
}


// Free all allocated memory -----------------------------------------

189 190
static void vorbis_free(vorbis_context *vc)
{
191 192 193 194 195 196 197 198 199 200 201 202
    int_fast16_t i;

    av_freep(&vc->channel_residues);
    av_freep(&vc->channel_floors);
    av_freep(&vc->saved);

    av_freep(&vc->residues);
    av_freep(&vc->modes);

    ff_mdct_end(&vc->mdct[0]);
    ff_mdct_end(&vc->mdct[1]);

203
    for (i = 0; i < vc->codebook_count; ++i) {
204 205 206 207 208
        av_free(vc->codebooks[i].codevectors);
        free_vlc(&vc->codebooks[i].vlc);
    }
    av_freep(&vc->codebooks);

209 210
    for (i = 0; i < vc->floor_count; ++i) {
        if (vc->floors[i].floor_type == 0) {
211 212 213 214
            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);
215
        } else {
216 217 218 219 220
            av_free(vc->floors[i].data.t1.list);
        }
    }
    av_freep(&vc->floors);

221
    for (i = 0; i < vc->mapping_count; ++i) {
222 223 224 225 226 227 228 229 230 231 232
        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

233 234
static int vorbis_parse_setup_hdr_codebooks(vorbis_context *vc)
{
235
    uint_fast16_t cb;
236
    uint8_t  *tmp_vlc_bits;
237
    uint32_t *tmp_vlc_codes;
238
    GetBitContext *gb = &vc->gb;
239

240
    vc->codebook_count = get_bits(gb, 8) + 1;
241 242 243

    AV_DEBUG(" Codebooks: %d \n", vc->codebook_count);

244 245 246
    vc->codebooks = av_mallocz(vc->codebook_count * sizeof(vorbis_codebook));
    tmp_vlc_bits  = av_mallocz(V_MAX_VLCS * sizeof(uint8_t));
    tmp_vlc_codes = av_mallocz(V_MAX_VLCS * sizeof(uint32_t));
247

248 249
    for (cb = 0; cb < vc->codebook_count; ++cb) {
        vorbis_codebook *codebook_setup = &vc->codebooks[cb];
250
        uint_fast8_t ordered;
251
        uint_fast32_t t, used_entries = 0;
252 253 254 255
        uint_fast32_t entries;

        AV_DEBUG(" %d. Codebook \n", cb);

256
        if (get_bits(gb, 24) != 0x564342) {
257 258 259 260 261
            av_log(vc->avccontext, AV_LOG_ERROR, " %"PRIdFAST16". Codebook setup data corrupt. \n", cb);
            goto error;
        }

        codebook_setup->dimensions=get_bits(gb, 16);
262
        if (codebook_setup->dimensions > 16 || codebook_setup->dimensions == 0) {
263
            av_log(vc->avccontext, AV_LOG_ERROR, " %"PRIdFAST16". Codebook's dimension is invalid (%d). \n", cb, codebook_setup->dimensions);
264 265
            goto error;
        }
266 267
        entries = get_bits(gb, 24);
        if (entries > V_MAX_VLCS) {
268 269 270 271
            av_log(vc->avccontext, AV_LOG_ERROR, " %"PRIdFAST16". Codebook has too many entries (%"PRIdFAST32"). \n", cb, entries);
            goto error;
        }

272
        ordered = get_bits1(gb);
273 274 275 276 277

        AV_DEBUG(" codebook_dimensions %d, codebook_entries %d \n", codebook_setup->dimensions, entries);

        if (!ordered) {
            uint_fast16_t ce;
278 279
            uint_fast8_t  flag;
            uint_fast8_t  sparse = get_bits1(gb);
280 281 282 283 284 285

            AV_DEBUG(" not ordered \n");

            if (sparse) {
                AV_DEBUG(" sparse \n");

286 287 288
                used_entries = 0;
                for (ce = 0; ce < entries; ++ce) {
                    flag = get_bits1(gb);
289
                    if (flag) {
290
                        tmp_vlc_bits[ce] = get_bits(gb, 5) + 1;
291
                        ++used_entries;
292
                    } else
293
                        tmp_vlc_bits[ce] = 0;
294 295 296 297
                }
            } else {
                AV_DEBUG(" not sparse \n");

298 299 300
                used_entries = entries;
                for (ce = 0; ce < entries; ++ce)
                    tmp_vlc_bits[ce] = get_bits(gb, 5) + 1;
301 302
            }
        } else {
303 304
            uint_fast16_t current_entry = 0;
            uint_fast8_t current_length = get_bits(gb, 5)+1;
305 306 307

            AV_DEBUG(" ordered, current length: %d \n", current_length);  //FIXME

308 309
            used_entries = entries;
            for (; current_entry < used_entries && current_length <= 32; ++current_length) {
310 311 312 313
                uint_fast16_t i, number;

                AV_DEBUG(" number bits: %d ", ilog(entries - current_entry));

314
                number = get_bits(gb, ilog(entries - current_entry));
315 316 317

                AV_DEBUG(" number: %d \n", number);

318 319 320
                for (i = current_entry; i < number+current_entry; ++i)
                    if (i < used_entries)
                        tmp_vlc_bits[i] = current_length;
321 322 323 324 325 326 327 328 329

                current_entry+=number;
            }
            if (current_entry>used_entries) {
                av_log(vc->avccontext, AV_LOG_ERROR, " More codelengths than codes in codebook. \n");
                goto error;
            }
        }

330
        codebook_setup->lookup_type = get_bits(gb, 4);
331

332
        AV_DEBUG(" lookup type: %d : %s \n", codebook_setup->lookup_type, codebook_setup->lookup_type ? "vq" : "no lookup");
333 334 335

// If the codebook is used for (inverse) VQ, calculate codevectors.

336
        if (codebook_setup->lookup_type == 1) {
337
            uint_fast16_t i, j, k;
338
            uint_fast16_t codebook_lookup_values = ff_vorbis_nth_root(entries, codebook_setup->dimensions);
339 340
            uint_fast16_t codebook_multiplicands[codebook_lookup_values];

341 342 343 344
            float codebook_minimum_value = vorbisfloat2float(get_bits_long(gb, 32));
            float codebook_delta_value   = vorbisfloat2float(get_bits_long(gb, 32));
            uint_fast8_t codebook_value_bits = get_bits(gb, 4)+1;
            uint_fast8_t codebook_sequence_p = get_bits1(gb);
345 346 347 348

            AV_DEBUG(" We expect %d numbers for building the codevectors. \n", codebook_lookup_values);
            AV_DEBUG("  delta %f minmum %f \n", codebook_delta_value, codebook_minimum_value);

349 350
            for (i = 0; i < codebook_lookup_values; ++i) {
                codebook_multiplicands[i] = get_bits(gb, codebook_value_bits);
351 352 353 354 355 356

                AV_DEBUG(" multiplicands*delta+minmum : %e \n", (float)codebook_multiplicands[i]*codebook_delta_value+codebook_minimum_value);
                AV_DEBUG(" multiplicand %d \n", codebook_multiplicands[i]);
            }

// Weed out unused vlcs and build codevector vector
357 358 359
            codebook_setup->codevectors = used_entries ? av_mallocz(used_entries*codebook_setup->dimensions * sizeof(float)) : NULL;
            for (j = 0, i = 0; i < entries; ++i) {
                uint_fast8_t dim = codebook_setup->dimensions;
360 361

                if (tmp_vlc_bits[i]) {
362 363
                    float last = 0.0;
                    uint_fast32_t lookup_offset = i;
364 365 366 367 368

#ifdef V_DEBUG
                    av_log(vc->avccontext, AV_LOG_INFO, "Lookup offset %d ,", i);
#endif

369
                    for (k = 0; k < dim; ++k) {
370
                        uint_fast32_t multiplicand_offset = lookup_offset % codebook_lookup_values;
371
                        codebook_setup->codevectors[j * dim + k] = codebook_multiplicands[multiplicand_offset] * codebook_delta_value + codebook_minimum_value + last;
372
                        if (codebook_sequence_p)
373
                            last = codebook_setup->codevectors[j * dim + k];
374 375
                        lookup_offset/=codebook_lookup_values;
                    }
376
                    tmp_vlc_bits[j] = tmp_vlc_bits[i];
377 378 379

#ifdef V_DEBUG
                    av_log(vc->avccontext, AV_LOG_INFO, "real lookup offset %d, vector: ", j);
380 381
                    for (k = 0; k < dim; ++k)
                        av_log(vc->avccontext, AV_LOG_INFO, " %f ", codebook_setup->codevectors[j * dim + k]);
382 383 384 385 386 387
                    av_log(vc->avccontext, AV_LOG_INFO, "\n");
#endif

                    ++j;
                }
            }
388
            if (j != used_entries) {
389 390 391
                av_log(vc->avccontext, AV_LOG_ERROR, "Bug in codevector vector building code. \n");
                goto error;
            }
392 393
            entries = used_entries;
        } else if (codebook_setup->lookup_type >= 2) {
394 395 396 397 398 399 400 401 402
            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;
        }
403 404 405 406
        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];
407

408 409
        if (codebook_setup->maxdepth > 3 * V_NB_BITS)
            codebook_setup->nb_bits = V_NB_BITS2;
410
        else
411
            codebook_setup->nb_bits = V_NB_BITS;
412

413
        codebook_setup->maxdepth = (codebook_setup->maxdepth+codebook_setup->nb_bits - 1) / codebook_setup->nb_bits;
414 415 416 417 418 419 420 421 422 423 424 425 426 427 428

        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);
    return 0;

// Error:
error:
    av_free(tmp_vlc_bits);
    av_free(tmp_vlc_codes);
429
    return -1;
430 431 432 433
}

// Process time domain transforms part (unused in Vorbis I)

434 435
static int vorbis_parse_setup_hdr_tdtransforms(vorbis_context *vc)
{
436
    GetBitContext *gb = &vc->gb;
437
    uint_fast8_t i;
438
    uint_fast8_t vorbis_time_count = get_bits(gb, 6) + 1;
439

440 441
    for (i = 0; i < vorbis_time_count; ++i) {
        uint_fast16_t vorbis_tdtransform = get_bits(gb, 16);
442 443 444 445 446

        AV_DEBUG(" Vorbis time domain transform %d: %d \n", vorbis_time_count, vorbis_tdtransform);

        if (vorbis_tdtransform) {
            av_log(vc->avccontext, AV_LOG_ERROR, "Vorbis time domain transform data nonzero. \n");
447
            return -1;
448 449 450 451 452 453 454 455 456
        }
    }
    return 0;
}

// Process floors part

static uint_fast8_t vorbis_floor0_decode(vorbis_context *vc,
                                         vorbis_floor_data *vfu, float *vec);
457
static void create_map(vorbis_context *vc, uint_fast8_t floor_number);
458 459
static uint_fast8_t vorbis_floor1_decode(vorbis_context *vc,
                                         vorbis_floor_data *vfu, float *vec);
460 461
static int vorbis_parse_setup_hdr_floors(vorbis_context *vc)
{
462
    GetBitContext *gb = &vc->gb;
463 464
    uint_fast16_t i,j,k;

465
    vc->floor_count = get_bits(gb, 6) + 1;
466

467
    vc->floors = av_mallocz(vc->floor_count * sizeof(vorbis_floor));
468

469 470
    for (i = 0; i < vc->floor_count; ++i) {
        vorbis_floor *floor_setup = &vc->floors[i];
471

472
        floor_setup->floor_type = get_bits(gb, 16);
473 474 475

        AV_DEBUG(" %d. floor type %d \n", i, floor_setup->floor_type);

476 477 478 479
        if (floor_setup->floor_type == 1) {
            uint_fast8_t  maximum_class = 0;
            uint_fast8_t  rangebits;
            uint_fast16_t floor1_values = 2;
480

481
            floor_setup->decode = vorbis_floor1_decode;
482

483
            floor_setup->data.t1.partitions = get_bits(gb, 5);
484 485 486

            AV_DEBUG(" %d.floor: %d partitions \n", i, floor_setup->data.t1.partitions);

487 488 489 490
            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];
491 492 493 494 495 496 497

                AV_DEBUG(" %d. floor %d partition class %d \n", i, j, floor_setup->data.t1.partition_class[j]);

            }

            AV_DEBUG(" maximum class %d \n", maximum_class);

498
            floor_setup->data.t1.maximum_class = maximum_class;
499

500 501 502
            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);
503 504 505 506

                AV_DEBUG(" %d floor %d class dim: %d subclasses %d \n", i, j, floor_setup->data.t1.class_dimensions[j], floor_setup->data.t1.class_subclasses[j]);

                if (floor_setup->data.t1.class_subclasses[j]) {
507
                    GET_VALIDATED_INDEX(floor_setup->data.t1.class_masterbook[j], 8, vc->codebook_count)
508 509 510 511

                    AV_DEBUG("   masterbook: %d \n", floor_setup->data.t1.class_masterbook[j]);
                }

512 513
                for (k = 0; k < (1 << floor_setup->data.t1.class_subclasses[j]); ++k) {
                    int16_t bits = get_bits(gb, 8) - 1;
514 515
                    if (bits != -1)
                        VALIDATE_INDEX(bits, vc->codebook_count)
516
                    floor_setup->data.t1.subclass_books[j][k] = bits;
517 518 519 520 521

                    AV_DEBUG("    book %d. : %d \n", k, floor_setup->data.t1.subclass_books[j][k]);
                }
            }

522 523
            floor_setup->data.t1.multiplier = get_bits(gb, 2) + 1;
            floor_setup->data.t1.x_list_dim = 2;
524

525
            for (j = 0; j < floor_setup->data.t1.partitions; ++j)
526 527
                floor_setup->data.t1.x_list_dim+=floor_setup->data.t1.class_dimensions[floor_setup->data.t1.partition_class[j]];

528
            floor_setup->data.t1.list = av_mallocz(floor_setup->data.t1.x_list_dim * sizeof(vorbis_floor1_entry));
529 530


531
            rangebits = get_bits(gb, 4);
532
            floor_setup->data.t1.list[0].x = 0;
533
            floor_setup->data.t1.list[1].x = (1 << rangebits);
534

535 536 537
            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);
538 539 540 541 542 543 544

                    AV_DEBUG(" %d. floor1 Y coord. %d \n", floor1_values, floor_setup->data.t1.list[floor1_values].x);
                }
            }

// 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);
545 546
        } else if (floor_setup->floor_type == 0) {
            uint_fast8_t max_codebook_dim = 0;
547

548
            floor_setup->decode = vorbis_floor0_decode;
549

550 551 552 553
            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);
554 555 556 557 558
            /* zero would result in a div by zero later *
             * 2^0 - 1 == 0                             */
            if (floor_setup->data.t0.amplitude_bits == 0) {
              av_log(vc->avccontext, AV_LOG_ERROR,
                     "Floor 0 amplitude bits is 0.\n");
559
              return -1;
560
            }
561 562
            floor_setup->data.t0.amplitude_offset = get_bits(gb, 8);
            floor_setup->data.t0.num_books        = get_bits(gb, 4) + 1;
563 564

            /* allocate mem for booklist */
565
            floor_setup->data.t0.book_list =
566
                av_malloc(floor_setup->data.t0.num_books);
567
            if (!floor_setup->data.t0.book_list)
568
                return -1;
569 570 571 572
            /* read book indexes */
            {
                int idx;
                uint_fast8_t book_idx;
573
                for (idx = 0; idx < floor_setup->data.t0.num_books; ++idx) {
574
                    GET_VALIDATED_INDEX(floor_setup->data.t0.book_list[idx], 8, vc->codebook_count)
575
                    if (vc->codebooks[book_idx].dimensions > max_codebook_dim)
576
                        max_codebook_dim = vc->codebooks[book_idx].dimensions;
577 578 579
                }
            }

580
            create_map(vc, i);
581 582 583 584 585

            /* allocate mem for lsp coefficients */
            {
                /* codebook dim is for padding if codebook dim doesn't *
                 * divide order+1 then we need to read more data       */
586
                floor_setup->data.t0.lsp =
587 588
                    av_malloc((floor_setup->data.t0.order+1 + max_codebook_dim)
                              * sizeof(float));
589
                if (!floor_setup->data.t0.lsp)
590
                    return -1;
591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607
            }

#ifdef V_DEBUG /* debug output parsed headers */
            AV_DEBUG("floor0 order: %u\n", floor_setup->data.t0.order);
            AV_DEBUG("floor0 rate: %u\n", floor_setup->data.t0.rate);
            AV_DEBUG("floor0 bark map size: %u\n",
              floor_setup->data.t0.bark_map_size);
            AV_DEBUG("floor0 amplitude bits: %u\n",
              floor_setup->data.t0.amplitude_bits);
            AV_DEBUG("floor0 amplitude offset: %u\n",
              floor_setup->data.t0.amplitude_offset);
            AV_DEBUG("floor0 number of books: %u\n",
              floor_setup->data.t0.num_books);
            AV_DEBUG("floor0 book list pointer: %p\n",
              floor_setup->data.t0.book_list);
            {
              int idx;
608 609 610 611
              for (idx = 0; idx < floor_setup->data.t0.num_books; ++idx) {
                  AV_DEBUG("  Book %d: %u\n",
                           idx+1,
                           floor_setup->data.t0.book_list[idx]);
612 613 614
              }
            }
#endif
615
        } else {
616
            av_log(vc->avccontext, AV_LOG_ERROR, "Invalid floor type!\n");
617
            return -1;
618 619 620 621 622 623 624
        }
    }
    return 0;
}

// Process residues part

625 626
static int vorbis_parse_setup_hdr_residues(vorbis_context *vc)
{
627
    GetBitContext *gb = &vc->gb;
628 629
    uint_fast8_t i, j, k;

630 631
    vc->residue_count = get_bits(gb, 6)+1;
    vc->residues      = av_mallocz(vc->residue_count * sizeof(vorbis_residue));
632 633 634

    AV_DEBUG(" There are %d residues. \n", vc->residue_count);

635 636
    for (i = 0; i < vc->residue_count; ++i) {
        vorbis_residue *res_setup = &vc->residues[i];
637 638 639 640
        uint_fast8_t cascade[64];
        uint_fast8_t high_bits;
        uint_fast8_t low_bits;

641
        res_setup->type = get_bits(gb, 16);
642 643 644

        AV_DEBUG(" %d. residue type %d \n", i, res_setup->type);

645 646 647
        res_setup->begin          = get_bits(gb, 24);
        res_setup->end            = get_bits(gb, 24);
        res_setup->partition_size = get_bits(gb, 24) + 1;
648
        /* Validations to prevent a buffer overflow later. */
649 650 651 652
        if (res_setup->begin>res_setup->end ||
            res_setup->end>vc->blocksize[1] / (res_setup->type == 2 ? 1 : 2) ||
            (res_setup->end-res_setup->begin) / res_setup->partition_size > V_MAX_PARTITIONS) {
            av_log(vc->avccontext, AV_LOG_ERROR, "partition out of bounds: type, begin, end, size, blocksize: %"PRIdFAST16", %"PRIdFAST32", %"PRIdFAST32", %"PRIdFAST32", %"PRIdFAST32"\n", res_setup->type, res_setup->begin, res_setup->end, res_setup->partition_size, vc->blocksize[1] / 2);
653
            return -1;
654 655
        }

656
        res_setup->classifications = get_bits(gb, 6) + 1;
657
        GET_VALIDATED_INDEX(res_setup->classbook, 8, vc->codebook_count)
658 659 660 661

        AV_DEBUG("    begin %d end %d part.size %d classif.s %d classbook %d \n", res_setup->begin, res_setup->end, res_setup->partition_size,
          res_setup->classifications, res_setup->classbook);

662 663 664
        for (j = 0; j < res_setup->classifications; ++j) {
            high_bits = 0;
            low_bits  = get_bits(gb, 3);
665
            if (get_bits1(gb))
666 667
                high_bits = get_bits(gb, 5);
            cascade[j] = (high_bits << 3) + low_bits;
668 669 670 671

            AV_DEBUG("     %d class casscade depth: %d \n", j, ilog(cascade[j]));
        }

672 673 674 675
        res_setup->maxpass = 0;
        for (j = 0; j < res_setup->classifications; ++j) {
            for (k = 0; k < 8; ++k) {
                if (cascade[j]&(1 << k)) {
676
                    GET_VALIDATED_INDEX(res_setup->books[j][k], 8, vc->codebook_count)
677 678 679

                    AV_DEBUG("     %d class casscade depth %d book: %d \n", j, k, res_setup->books[j][k]);

680
                    if (k>res_setup->maxpass)
681
                        res_setup->maxpass = k;
682
                } else {
683
                    res_setup->books[j][k] = -1;
684 685 686 687 688 689 690 691 692
                }
            }
        }
    }
    return 0;
}

// Process mappings part

693 694
static int vorbis_parse_setup_hdr_mappings(vorbis_context *vc)
{
695
    GetBitContext *gb = &vc->gb;
696 697
    uint_fast8_t i, j;

698 699
    vc->mapping_count = get_bits(gb, 6)+1;
    vc->mappings      = av_mallocz(vc->mapping_count * sizeof(vorbis_mapping));
700 701 702

    AV_DEBUG(" There are %d mappings. \n", vc->mapping_count);

703 704
    for (i = 0; i < vc->mapping_count; ++i) {
        vorbis_mapping *mapping_setup = &vc->mappings[i];
705 706 707

        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");
708
            return -1;
709 710
        }
        if (get_bits1(gb)) {
711
            mapping_setup->submaps = get_bits(gb, 4) + 1;
712
        } else {
713
            mapping_setup->submaps = 1;
714 715 716
        }

        if (get_bits1(gb)) {
717 718 719 720
            mapping_setup->coupling_steps = get_bits(gb, 8) + 1;
            mapping_setup->magnitude      = av_mallocz(mapping_setup->coupling_steps * sizeof(uint_fast8_t));
            mapping_setup->angle          = av_mallocz(mapping_setup->coupling_steps * sizeof(uint_fast8_t));
            for (j = 0; j < mapping_setup->coupling_steps; ++j) {
721 722
                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)
723 724
            }
        } else {
725
            mapping_setup->coupling_steps = 0;
726 727 728 729
        }

        AV_DEBUG("   %d mapping coupling steps: %d \n", i, mapping_setup->coupling_steps);

730
        if (get_bits(gb, 2)) {
731
            av_log(vc->avccontext, AV_LOG_ERROR, "%d. mapping setup data invalid. \n", i);
732
            return -1; // following spec.
733 734 735
        }

        if (mapping_setup->submaps>1) {
736 737 738
            mapping_setup->mux = av_mallocz(vc->audio_channels * sizeof(uint_fast8_t));
            for (j = 0; j < vc->audio_channels; ++j)
                mapping_setup->mux[j] = get_bits(gb, 4);
739 740
        }

741
        for (j = 0; j < mapping_setup->submaps; ++j) {
742
            skip_bits(gb, 8); // FIXME check?
743 744
            GET_VALIDATED_INDEX(mapping_setup->submap_floor[j],   8, vc->floor_count)
            GET_VALIDATED_INDEX(mapping_setup->submap_residue[j], 8, vc->residue_count)
745 746 747 748 749 750 751 752 753

            AV_DEBUG("   %d mapping %d submap : floor %d, residue %d \n", i, j, mapping_setup->submap_floor[j], mapping_setup->submap_residue[j]);
        }
    }
    return 0;
}

// Process modes part

754
static void create_map(vorbis_context *vc, uint_fast8_t floor_number)
755
{
756 757
    vorbis_floor *floors = vc->floors;
    vorbis_floor0 *vf;
758 759
    int idx;
    int_fast8_t blockflag;
760
    int_fast32_t *map;
761 762
    int_fast32_t n; //TODO: could theoretically be smaller?

763 764 765 766
    for (blockflag = 0; blockflag < 2; ++blockflag) {
        n = vc->blocksize[blockflag] / 2;
        floors[floor_number].data.t0.map[blockflag] =
            av_malloc((n+1) * sizeof(int_fast32_t)); // n + sentinel
767

768 769
        map =  floors[floor_number].data.t0.map[blockflag];
        vf  = &floors[floor_number].data.t0;
770

771 772 773 774 775 776 777 778 779
        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;
780 781 782
    }

#   ifdef V_DEBUG
783
    for (idx = 0; idx <= n; ++idx) {
784 785 786 787 788 789
        AV_DEBUG("floor0 map: map at pos %d is %d\n",
                 idx, map[idx]);
    }
#   endif
}

790 791
static int vorbis_parse_setup_hdr_modes(vorbis_context *vc)
{
792
    GetBitContext *gb = &vc->gb;
793 794
    uint_fast8_t i;

795 796
    vc->mode_count = get_bits(gb, 6) + 1;
    vc->modes      = av_mallocz(vc->mode_count * sizeof(vorbis_mode));
797 798 799

    AV_DEBUG(" There are %d modes.\n", vc->mode_count);

800 801
    for (i = 0; i < vc->mode_count; ++i) {
        vorbis_mode *mode_setup = &vc->modes[i];
802

803 804 805
        mode_setup->blockflag     = get_bits1(gb);
        mode_setup->windowtype    = get_bits(gb, 16); //FIXME check
        mode_setup->transformtype = get_bits(gb, 16); //FIXME check
806
        GET_VALIDATED_INDEX(mode_setup->mapping, 8, vc->mapping_count);
807 808 809 810 811 812 813 814

        AV_DEBUG(" %d mode: blockflag %d, windowtype %d, transformtype %d, mapping %d \n", i, mode_setup->blockflag, mode_setup->windowtype, mode_setup->transformtype, mode_setup->mapping);
    }
    return 0;
}

// Process the whole setup header using the functions above

815 816
static int vorbis_parse_setup_hdr(vorbis_context *vc)
{
817
    GetBitContext *gb = &vc->gb;
818

819 820 821
    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')) {
822
        av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (no vorbis signature). \n");
823
        return -1;
824 825 826 827
    }

    if (vorbis_parse_setup_hdr_codebooks(vc)) {
        av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (codebooks). \n");
828
        return -2;
829 830 831
    }
    if (vorbis_parse_setup_hdr_tdtransforms(vc)) {
        av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (time domain transforms). \n");
832
        return -3;
833 834 835
    }
    if (vorbis_parse_setup_hdr_floors(vc)) {
        av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (floors). \n");
836
        return -4;
837 838 839
    }
    if (vorbis_parse_setup_hdr_residues(vc)) {
        av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (residues). \n");
840
        return -5;
841 842 843
    }
    if (vorbis_parse_setup_hdr_mappings(vc)) {
        av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (mappings). \n");
844
        return -6;
845 846 847
    }
    if (vorbis_parse_setup_hdr_modes(vc)) {
        av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (modes). \n");
848
        return -7;
849 850 851
    }
    if (!get_bits1(gb)) {
        av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (framing flag). \n");
852
        return -8; // framing flag bit unset error
853 854 855 856 857 858 859
    }

    return 0;
}

// Process the identification header

860 861
static int vorbis_parse_id_hdr(vorbis_context *vc)
{
862
    GetBitContext *gb = &vc->gb;
863 864
    uint_fast8_t bl0, bl1;

865 866 867
    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')) {
868
        av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis id header packet corrupt (no vorbis signature). \n");
869
        return -1;
870 871
    }

872 873 874
    vc->version        = get_bits_long(gb, 32);    //FIXME check 0
    vc->audio_channels = get_bits(gb, 8);
    if (vc->audio_channels <= 0) {
875 876 877
        av_log(vc->avccontext, AV_LOG_ERROR, "Invalid number of channels\n");
        return -1;
    }
878 879
    vc->audio_samplerate = get_bits_long(gb, 32);
    if (vc->audio_samplerate <= 0) {
880 881 882
        av_log(vc->avccontext, AV_LOG_ERROR, "Invalid samplerate\n");
        return -1;
    }
883 884 885 886 887 888 889 890
    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) {
891
        av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis id header packet corrupt (illegal blocksize). \n");
892
        return -3;
893 894
    }
    // output format int16
895
    if (vc->blocksize[1] / 2 * vc->audio_channels * 2 > AVCODEC_MAX_AUDIO_FRAME_SIZE) {
896 897
        av_log(vc->avccontext, AV_LOG_ERROR, "Vorbis channel count makes "
               "output packets too large.\n");
898
        return -4;
899
    }
900 901
    vc->win[0] = ff_vorbis_vwin[bl0 - 6];
    vc->win[1] = ff_vorbis_vwin[bl1 - 6];
902 903 904

    if ((get_bits1(gb)) == 0) {
        av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis id header packet corrupt (framing flag not set). \n");
905
        return -2;
906 907
    }

908 909 910 911
    vc->channel_residues =  av_malloc((vc->blocksize[1]  / 2) * vc->audio_channels * sizeof(float));
    vc->channel_floors   =  av_malloc((vc->blocksize[1]  / 2) * vc->audio_channels * sizeof(float));
    vc->saved            =  av_mallocz((vc->blocksize[1] / 4) * vc->audio_channels * sizeof(float));
    vc->previous_window  = 0;
912

913 914
    ff_mdct_init(&vc->mdct[0], bl0, 1, vc->exp_bias ? -(1 << 15) : -1.0);
    ff_mdct_init(&vc->mdct[1], bl1, 1, vc->exp_bias ? -(1 << 15) : -1.0);
915 916 917 918 919

    AV_DEBUG(" vorbis version %d \n audio_channels %d \n audio_samplerate %d \n bitrate_max %d \n bitrate_nom %d \n bitrate_min %d \n blk_0 %d blk_1 %d \n ",
            vc->version, vc->audio_channels, vc->audio_samplerate, vc->bitrate_maximum, vc->bitrate_nominal, vc->bitrate_minimum, vc->blocksize[0], vc->blocksize[1]);

/*
920 921 922
    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)));
923 924 925 926 927 928 929 930
    }
*/

    return 0;
}

// Process the extradata using the functions above (identification header, setup header)

931 932
static av_cold int vorbis_decode_init(AVCodecContext *avccontext)
{
933
    vorbis_context *vc = avccontext->priv_data ;
934 935
    uint8_t *headers   = avccontext->extradata;
    int headers_len    = avccontext->extradata_size;
936 937 938 939 940 941 942 943
    uint8_t *header_start[3];
    int header_len[3];
    GetBitContext *gb = &(vc->gb);
    int hdr_type;

    vc->avccontext = avccontext;
    dsputil_init(&vc->dsp, avccontext);

944
    if (vc->dsp.float_to_int16_interleave == ff_float_to_int16_interleave_c) {
945 946 947 948
        vc->add_bias = 385;
        vc->exp_bias = 0;
    } else {
        vc->add_bias = 0;
949
        vc->exp_bias = 15 << 23;
950 951 952
    }

    if (!headers_len) {
953
        av_log(avccontext, AV_LOG_ERROR, "Extradata missing.\n");
954 955 956 957 958 959 960 961 962
        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);
963 964
    hdr_type = get_bits(gb, 8);
    if (hdr_type != 1) {
965 966 967 968 969 970 971 972 973 974
        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);
975 976
    hdr_type = get_bits(gb, 8);
    if (hdr_type != 5) {
977
        av_log(avccontext, AV_LOG_ERROR, "Third header is not the setup header.\n");
978
        vorbis_free(vc);
979 980 981 982 983 984 985 986
        return -1;
    }
    if (vorbis_parse_setup_hdr(vc)) {
        av_log(avccontext, AV_LOG_ERROR, "Setup header corrupt.\n");
        vorbis_free(vc);
        return -1;
    }

987
    if (vc->audio_channels > 8)
988 989 990 991
        avccontext->channel_layout = 0;
    else
        avccontext->channel_layout = ff_vorbis_channel_layouts[vc->audio_channels - 1];

992
    avccontext->channels    = vc->audio_channels;
993
    avccontext->sample_rate = vc->audio_samplerate;
994 995
    avccontext->frame_size  = FFMIN(vc->blocksize[0], vc->blocksize[1]) >> 2;
    avccontext->sample_fmt  = SAMPLE_FMT_S16;
996 997 998 999 1000 1001 1002 1003 1004

    return 0 ;
}

// Decode audiopackets -------------------------------------------------

// Read and decode floor

static uint_fast8_t vorbis_floor0_decode(vorbis_context *vc,
1005 1006
                                         vorbis_floor_data *vfu, float *vec)
{
1007 1008
    vorbis_floor0 *vf = &vfu->t0;
    float *lsp = vf->lsp;
1009 1010
    uint_fast32_t amplitude;
    uint_fast32_t book_idx;
1011
    uint_fast8_t blockflag = vc->modes[vc->mode_number].blockflag;
1012

1013 1014
    amplitude = get_bits(&vc->gb, vf->amplitude_bits);
    if (amplitude > 0) {
1015 1016 1017 1018 1019
        float last = 0;
        uint_fast16_t lsp_len = 0;
        uint_fast16_t idx;
        vorbis_codebook codebook;

1020 1021 1022 1023 1024
        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;
1025 1026
            //FIXME: look above
        }
1027 1028
        AV_DEBUG("floor0 dec: booknumber: %u\n", book_idx);
        codebook = vc->codebooks[vf->book_list[book_idx]];
1029 1030 1031 1032

        while (lsp_len<vf->order) {
            int vec_off;

1033 1034
            AV_DEBUG("floor0 dec: book dimension: %d\n", codebook.dimensions);
            AV_DEBUG("floor0 dec: maximum depth: %d\n", codebook.maxdepth);
1035
            /* read temp vector */
1036 1037 1038 1039
            vec_off = get_vlc2(&vc->gb, codebook.vlc.table,
                               codebook.nb_bits, codebook.maxdepth)
                      * codebook.dimensions;
            AV_DEBUG("floor0 dec: vector offset: %d\n", vec_off);
1040
            /* copy each vector component and add last to it */
1041 1042 1043
            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 */
1044 1045 1046 1047 1048 1049 1050

            lsp_len += codebook.dimensions;
        }
#ifdef V_DEBUG
        /* DEBUG: output lsp coeffs */
        {
            int idx;
1051 1052
            for (idx = 0; idx < lsp_len; ++idx)
                AV_DEBUG("floor0 dec: coeff at %d is %f\n", idx, lsp[idx]);
1053 1054 1055 1056 1057 1058
        }
#endif

        /* synthesize floor output vector */
        {
            int i;
1059 1060
            int order = vf->order;
            float wstep = M_PI / vf->bark_map_size;
1061

1062 1063
            for (i = 0; i < order; i++)
                lsp[i] = 2.0f * cos(lsp[i]);
1064

1065
            AV_DEBUG("floor0 synth: map_size = %d; m = %d; wstep = %f\n",
1066 1067
                     vf->map_size, order, wstep);

1068 1069 1070 1071 1072 1073
            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
1074 1075

                /* similar part for the q and p products */
1076 1077 1078
                for (j = 0; j + 1 < order; j += 2) {
                    q *= lsp[j]     - two_cos_w;
                    p *= lsp[j + 1] - two_cos_w;
1079
                }
1080 1081 1082
                if (j == order) { // even order
                    p *= p * (2.0f - two_cos_w);
                    q *= q * (2.0f + two_cos_w);
1083
                } else { // odd order
1084 1085 1086
                    q *= two_cos_w-lsp[j]; // one more time for q

                    /* final step and square */
1087
                    p *= p * (4.f - two_cos_w * two_cos_w);
1088 1089 1090 1091 1092
                    q *= q;
                }

                /* calculate linear floor value */
                {
1093 1094 1095
                    q = exp((((amplitude*vf->amplitude_offset) /
                              (((1 << vf->amplitude_bits) - 1) * sqrt(p + q)))
                             - vf->amplitude_offset) * .11512925f);
1096 1097 1098
                }

                /* fill vector */
1099
                do {
1100 1101
                    vec[i] = q; ++i;
                } while (vf->map[blockflag][i] == iter_cond);
1102 1103
            }
        }
1104
    } else {
1105 1106 1107 1108 1109 1110 1111 1112 1113
        /* this channel is unused */
        return 1;
    }

    AV_DEBUG(" Floor0 decoded\n");

    return 0;
}

1114 1115 1116
static uint_fast8_t vorbis_floor1_decode(vorbis_context *vc,
                                         vorbis_floor_data *vfu, float *vec)
{
1117 1118 1119 1120
    vorbis_floor1 *vf = &vfu->t1;
    GetBitContext *gb = &vc->gb;
    uint_fast16_t range_v[4] = { 256, 128, 86, 64 };
    uint_fast16_t range = range_v[vf->multiplier-1];
1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131
    uint_fast16_t floor1_Y[vf->x_list_dim];
    uint_fast16_t floor1_Y_final[vf->x_list_dim];
    int floor1_flag[vf->x_list_dim];
    uint_fast8_t class_;
    uint_fast8_t cdim;
    uint_fast8_t cbits;
    uint_fast8_t csub;
    uint_fast8_t cval;
    int_fast16_t book;
    uint_fast16_t offset;
    uint_fast16_t i,j;
1132
    /*u*/int_fast16_t adx, ady, off, predicted; // WTF ? dy/adx =  (unsigned)dy/adx ?
1133 1134 1135
    int_fast16_t dy, err;


1136 1137
    if (!get_bits1(gb)) // silence
        return 1;
1138 1139 1140

// Read values (or differences) for the floor's points

1141 1142
    floor1_Y[0] = get_bits(gb, ilog(range - 1));
    floor1_Y[1] = get_bits(gb, ilog(range - 1));
1143 1144 1145

    AV_DEBUG("floor 0 Y %d floor 1 Y %d \n", floor1_Y[0], floor1_Y[1]);

1146 1147 1148 1149 1150 1151 1152
    offset = 2;
    for (i = 0; i < vf->partitions; ++i) {
        class_ = vf->partition_class[i];
        cdim   = vf->class_dimensions[class_];
        cbits  = vf->class_subclasses[class_];
        csub = (1 << cbits) - 1;
        cval = 0;
1153 1154 1155

        AV_DEBUG("Cbits %d \n", cbits);

1156
        if (cbits) // this reads all subclasses for this partition's class
1157 1158
            cval = get_vlc2(gb, vc->codebooks[vf->class_masterbook[class_]].vlc.table,
                            vc->codebooks[vf->class_masterbook[class_]].nb_bits, 3);
1159

1160 1161
        for (j = 0; j < cdim; ++j) {
            book = vf->subclass_books[class_][cval & csub];
1162 1163 1164

            AV_DEBUG("book %d Cbits %d cval %d  bits:%d \n", book, cbits, cval, get_bits_count(gb));

1165 1166 1167
            cval = cval >> cbits;
            if (book > -1) {
                floor1_Y[offset+j] = get_vlc2(gb, vc->codebooks[book].vlc.table,
1168 1169
                vc->codebooks[book].nb_bits, 3);
            } else {
1170
                floor1_Y[offset+j] = 0;
1171 1172 1173 1174 1175 1176 1177 1178 1179
            }

            AV_DEBUG(" floor(%d) = %d \n", vf->list[offset+j].x, floor1_Y[offset+j]);
        }
        offset+=cdim;
    }

// Amplitude calculation from the differences

1180 1181 1182 1183
    floor1_flag[0] = 1;
    floor1_flag[1] = 1;
    floor1_Y_final[0] = floor1_Y[0];
    floor1_Y_final[1] = floor1_Y[1];
1184

1185
    for (i = 2; i < vf->x_list_dim; ++i) {
1186 1187 1188 1189
        uint_fast16_t val, highroom, lowroom, room;
        uint_fast16_t high_neigh_offs;
        uint_fast16_t low_neigh_offs;

1190 1191 1192 1193 1194 1195 1196 1197 1198
        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);
        off = (int16_t)err / (int16_t)adx;
        if (dy < 0) {
            predicted = floor1_Y_final[low_neigh_offs] - off;
1199
        } else {
1200
            predicted = floor1_Y_final[low_neigh_offs] + off;
1201 1202
        } // render_point end

1203 1204 1205
        val = floor1_Y[i];
        highroom = range-predicted;
        lowroom  = predicted;
1206
        if (highroom < lowroom) {
1207
            room = highroom * 2;
1208
        } else {
1209
            room = lowroom * 2;   // SPEC mispelling
1210 1211
        }
        if (val) {
1212 1213 1214 1215
            floor1_flag[low_neigh_offs]  = 1;
            floor1_flag[high_neigh_offs] = 1;
            floor1_flag[i]               = 1;
            if (val >= room) {
1216
                if (highroom > lowroom) {
1217
                    floor1_Y_final[i] = val - lowroom + predicted;
1218
                } else {
1219
                    floor1_Y_final[i] = predicted - val + highroom - 1;
1220 1221 1222
                }
            } else {
                if (val & 1) {
1223
                    floor1_Y_final[i] = predicted - (val + 1) / 2;
1224
                } else {
1225
                    floor1_Y_final[i] = predicted + val / 2;
1226 1227 1228
                }
            }
        } else {
1229 1230
            floor1_flag[i]    = 0;
            floor1_Y_final[i] = predicted;
1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246
        }

        AV_DEBUG(" Decoded floor(%d) = %d / val %d \n", vf->list[i].x, floor1_Y_final[i], val);
    }

// 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);

    AV_DEBUG(" Floor decoded\n");

    return 0;
}

// Read and decode residue

1247 1248 1249 1250 1251
static av_always_inline int vorbis_residue_decode_internal(vorbis_context *vc,
                                                           vorbis_residue *vr,
                                                           uint_fast8_t ch,
                                                           uint_fast8_t *do_not_decode,
                                                           float *vec,
1252 1253
                                                           uint_fast16_t vlen,
                                                           int vr_type)
1254
{
1255 1256 1257 1258
    GetBitContext *gb = &vc->gb;
    uint_fast8_t c_p_c = vc->codebooks[vr->classbook].dimensions;
    uint_fast16_t n_to_read = vr->end-vr->begin;
    uint_fast16_t ptns_to_read = n_to_read/vr->partition_size;
1259 1260 1261 1262 1263 1264
    uint_fast8_t classifs[ptns_to_read*vc->audio_channels];
    uint_fast8_t pass;
    uint_fast8_t ch_used;
    uint_fast8_t i,j,l;
    uint_fast16_t k;

1265 1266 1267
    if (vr_type == 2) {
        for (j = 1; j < ch; ++j)
            do_not_decode[0] &= do_not_decode[j];  // FIXME - clobbering input
1268 1269
        if (do_not_decode[0])
            return 0;
1270
        ch_used = 1;
1271
    } else {
1272
        ch_used = ch;
1273 1274 1275 1276
    }

    AV_DEBUG(" residue type 0/1/2 decode begin, ch: %d  cpc %d  \n", ch, c_p_c);

1277
    for (pass = 0; pass <= vr->maxpass; ++pass) { // FIXME OPTIMIZE?
1278 1279 1280 1281
        uint_fast16_t voffset;
        uint_fast16_t partition_count;
        uint_fast16_t j_times_ptns_to_read;

1282 1283
        voffset = vr->begin;
        for (partition_count = 0; partition_count < ptns_to_read;) {  // SPEC        error
1284 1285
            if (!pass) {
                uint_fast32_t inverse_class = ff_inverse[vr->classifications];
1286
                for (j_times_ptns_to_read = 0, j = 0; j < ch_used; ++j) {
1287
                    if (!do_not_decode[j]) {
1288
                        uint_fast32_t temp = get_vlc2(gb, vc->codebooks[vr->classbook].vlc.table,
1289 1290 1291 1292
                        vc->codebooks[vr->classbook].nb_bits, 3);

                        AV_DEBUG("Classword: %d \n", temp);

1293 1294
                        assert(vr->classifications > 1 && temp <= 65536); //needed for inverse[]
                        for (i = 0; i < c_p_c; ++i) {
1295 1296
                            uint_fast32_t temp2;

1297 1298 1299 1300
                            temp2 = (((uint_fast64_t)temp) * inverse_class) >> 32;
                            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;
1301 1302
                        }
                    }
1303
                    j_times_ptns_to_read += ptns_to_read;
1304 1305
                }
            }
1306 1307
            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) {
1308 1309 1310
                    uint_fast16_t voffs;

                    if (!do_not_decode[j]) {
1311 1312
                        uint_fast8_t vqclass = classifs[j_times_ptns_to_read+partition_count];
                        int_fast16_t vqbook = vr->books[vqclass][pass];
1313

1314
                        if (vqbook >= 0 && vc->codebooks[vqbook].codevectors) {
1315
                            uint_fast16_t coffs;
1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327
                            unsigned dim =  vc->codebooks[vqbook].dimensions; // not uint_fast8_t: 64bit is slower here on amd64
                            uint_fast16_t step = dim == 1 ? vr->partition_size
                                                          : FASTDIV(vr->partition_size, dim);
                            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
1328
                                }
1329 1330 1331 1332 1333
                            } 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) {
1334 1335 1336 1337 1338
                                        vec[voffs]+=codebook.codevectors[coffs+l];  // FPMATH

                                        AV_DEBUG(" pass %d offs: %d curr: %f change: %f cv offs.: %d  \n", pass, voffs, vec[voffs], codebook.codevectors[coffs+l], coffs);
                                    }
                                }
1339 1340 1341 1342 1343 1344 1345 1346
                            } 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
1347
                                    }
1348 1349 1350 1351 1352 1353 1354
                                } 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
1355
                                    }
1356
                                } else
1357 1358 1359 1360 1361
                                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
1362

1363
                                        AV_DEBUG(" pass %d offs: %d curr: %f change: %f cv offs.: %d+%d  \n", pass, voffset / ch + (voffs % ch) * vlen, vec[voffset / ch + (voffs % ch) * vlen], codebook.codevectors[coffs + l], coffs, l);
1364 1365 1366
                                    }
                                }

1367 1368
                            } else if (vr_type == 2) {
                                voffs = voffset;
1369

1370 1371 1372 1373
                                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 %
1374

1375
                                        AV_DEBUG(" pass %d offs: %d curr: %f change: %f cv offs.: %d+%d  \n", pass, voffset / ch + (voffs % ch) * vlen, vec[voffset / ch + (voffs % ch) * vlen], codebook.codevectors[coffs + l], coffs, l);
1376 1377 1378 1379 1380
                                    }
                                }
                            }
                        }
                    }
1381
                    j_times_ptns_to_read += ptns_to_read;
1382 1383
                }
                ++partition_count;
1384
                voffset += vr->partition_size;
1385 1386 1387 1388 1389 1390
            }
        }
    }
    return 0;
}

1391 1392 1393 1394
static inline int vorbis_residue_decode(vorbis_context *vc, vorbis_residue *vr,
                                        uint_fast8_t ch,
                                        uint_fast8_t *do_not_decode,
                                        float *vec, uint_fast16_t vlen)
1395
{
1396
    if (vr->type == 2)
1397
        return vorbis_residue_decode_internal(vc, vr, ch, do_not_decode, vec, vlen, 2);
1398
    else if (vr->type == 1)
1399
        return vorbis_residue_decode_internal(vc, vr, ch, do_not_decode, vec, vlen, 1);
1400
    else if (vr->type == 0)
1401 1402 1403
        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");
1404
        return -1;
1405 1406 1407
    }
}

1408 1409 1410
void vorbis_inverse_coupling(float *mag, float *ang, int blocksize)
{
    int i;
1411 1412 1413 1414
    for (i = 0;  i < blocksize;  i++) {
        if (mag[i] > 0.0) {
            if (ang[i] > 0.0) {
                ang[i] = mag[i] - ang[i];
1415
            } else {
1416 1417 1418
                float temp = ang[i];
                ang[i]     = mag[i];
                mag[i]    += temp;
1419 1420
            }
        } else {
1421 1422
            if (ang[i] > 0.0) {
                ang[i] += mag[i];
1423
            } else {
1424 1425 1426
                float temp = ang[i];
                ang[i]     = mag[i];
                mag[i]    -= temp;
1427 1428 1429 1430 1431
            }
        }
    }
}

1432 1433
static void copy_normalize(float *dst, float *src, int len, int exp_bias,
                           float add_bias)
1434 1435
{
    int i;
1436
    if (exp_bias) {
1437
        memcpy(dst, src, len * sizeof(float));
1438
    } else {
1439
        for (i = 0; i < len; i++)
1440 1441 1442 1443
            dst[i] = src[i] + add_bias;
    }
}

1444 1445
// Decode the audio packet using the functions above

1446 1447
static int vorbis_parse_audio_packet(vorbis_context *vc)
{
1448
    GetBitContext *gb = &vc->gb;
1449

1450
    uint_fast8_t previous_window = vc->previous_window;
1451
    uint_fast8_t mode_number;
1452
    uint_fast8_t blockflag;
1453
    uint_fast16_t blocksize;
1454
    int_fast32_t i,j;
1455 1456 1457
    uint_fast8_t no_residue[vc->audio_channels];
    uint_fast8_t do_not_decode[vc->audio_channels];
    vorbis_mapping *mapping;
1458 1459
    float *ch_res_ptr   = vc->channel_residues;
    float *ch_floor_ptr = vc->channel_floors;
1460
    uint_fast8_t res_chan[vc->audio_channels];
1461 1462
    uint_fast8_t res_num = 0;
    int_fast16_t retlen  = 0;
1463 1464 1465 1466 1467 1468 1469
    float fadd_bias = vc->add_bias;

    if (get_bits1(gb)) {
        av_log(vc->avccontext, AV_LOG_ERROR, "Not a Vorbis I audio packet.\n");
        return -1; // packet type not audio
    }

1470 1471
    if (vc->mode_count == 1) {
        mode_number = 0;
1472
    } else {
1473
        GET_VALIDATED_INDEX(mode_number, ilog(vc->mode_count-1), vc->mode_count)
1474
    }
1475 1476
    vc->mode_number = mode_number;
    mapping = &vc->mappings[vc->modes[mode_number].mapping];
1477 1478 1479

    AV_DEBUG(" Mode number: %d , mapping: %d , blocktype %d \n", mode_number, vc->modes[mode_number].mapping, vc->modes[mode_number].blockflag);

1480 1481
    blockflag = vc->modes[mode_number].blockflag;
    blocksize = vc->blocksize[blockflag];
1482
    if (blockflag)
1483
        skip_bits(gb, 2); // previous_window, next_window
1484

1485 1486
    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 ?
1487 1488 1489

// Decode floor

1490
    for (i = 0; i < vc->audio_channels; ++i) {
1491
        vorbis_floor *floor;
1492 1493
        if (mapping->submaps > 1) {
            floor = &vc->floors[mapping->submap_floor[mapping->mux[i]]];
1494
        } else {
1495
            floor = &vc->floors[mapping->submap_floor[0]];
1496 1497
        }

1498 1499
        no_residue[i] = floor->decode(vc, &floor->data, ch_floor_ptr);
        ch_floor_ptr += blocksize / 2;
1500 1501 1502 1503
    }

// Nonzero vector propagate

1504
    for (i = mapping->coupling_steps - 1; i >= 0; --i) {
1505
        if (!(no_residue[mapping->magnitude[i]] & no_residue[mapping->angle[i]])) {
1506 1507
            no_residue[mapping->magnitude[i]] = 0;
            no_residue[mapping->angle[i]]     = 0;
1508 1509 1510 1511 1512
        }
    }

// Decode residue

1513
    for (i = 0; i < mapping->submaps; ++i) {
1514
        vorbis_residue *residue;
1515
        uint_fast8_t ch = 0;
1516

1517 1518 1519
        for (j = 0; j < vc->audio_channels; ++j) {
            if ((mapping->submaps == 1) || (i == mapping->mux[j])) {
                res_chan[j] = res_num;
1520
                if (no_residue[j]) {
1521
                    do_not_decode[ch] = 1;
1522
                } else {
1523
                    do_not_decode[ch] = 0;
1524 1525 1526 1527 1528
                }
                ++ch;
                ++res_num;
            }
        }
1529
        residue = &vc->residues[mapping->submap_residue[i]];
1530 1531
        vorbis_residue_decode(vc, residue, ch, do_not_decode, ch_res_ptr, blocksize/2);

1532
        ch_res_ptr += ch * blocksize / 2;
1533 1534 1535 1536
    }

// Inverse coupling

1537
    for (i = mapping->coupling_steps - 1; i >= 0; --i) { //warning: i has to be signed
1538 1539
        float *mag, *ang;

1540 1541 1542
        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);
1543 1544
    }

1545
// Dotproduct, MDCT
1546

1547 1548 1549 1550
    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;
        vc->dsp.vector_fmul(ch_floor_ptr, ch_res_ptr, blocksize / 2);
1551
        ff_imdct_half(&vc->mdct[blockflag], ch_res_ptr, ch_floor_ptr);
1552 1553
    }

1554
// Overlap/add, save data for next overlapping  FPMATH
1555

1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569
    retlen = (blocksize + vc->blocksize[previous_window]) / 4;
    for (j = 0; j < vc->audio_channels; j++) {
        uint_fast16_t bs0 = vc->blocksize[0];
        uint_fast16_t bs1 = vc->blocksize[1];
        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) {
            vc->dsp.vector_fmul_window(ret, saved, buf, win, fadd_bias, blocksize / 4);
        } else if (blockflag > previous_window) {
            vc->dsp.vector_fmul_window(ret, saved, buf, win, fadd_bias, bs0 / 4);
Loren Merritt's avatar
Loren Merritt committed
1570
            copy_normalize(ret+bs0/2, buf+bs0/4, (bs1-bs0)/4, vc->exp_bias, fadd_bias);
1571
        } else {
1572 1573
            copy_normalize(ret, saved, (bs1 - bs0) / 4, vc->exp_bias, fadd_bias);
            vc->dsp.vector_fmul_window(ret + (bs1 - bs0) / 4, saved + (bs1 - bs0) / 4, buf, win, fadd_bias, bs0 / 4);
1574
        }
1575
        memcpy(saved, buf + blocksize / 4, blocksize / 4 * sizeof(float));
1576 1577
    }

1578 1579
    vc->previous_window = blockflag;
    return retlen;
1580 1581 1582 1583 1584
}

// Return the decoded audio packet through the standard api

static int vorbis_decode_frame(AVCodecContext *avccontext,
1585 1586
                               void *data, int *data_size,
                               AVPacket *avpkt)
1587
{
1588
    const uint8_t *buf = avpkt->data;
1589
    int buf_size       = avpkt->size;
1590 1591
    vorbis_context *vc = avccontext->priv_data ;
    GetBitContext *gb = &(vc->gb);
1592 1593
    const float *channel_ptrs[vc->audio_channels];
    int i;
1594 1595 1596

    int_fast16_t len;

1597
    if (!buf_size)
1598 1599 1600 1601 1602 1603
        return 0;

    AV_DEBUG("packet length %d \n", buf_size);

    init_get_bits(gb, buf, buf_size*8);

1604
    len = vorbis_parse_audio_packet(vc);
1605

1606 1607
    if (len <= 0) {
        *data_size = 0;
1608 1609 1610 1611
        return buf_size;
    }

    if (!vc->first_frame) {
1612 1613
        vc->first_frame = 1;
        *data_size = 0;
1614 1615 1616 1617 1618
        return buf_size ;
    }

    AV_DEBUG("parsed %d bytes %d bits, returned %d samples (*ch*bits) \n", get_bits_count(gb)/8, get_bits_count(gb)%8, len);

1619
    if (vc->audio_channels > 8) {
1620 1621
        for (i = 0; i < vc->audio_channels; i++)
            channel_ptrs[i] = vc->channel_floors + i * len;
1622 1623 1624 1625 1626 1627
    } 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];
    }

1628
    vc->dsp.float_to_int16_interleave(data, channel_ptrs, len, vc->audio_channels);
1629
    *data_size = len * 2 * vc->audio_channels;
1630 1631 1632 1633 1634 1635

    return buf_size ;
}

// Close decoder

1636 1637
static av_cold int vorbis_decode_close(AVCodecContext *avccontext)
{
1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653
    vorbis_context *vc = avccontext->priv_data;

    vorbis_free(vc);

    return 0 ;
}

AVCodec vorbis_decoder = {
    "vorbis",
    CODEC_TYPE_AUDIO,
    CODEC_ID_VORBIS,
    sizeof(vorbis_context),
    vorbis_decode_init,
    NULL,
    vorbis_decode_close,
    vorbis_decode_frame,
1654
    .long_name = NULL_IF_CONFIG_SMALL("Vorbis"),
1655
    .channel_layouts = ff_vorbis_channel_layouts,
1656 1657
};