vorbis_enc.c 34.3 KB
Newer Older
Oded Shimon's avatar
Oded Shimon committed
1 2 3
/*
 * copyright (c) 2006 Oded Shimon <ods15@ods15.dyndns.org>
 *
4 5 6
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
Oded Shimon's avatar
Oded Shimon committed
7 8
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
9
 * version 2.1 of the License, or (at your option) any later version.
Oded Shimon's avatar
Oded Shimon committed
10
 *
11
 * FFmpeg is distributed in the hope that it will be useful,
Oded Shimon's avatar
Oded Shimon committed
12 13 14 15 16
 * 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
17
 * License along with FFmpeg; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Oded Shimon's avatar
Oded Shimon committed
19 20 21
 */

/**
22
 * @file
Oded Shimon's avatar
Oded Shimon committed
23 24 25 26
 * Native Vorbis encoder.
 * @author Oded Shimon <ods15@ods15.dyndns.org>
 */

27
#include <float.h>
Oded Shimon's avatar
Oded Shimon committed
28
#include "avcodec.h"
29
#include "dsputil.h"
30
#include "fft.h"
31
#include "vorbis.h"
32
#include "vorbis_enc_data.h"
33

34
#define BITSTREAM_WRITER_LE
35
#include "put_bits.h"
36

Oded Shimon's avatar
Oded Shimon committed
37 38 39
#undef NDEBUG
#include <assert.h>

40 41
typedef struct {
    int nentries;
42 43
    uint8_t *lens;
    uint32_t *codewords;
44 45 46 47 48
    int ndimentions;
    float min;
    float delta;
    int seq_p;
    int lookup;
49 50 51
    int *quantlist;
    float *dimentions;
    float *pow2;
52
} vorbis_enc_codebook;
53

54
typedef struct {
55 56 57
    int dim;
    int subclass;
    int masterbook;
58
    int *books;
59
} vorbis_enc_floor_class;
60 61 62

typedef struct {
    int partitions;
63
    int *partition_to_class;
64
    int nclasses;
65
    vorbis_enc_floor_class *classes;
66 67 68
    int multiplier;
    int rangebits;
    int values;
69
    vorbis_floor1_entry *list;
70
} vorbis_enc_floor;
71 72

typedef struct {
73 74 75 76 77 78
    int type;
    int begin;
    int end;
    int partition_size;
    int classifications;
    int classbook;
79
    int8_t (*books)[8];
80
    float (*maxes)[2];
81
} vorbis_enc_residue;
82 83

typedef struct {
84
    int submaps;
85 86 87
    int *mux;
    int *floor;
    int *residue;
88
    int coupling_steps;
89 90
    int *magnitude;
    int *angle;
91
} vorbis_enc_mapping;
92

93 94 95
typedef struct {
    int blockflag;
    int mapping;
96
} vorbis_enc_mode;
97

98
typedef struct {
99 100
    int channels;
    int sample_rate;
101
    int log2_blocksize[2];
102
    FFTContext mdct[2];
103
    const float *win[2];
104
    int have_saved;
105 106 107 108
    float *saved;
    float *samples;
    float *floor;  // also used for tmp values for mdct
    float *coeffs; // also used for residue after floor
109
    float quality;
110

111
    int ncodebooks;
112
    vorbis_enc_codebook *codebooks;
113 114

    int nfloors;
115
    vorbis_enc_floor *floors;
116 117

    int nresidues;
118
    vorbis_enc_residue *residues;
119 120

    int nmappings;
121
    vorbis_enc_mapping *mappings;
122 123

    int nmodes;
124
    vorbis_enc_mode *modes;
125 126

    int64_t sample_count;
127
} vorbis_enc_context;
Oded Shimon's avatar
Oded Shimon committed
128

129
static inline void put_codeword(PutBitContext *pb, vorbis_enc_codebook *cb,
130 131
                                int entry)
{
132 133 134 135 136 137
    assert(entry >= 0);
    assert(entry < cb->nentries);
    assert(cb->lens[entry]);
    put_bits(pb, cb->lens[entry], cb->codewords[entry]);
}

138 139 140 141 142
static int cb_lookup_vals(int lookup, int dimentions, int entries)
{
    if (lookup == 1)
        return ff_vorbis_nth_root(entries, dimentions);
    else if (lookup == 2)
143
        return dimentions *entries;
144 145 146
    return 0;
}

147
static void ready_codebook(vorbis_enc_codebook *cb)
148
{
149 150
    int i;

151
    ff_vorbis_len2vlc(cb->lens, cb->codewords, cb->nentries);
152

153
    if (!cb->lookup) {
154
        cb->pow2 = cb->dimentions = NULL;
155
    } else {
156 157
        int vals = cb_lookup_vals(cb->lookup, cb->ndimentions, cb->nentries);
        cb->dimentions = av_malloc(sizeof(float) * cb->nentries * cb->ndimentions);
158
        cb->pow2 = av_mallocz(sizeof(float) * cb->nentries);
159 160 161 162 163 164
        for (i = 0; i < cb->nentries; i++) {
            float last = 0;
            int j;
            int div = 1;
            for (j = 0; j < cb->ndimentions; j++) {
                int off;
165 166 167 168
                if (cb->lookup == 1)
                    off = (i / div) % vals; // lookup type 1
                else
                    off = i * cb->ndimentions + j; // lookup type 2
169 170

                cb->dimentions[i * cb->ndimentions + j] = last + cb->min + cb->quantlist[off] * cb->delta;
171 172
                if (cb->seq_p)
                    last = cb->dimentions[i * cb->ndimentions + j];
173
                cb->pow2[i] += cb->dimentions[i * cb->ndimentions + j] * cb->dimentions[i * cb->ndimentions + j];
174 175
                div *= vals;
            }
176
            cb->pow2[i] /= 2.;
177 178 179 180
        }
    }
}

181
static void ready_residue(vorbis_enc_residue *rc, vorbis_enc_context *venc)
182
{
183 184 185 186 187
    int i;
    assert(rc->type == 2);
    rc->maxes = av_mallocz(sizeof(float[2]) * rc->classifications);
    for (i = 0; i < rc->classifications; i++) {
        int j;
188
        vorbis_enc_codebook * cb;
189
        for (j = 0; j < 8; j++)
190 191
            if (rc->books[i][j] != -1)
                break;
192 193
        if (j == 8) // zero
            continue;
194 195 196 197 198 199
        cb = &venc->codebooks[rc->books[i][j]];
        assert(cb->ndimentions >= 2);
        assert(cb->lookup);

        for (j = 0; j < cb->nentries; j++) {
            float a;
200 201
            if (!cb->lens[j])
                continue;
202
            a = fabs(cb->dimentions[j * cb->ndimentions]);
203 204
            if (a > rc->maxes[i][0])
                rc->maxes[i][0] = a;
205
            a = fabs(cb->dimentions[j * cb->ndimentions + 1]);
206 207
            if (a > rc->maxes[i][1])
                rc->maxes[i][1] = a;
208 209 210 211 212 213 214 215 216
        }
    }
    // small bias
    for (i = 0; i < rc->classifications; i++) {
        rc->maxes[i][0] += 0.8;
        rc->maxes[i][1] += 0.8;
    }
}

217 218
static void create_vorbis_context(vorbis_enc_context *venc,
                                  AVCodecContext *avccontext)
219
{
220 221 222
    vorbis_enc_floor   *fc;
    vorbis_enc_residue *rc;
    vorbis_enc_mapping *mc;
223
    int i, book;
224

225
    venc->channels    = avccontext->channels;
226
    venc->sample_rate = avccontext->sample_rate;
227
    venc->log2_blocksize[0] = venc->log2_blocksize[1] = 11;
228

229
    venc->ncodebooks = FF_ARRAY_ELEMS(cvectors);
230
    venc->codebooks  = av_malloc(sizeof(vorbis_enc_codebook) * venc->ncodebooks);
231

232
    // codebook 0..14 - floor1 book, values 0..255
233 234 235
    // codebook 15 residue masterbook
    // codebook 16..29 residue
    for (book = 0; book < venc->ncodebooks; book++) {
236
        vorbis_enc_codebook *cb = &venc->codebooks[book];
237 238
        int vals;
        cb->ndimentions = cvectors[book].dim;
239 240 241 242 243
        cb->nentries    = cvectors[book].real_len;
        cb->min         = cvectors[book].min;
        cb->delta       = cvectors[book].delta;
        cb->lookup      = cvectors[book].lookup;
        cb->seq_p       = 0;
244

245
        cb->lens      = av_malloc(sizeof(uint8_t)  * cb->nentries);
246 247 248 249
        cb->codewords = av_malloc(sizeof(uint32_t) * cb->nentries);
        memcpy(cb->lens, cvectors[book].clens, cvectors[book].len);
        memset(cb->lens + cvectors[book].len, 0, cb->nentries - cvectors[book].len);

250 251 252
        if (cb->lookup) {
            vals = cb_lookup_vals(cb->lookup, cb->ndimentions, cb->nentries);
            cb->quantlist = av_malloc(sizeof(int) * vals);
253 254
            for (i = 0; i < vals; i++)
                cb->quantlist[i] = cvectors[book].quant[i];
255 256 257
        } else {
            cb->quantlist = NULL;
        }
258 259
        ready_codebook(cb);
    }
260

261
    venc->nfloors = 1;
262
    venc->floors  = av_malloc(sizeof(vorbis_enc_floor) * venc->nfloors);
263

264 265
    // just 1 floor
    fc = &venc->floors[0];
266
    fc->partitions         = 8;
267
    fc->partition_to_class = av_malloc(sizeof(int) * fc->partitions);
268
    fc->nclasses           = 0;
269
    for (i = 0; i < fc->partitions; i++) {
270
        static const int a[] = {0, 1, 2, 2, 3, 3, 4, 4};
271 272 273 274
        fc->partition_to_class[i] = a[i];
        fc->nclasses = FFMAX(fc->nclasses, fc->partition_to_class[i]);
    }
    fc->nclasses++;
275
    fc->classes = av_malloc(sizeof(vorbis_enc_floor_class) * fc->nclasses);
276
    for (i = 0; i < fc->nclasses; i++) {
277
        vorbis_enc_floor_class * c = &fc->classes[i];
278
        int j, books;
279 280
        c->dim        = floor_classes[i].dim;
        c->subclass   = floor_classes[i].subclass;
281
        c->masterbook = floor_classes[i].masterbook;
282 283
        books         = (1 << c->subclass);
        c->books      = av_malloc(sizeof(int) * books);
284 285
        for (j = 0; j < books; j++)
            c->books[j] = floor_classes[i].nbooks[j];
286
    }
287
    fc->multiplier = 2;
288
    fc->rangebits  = venc->log2_blocksize[0] - 1;
289 290 291 292 293

    fc->values = 2;
    for (i = 0; i < fc->partitions; i++)
        fc->values += fc->classes[fc->partition_to_class[i]].dim;

294
    fc->list = av_malloc(sizeof(vorbis_floor1_entry) * fc->values);
295 296
    fc->list[0].x = 0;
    fc->list[1].x = 1 << fc->rangebits;
297
    for (i = 2; i < fc->values; i++) {
298 299 300 301 302
        static const int a[] = {
             93, 23,372,  6, 46,186,750, 14, 33, 65,
            130,260,556,  3, 10, 18, 28, 39, 55, 79,
            111,158,220,312,464,650,850
        };
303
        fc->list[i].x = a[i - 2];
304
    }
305
    ff_vorbis_ready_floor1_list(fc->list, fc->values);
306 307

    venc->nresidues = 1;
308
    venc->residues  = av_malloc(sizeof(vorbis_enc_residue) * venc->nresidues);
309

310 311
    // single residue
    rc = &venc->residues[0];
312 313 314 315
    rc->type            = 2;
    rc->begin           = 0;
    rc->end             = 1600;
    rc->partition_size  = 32;
316
    rc->classifications = 10;
317 318
    rc->classbook       = 15;
    rc->books           = av_malloc(sizeof(*rc->books) * rc->classifications);
319 320
    {
        static const int8_t a[10][8] = {
321 322 323 324 325 326 327 328 329 330 331
            { -1, -1, -1, -1, -1, -1, -1, -1, },
            { -1, -1, 16, -1, -1, -1, -1, -1, },
            { -1, -1, 17, -1, -1, -1, -1, -1, },
            { -1, -1, 18, -1, -1, -1, -1, -1, },
            { -1, -1, 19, -1, -1, -1, -1, -1, },
            { -1, -1, 20, -1, -1, -1, -1, -1, },
            { -1, -1, 21, -1, -1, -1, -1, -1, },
            { 22, 23, -1, -1, -1, -1, -1, -1, },
            { 24, 25, -1, -1, -1, -1, -1, -1, },
            { 26, 27, 28, -1, -1, -1, -1, -1, },
        };
332
        memcpy(rc->books, a, sizeof a);
333
    }
334
    ready_residue(rc, venc);
335

336
    venc->nmappings = 1;
337
    venc->mappings  = av_malloc(sizeof(vorbis_enc_mapping) * venc->nmappings);
338

339 340 341
    // single mapping
    mc = &venc->mappings[0];
    mc->submaps = 1;
342
    mc->mux     = av_malloc(sizeof(int) * venc->channels);
343 344
    for (i = 0; i < venc->channels; i++)
        mc->mux[i] = 0;
345
    mc->floor   = av_malloc(sizeof(int) * mc->submaps);
346 347
    mc->residue = av_malloc(sizeof(int) * mc->submaps);
    for (i = 0; i < mc->submaps; i++) {
348
        mc->floor[i]   = 0;
349 350
        mc->residue[i] = 0;
    }
351
    mc->coupling_steps = venc->channels == 2 ? 1 : 0;
352 353
    mc->magnitude      = av_malloc(sizeof(int) * mc->coupling_steps);
    mc->angle          = av_malloc(sizeof(int) * mc->coupling_steps);
354 355
    if (mc->coupling_steps) {
        mc->magnitude[0] = 0;
356
        mc->angle[0]     = 1;
357
    }
358

359
    venc->nmodes = 1;
360
    venc->modes  = av_malloc(sizeof(vorbis_enc_mode) * venc->nmodes);
361 362 363

    // single mode
    venc->modes[0].blockflag = 0;
364
    venc->modes[0].mapping   = 0;
365

366
    venc->have_saved = 0;
367 368 369 370
    venc->saved      = av_malloc(sizeof(float) * venc->channels * (1 << venc->log2_blocksize[1]) / 2);
    venc->samples    = av_malloc(sizeof(float) * venc->channels * (1 << venc->log2_blocksize[1]));
    venc->floor      = av_malloc(sizeof(float) * venc->channels * (1 << venc->log2_blocksize[1]) / 2);
    venc->coeffs     = av_malloc(sizeof(float) * venc->channels * (1 << venc->log2_blocksize[1]) / 2);
371

372 373
    venc->win[0] = ff_vorbis_vwin[venc->log2_blocksize[0] - 6];
    venc->win[1] = ff_vorbis_vwin[venc->log2_blocksize[1] - 6];
374

375 376
    ff_mdct_init(&venc->mdct[0], venc->log2_blocksize[0], 0, 1.0);
    ff_mdct_init(&venc->mdct[1], venc->log2_blocksize[1], 0, 1.0);
377 378
}

379
static void put_float(PutBitContext *pb, float f)
380
{
381 382 383 384
    int exp, mant;
    uint32_t res = 0;
    mant = (int)ldexp(frexp(f, &exp), 20);
    exp += 788 - 20;
385 386 387 388
    if (mant < 0) {
        res |= (1 << 31);
        mant = -mant;
    }
389
    res |= mant | (exp << 21);
390
    put_bits32(pb, res);
391 392
}

393
static void put_codebook_header(PutBitContext *pb, vorbis_enc_codebook *cb)
394
{
395 396 397 398 399 400 401
    int i;
    int ordered = 0;

    put_bits(pb, 24, 0x564342); //magic
    put_bits(pb, 16, cb->ndimentions);
    put_bits(pb, 24, cb->nentries);

402
    for (i = 1; i < cb->nentries; i++)
403 404
        if (cb->lens[i] < cb->lens[i-1])
            break;
405 406
    if (i == cb->nentries)
        ordered = 1;
407 408 409

    put_bits(pb, 1, ordered);
    if (ordered) {
410
        int len = cb->lens[0];
411
        put_bits(pb, 5, len - 1);
412 413
        i = 0;
        while (i < cb->nentries) {
414
            int j;
415
            for (j = 0; j+i < cb->nentries; j++)
416 417
                if (cb->lens[j+i] != len)
                    break;
418
            put_bits(pb, ilog(cb->nentries - i), j);
419 420 421 422 423
            i += j;
            len++;
        }
    } else {
        int sparse = 0;
424
        for (i = 0; i < cb->nentries; i++)
425 426
            if (!cb->lens[i])
                break;
427 428
        if (i != cb->nentries)
            sparse = 1;
429 430 431
        put_bits(pb, 1, sparse);

        for (i = 0; i < cb->nentries; i++) {
432 433 434 435
            if (sparse)
                put_bits(pb, 1, !!cb->lens[i]);
            if (cb->lens[i])
                put_bits(pb, 5, cb->lens[i] - 1);
436 437 438 439 440
        }
    }

    put_bits(pb, 4, cb->lookup);
    if (cb->lookup) {
441
        int tmp  = cb_lookup_vals(cb->lookup, cb->ndimentions, cb->nentries);
442
        int bits = ilog(cb->quantlist[0]);
443

444 445
        for (i = 1; i < tmp; i++)
            bits = FFMAX(bits, ilog(cb->quantlist[i]));
446

447 448
        put_float(pb, cb->min);
        put_float(pb, cb->delta);
449

450 451
        put_bits(pb, 4, bits - 1);
        put_bits(pb, 1, cb->seq_p);
452

453 454
        for (i = 0; i < tmp; i++)
            put_bits(pb, bits, cb->quantlist[i]);
455 456 457
    }
}

458
static void put_floor_header(PutBitContext *pb, vorbis_enc_floor *fc)
459
{
460 461 462 463 464 465
    int i;

    put_bits(pb, 16, 1); // type, only floor1 is supported

    put_bits(pb, 5, fc->partitions);

466 467
    for (i = 0; i < fc->partitions; i++)
        put_bits(pb, 4, fc->partition_to_class[i]);
468 469 470 471 472 473 474

    for (i = 0; i < fc->nclasses; i++) {
        int j, books;

        put_bits(pb, 3, fc->classes[i].dim - 1);
        put_bits(pb, 2, fc->classes[i].subclass);

475 476
        if (fc->classes[i].subclass)
            put_bits(pb, 8, fc->classes[i].masterbook);
477 478 479

        books = (1 << fc->classes[i].subclass);

480 481
        for (j = 0; j < books; j++)
            put_bits(pb, 8, fc->classes[i].books[j] + 1);
482 483 484 485 486
    }

    put_bits(pb, 2, fc->multiplier - 1);
    put_bits(pb, 4, fc->rangebits);

487 488
    for (i = 2; i < fc->values; i++)
        put_bits(pb, fc->rangebits, fc->list[i].x);
489 490
}

491
static void put_residue_header(PutBitContext *pb, vorbis_enc_residue *rc)
492
{
493 494 495 496 497 498 499
    int i;

    put_bits(pb, 16, rc->type);

    put_bits(pb, 24, rc->begin);
    put_bits(pb, 24, rc->end);
    put_bits(pb, 24, rc->partition_size - 1);
500
    put_bits(pb, 6, rc->classifications - 1);
501 502 503 504
    put_bits(pb, 8, rc->classbook);

    for (i = 0; i < rc->classifications; i++) {
        int j, tmp = 0;
505 506
        for (j = 0; j < 8; j++)
            tmp |= (rc->books[i][j] != -1) << j;
507 508 509 510

        put_bits(pb, 3, tmp & 7);
        put_bits(pb, 1, tmp > 7);

511 512
        if (tmp > 7)
            put_bits(pb, 5, tmp >> 3);
513 514 515 516 517
    }

    for (i = 0; i < rc->classifications; i++) {
        int j;
        for (j = 0; j < 8; j++)
518
            if (rc->books[i][j] != -1)
519 520
                put_bits(pb, 8, rc->books[i][j]);
    }
521 522
}

523
static int put_main_header(vorbis_enc_context *venc, uint8_t **out)
524
{
525
    int i;
526
    PutBitContext pb;
527
    uint8_t buffer[50000] = {0}, *p = buffer;
528 529 530 531 532 533
    int buffer_len = sizeof buffer;
    int len, hlens[3];

    // identification header
    init_put_bits(&pb, p, buffer_len);
    put_bits(&pb, 8, 1); //magic
534 535
    for (i = 0; "vorbis"[i]; i++)
        put_bits(&pb, 8, "vorbis"[i]);
536
    put_bits32(&pb, 0); // version
537
    put_bits(&pb,  8, venc->channels);
538 539 540 541
    put_bits32(&pb, venc->sample_rate);
    put_bits32(&pb, 0); // bitrate
    put_bits32(&pb, 0); // bitrate
    put_bits32(&pb, 0); // bitrate
542 543 544
    put_bits(&pb,  4, venc->log2_blocksize[0]);
    put_bits(&pb,  4, venc->log2_blocksize[1]);
    put_bits(&pb,  1, 1); // framing
545 546

    flush_put_bits(&pb);
547
    hlens[0] = put_bits_count(&pb) >> 3;
548 549 550 551 552 553
    buffer_len -= hlens[0];
    p += hlens[0];

    // comment header
    init_put_bits(&pb, p, buffer_len);
    put_bits(&pb, 8, 3); //magic
554 555
    for (i = 0; "vorbis"[i]; i++)
        put_bits(&pb, 8, "vorbis"[i]);
556 557
    put_bits32(&pb, 0); // vendor length TODO
    put_bits32(&pb, 0); // amount of comments
558
    put_bits(&pb,  1, 1); // framing
559 560

    flush_put_bits(&pb);
561
    hlens[1] = put_bits_count(&pb) >> 3;
562 563 564 565 566 567
    buffer_len -= hlens[1];
    p += hlens[1];

    // setup header
    init_put_bits(&pb, p, buffer_len);
    put_bits(&pb, 8, 5); //magic
568 569
    for (i = 0; "vorbis"[i]; i++)
        put_bits(&pb, 8, "vorbis"[i]);
570 571 572

    // codebooks
    put_bits(&pb, 8, venc->ncodebooks - 1);
573 574
    for (i = 0; i < venc->ncodebooks; i++)
        put_codebook_header(&pb, &venc->codebooks[i]);
575

576
    // time domain, reserved, zero
577
    put_bits(&pb,  6, 0);
578 579 580 581
    put_bits(&pb, 16, 0);

    // floors
    put_bits(&pb, 6, venc->nfloors - 1);
582 583
    for (i = 0; i < venc->nfloors; i++)
        put_floor_header(&pb, &venc->floors[i]);
584 585 586

    // residues
    put_bits(&pb, 6, venc->nresidues - 1);
587 588
    for (i = 0; i < venc->nresidues; i++)
        put_residue_header(&pb, &venc->residues[i]);
589 590 591 592

    // mappings
    put_bits(&pb, 6, venc->nmappings - 1);
    for (i = 0; i < venc->nmappings; i++) {
593
        vorbis_enc_mapping *mc = &venc->mappings[i];
594 595 596 597
        int j;
        put_bits(&pb, 16, 0); // mapping type

        put_bits(&pb, 1, mc->submaps > 1);
598 599
        if (mc->submaps > 1)
            put_bits(&pb, 4, mc->submaps - 1);
600

601 602 603 604 605 606 607 608
        put_bits(&pb, 1, !!mc->coupling_steps);
        if (mc->coupling_steps) {
            put_bits(&pb, 8, mc->coupling_steps - 1);
            for (j = 0; j < mc->coupling_steps; j++) {
                put_bits(&pb, ilog(venc->channels - 1), mc->magnitude[j]);
                put_bits(&pb, ilog(venc->channels - 1), mc->angle[j]);
            }
        }
609 610 611

        put_bits(&pb, 2, 0); // reserved

612 613 614
        if (mc->submaps > 1)
            for (j = 0; j < venc->channels; j++)
                put_bits(&pb, 4, mc->mux[j]);
615 616 617 618 619 620

        for (j = 0; j < mc->submaps; j++) {
            put_bits(&pb, 8, 0); // reserved time configuration
            put_bits(&pb, 8, mc->floor[j]);
            put_bits(&pb, 8, mc->residue[j]);
        }
621
    }
622

623 624 625 626 627 628 629 630 631
    // modes
    put_bits(&pb, 6, venc->nmodes - 1);
    for (i = 0; i < venc->nmodes; i++) {
        put_bits(&pb, 1, venc->modes[i].blockflag);
        put_bits(&pb, 16, 0); // reserved window type
        put_bits(&pb, 16, 0); // reserved transform type
        put_bits(&pb, 8, venc->modes[i].mapping);
    }

632 633
    put_bits(&pb, 1, 1); // framing

634
    flush_put_bits(&pb);
635
    hlens[2] = put_bits_count(&pb) >> 3;
636 637 638 639 640 641 642 643 644 645 646 647 648

    len = hlens[0] + hlens[1] + hlens[2];
    p = *out = av_mallocz(64 + len + len/255);

    *p++ = 2;
    p += av_xiphlacing(p, hlens[0]);
    p += av_xiphlacing(p, hlens[1]);
    buffer_len = 0;
    for (i = 0; i < 3; i++) {
        memcpy(p, buffer + buffer_len, hlens[i]);
        p += hlens[i];
        buffer_len += hlens[i];
    }
649

650
    return p - *out;
651 652
}

653
static float get_floor_average(vorbis_enc_floor * fc, float *coeffs, int i)
654
{
655 656 657 658 659
    int begin = fc->list[fc->list[FFMAX(i-1, 0)].sort].x;
    int end   = fc->list[fc->list[FFMIN(i+1, fc->values - 1)].sort].x;
    int j;
    float average = 0;

660 661
    for (j = begin; j < end; j++)
        average += fabs(coeffs[j]);
662 663 664
    return average / (end - begin);
}

665 666
static void floor_fit(vorbis_enc_context *venc, vorbis_enc_floor *fc,
                      float *coeffs, uint_fast16_t *posts, int samples)
667
{
668 669
    int range = 255 / fc->multiplier + 1;
    int i;
670
    float tot_average = 0.;
671
    float averages[fc->values];
672
    for (i = 0; i < fc->values; i++) {
673 674 675
        averages[i] = get_floor_average(fc, coeffs, i);
        tot_average += averages[i];
    }
676
    tot_average /= fc->values;
677
    tot_average /= venc->quality;
678

679
    for (i = 0; i < fc->values; i++) {
680
        int position  = fc->list[fc->list[i].sort].x;
681
        float average = averages[i];
682 683
        int j;

684
        average *= pow(tot_average / average, 0.5) * pow(1.25, position/200.); // MAGIC!
685
        for (j = 0; j < range - 1; j++)
686 687
            if (ff_vorbis_floor1_inverse_db_table[j * fc->multiplier] > average)
                break;
688 689 690 691
        posts[fc->list[i].sort] = j;
    }
}

692 693
static int render_point(int x0, int y0, int x1, int y1, int x)
{
694 695 696
    return y0 +  (x - x0) * (y1 - y0) / (x1 - x0);
}

697 698 699
static void floor_encode(vorbis_enc_context *venc, vorbis_enc_floor *fc,
                         PutBitContext *pb, uint_fast16_t *posts,
                         float *floor, int samples)
700
{
701
    int range = 255 / fc->multiplier + 1;
702 703 704
    int coded[fc->values]; // first 2 values are unused
    int i, counter;

705
    put_bits(pb, 1, 1); // non zero
706 707
    put_bits(pb, ilog(range - 1), posts[0]);
    put_bits(pb, ilog(range - 1), posts[1]);
708
    coded[0] = coded[1] = 1;
709 710 711 712 713 714 715

    for (i = 2; i < fc->values; i++) {
        int predicted = render_point(fc->list[fc->list[i].low].x,
                                     posts[fc->list[i].low],
                                     fc->list[fc->list[i].high].x,
                                     posts[fc->list[i].high],
                                     fc->list[i].x);
716
        int highroom = range - predicted;
717 718 719 720 721
        int lowroom = predicted;
        int room = FFMIN(highroom, lowroom);
        if (predicted == posts[i]) {
            coded[i] = 0; // must be used later as flag!
            continue;
722
        } else {
723 724 725 726
            if (!coded[fc->list[i].low ])
                coded[fc->list[i].low ] = -1;
            if (!coded[fc->list[i].high])
                coded[fc->list[i].high] = -1;
727 728
        }
        if (posts[i] > predicted) {
729 730 731 732
            if (posts[i] - predicted > room)
                coded[i] = posts[i] - predicted + lowroom;
            else
                coded[i] = (posts[i] - predicted) << 1;
733
        } else {
734 735 736 737
            if (predicted - posts[i] > room)
                coded[i] = predicted - posts[i] + highroom - 1;
            else
                coded[i] = ((predicted - posts[i]) << 1) - 1;
738 739 740 741 742
        }
    }

    counter = 2;
    for (i = 0; i < fc->partitions; i++) {
743
        vorbis_enc_floor_class * c = &fc->classes[fc->partition_to_class[i]];
744 745
        int k, cval = 0, csub = 1<<c->subclass;
        if (c->subclass) {
746
            vorbis_enc_codebook * book = &venc->codebooks[c->masterbook];
747 748 749 750 751
            int cshift = 0;
            for (k = 0; k < c->dim; k++) {
                int l;
                for (l = 0; l < csub; l++) {
                    int maxval = 1;
752 753
                    if (c->books[l] != -1)
                        maxval = venc->codebooks[c->books[l]].nentries;
Diego Biurrun's avatar
Diego Biurrun committed
754
                    // coded could be -1, but this still works, cause that is 0
755 756
                    if (coded[counter + k] < maxval)
                        break;
757 758
                }
                assert(l != csub);
759
                cval   |= l << cshift;
760 761
                cshift += c->subclass;
            }
762
            put_codeword(pb, book, cval);
763
        }
764
        for (k = 0; k < c->dim; k++) {
765
            int book  = c->books[cval & (csub-1)];
766
            int entry = coded[counter++];
767
            cval >>= c->subclass;
768 769 770 771
            if (book == -1)
                continue;
            if (entry == -1)
                entry = 0;
772
            put_codeword(pb, &venc->codebooks[book], entry);
773 774 775
        }
    }

776 777
    ff_vorbis_floor1_render_list(fc->list, fc->values, posts, coded,
                                 fc->multiplier, floor, samples);
778 779
}

780 781
static float *put_vector(vorbis_enc_codebook *book, PutBitContext *pb,
                         float *num)
782
{
783 784
    int i, entry = -1;
    float distance = FLT_MAX;
785 786
    assert(book->dimentions);
    for (i = 0; i < book->nentries; i++) {
787
        float * vec = book->dimentions + i * book->ndimentions, d = book->pow2[i];
788
        int j;
789 790
        if (!book->lens[i])
            continue;
791 792
        for (j = 0; j < book->ndimentions; j++)
            d -= vec[j] * num[j];
793
        if (distance > d) {
794
            entry    = i;
795 796 797
            distance = d;
        }
    }
798
    put_codeword(pb, book, entry);
799 800
    return &book->dimentions[entry * book->ndimentions];
}
Oded Shimon's avatar
Oded Shimon committed
801

802 803
static void residue_encode(vorbis_enc_context *venc, vorbis_enc_residue *rc,
                           PutBitContext *pb, float *coeffs, int samples,
804 805
                           int real_ch)
{
806
    int pass, i, j, p, k;
807
    int psize      = rc->partition_size;
808
    int partitions = (rc->end - rc->begin) / psize;
809
    int channels   = (rc->type == 2) ? 1 : real_ch;
810 811
    int classes[channels][partitions];
    int classwords = venc->codebooks[rc->classbook].ndimentions;
812

813 814 815 816 817 818
    assert(rc->type == 2);
    assert(real_ch == 2);
    for (p = 0; p < partitions; p++) {
        float max1 = 0., max2 = 0.;
        int s = rc->begin + p * psize;
        for (k = s; k < s + psize; k += 2) {
819 820
            max1 = FFMAX(max1, fabs(coeffs[          k / real_ch]));
            max2 = FFMAX(max2, fabs(coeffs[samples + k / real_ch]));
821 822
        }

823 824 825
        for (i = 0; i < rc->classifications - 1; i++)
            if (max1 < rc->maxes[i][0] && max2 < rc->maxes[i][1])
                break;
826 827 828
        classes[0][p] = i;
    }

829 830 831
    for (pass = 0; pass < 8; pass++) {
        p = 0;
        while (p < partitions) {
832 833
            if (pass == 0)
                for (j = 0; j < channels; j++) {
834
                    vorbis_enc_codebook * book = &venc->codebooks[rc->classbook];
835 836 837 838 839 840
                    int entry = 0;
                    for (i = 0; i < classwords; i++) {
                        entry *= rc->classifications;
                        entry += classes[j][p + i];
                    }
                    put_codeword(pb, book, entry);
841 842 843 844
                }
            for (i = 0; i < classwords && p < partitions; i++, p++) {
                for (j = 0; j < channels; j++) {
                    int nbook = rc->books[classes[j][p]][pass];
845
                    vorbis_enc_codebook * book = &venc->codebooks[nbook];
846
                    float *buf = coeffs + samples*j + rc->begin + p*psize;
847 848
                    if (nbook == -1)
                        continue;
Oded Shimon's avatar
Oded Shimon committed
849

850
                    assert(rc->type == 0 || rc->type == 2);
851
                    assert(!(psize % book->ndimentions));
Oded Shimon's avatar
Oded Shimon committed
852

853
                    if (rc->type == 0) {
854
                        for (k = 0; k < psize; k += book->ndimentions) {
855
                            float *a = put_vector(book, pb, &buf[k]);
856
                            int l;
857 858
                            for (l = 0; l < book->ndimentions; l++)
                                buf[k + l] -= a[l];
859
                        }
860
                    } else {
861 862 863
                        int s = rc->begin + p * psize, a1, b1;
                        a1 = (s % real_ch) * samples;
                        b1 =  s / real_ch;
864
                        s  = real_ch * samples;
865
                        for (k = 0; k < psize; k += book->ndimentions) {
866
                            int dim, a2 = a1, b2 = b1;
867
                            float vec[book->ndimentions], *pv = vec;
868 869
                            for (dim = book->ndimentions; dim--; ) {
                                *pv++ = coeffs[a2 + b2];
870
                                if ((a2 += samples) == s) {
871
                                    a2 = 0;
872 873
                                    b2++;
                                }
874 875 876 877
                            }
                            pv = put_vector(book, pb, vec);
                            for (dim = book->ndimentions; dim--; ) {
                                coeffs[a1 + b1] -= *pv++;
878
                                if ((a1 += samples) == s) {
879
                                    a1 = 0;
880 881
                                    b1++;
                                }
882
                            }
883 884
                        }
                    }
885 886 887 888
                }
            }
        }
    }
Oded Shimon's avatar
Oded Shimon committed
889 890
}

891 892
static int apply_window_and_mdct(vorbis_enc_context *venc, signed short *audio,
                                 int samples)
893
{
894 895
    int i, j, channel;
    const float * win = venc->win[0];
896 897
    int window_len = 1 << (venc->log2_blocksize[0] - 1);
    float n = (float)(1 << venc->log2_blocksize[0]) / 4.;
898 899
    // FIXME use dsp

900 901
    if (!venc->have_saved && !samples)
        return 0;
902

903
    if (venc->have_saved) {
904
        for (channel = 0; channel < venc->channels; channel++)
905 906 907
            memcpy(venc->samples + channel * window_len * 2,
                   venc->saved + channel * window_len, sizeof(float) * window_len);
    } else {
908
        for (channel = 0; channel < venc->channels; channel++)
909 910 911
            memset(venc->samples + channel * window_len * 2, 0,
                   sizeof(float) * window_len);
    }
912 913 914

    if (samples) {
        for (channel = 0; channel < venc->channels; channel++) {
915
            float * offset = venc->samples + channel*window_len*2 + window_len;
916 917
            j = channel;
            for (i = 0; i < samples; i++, j += venc->channels)
918
                offset[i] = -audio[j] / 32768. / n * win[window_len - i - 1]; //FIXME find out why the sign has to be fliped
919 920
        }
    } else {
921
        for (channel = 0; channel < venc->channels; channel++)
922 923
            memset(venc->samples + channel * window_len * 2 + window_len,
                   0, sizeof(float) * window_len);
924 925
    }

926
    for (channel = 0; channel < venc->channels; channel++)
927 928
        ff_mdct_calc(&venc->mdct[0], venc->coeffs + channel * window_len,
                     venc->samples + channel * window_len * 2);
929 930 931

    if (samples) {
        for (channel = 0; channel < venc->channels; channel++) {
932
            float *offset = venc->saved + channel * window_len;
933 934
            j = channel;
            for (i = 0; i < samples; i++, j += venc->channels)
935
                offset[i] = -audio[j] / 32768. / n * win[i]; //FIXME find out why the sign has to be fliped
936 937 938 939 940 941 942
        }
        venc->have_saved = 1;
    } else {
        venc->have_saved = 0;
    }
    return 1;
}
Oded Shimon's avatar
Oded Shimon committed
943

944
static av_cold int vorbis_encode_init(AVCodecContext *avccontext)
945
{
946
    vorbis_enc_context *venc = avccontext->priv_data;
947

948 949 950 951
    if (avccontext->channels != 2) {
        av_log(avccontext, AV_LOG_ERROR, "Current FFmpeg Vorbis encoder only supports 2 channels.\n");
        return -1;
    }
952

953
    create_vorbis_context(venc, avccontext);
954

955 956 957 958
    if (avccontext->flags & CODEC_FLAG_QSCALE)
        venc->quality = avccontext->global_quality / (float)FF_QP2LAMBDA / 10.;
    else
        venc->quality = 1.;
959
    venc->quality *= venc->quality;
960

961
    avccontext->extradata_size = put_main_header(venc, (uint8_t**)&avccontext->extradata);
962

963
    avccontext->frame_size     = 1 << (venc->log2_blocksize[0] - 1);
964

965
    avccontext->coded_frame            = avcodec_alloc_frame();
966 967 968
    avccontext->coded_frame->key_frame = 1;

    return 0;
969 970
}

971 972 973
static int vorbis_encode_frame(AVCodecContext *avccontext,
                               unsigned char *packets,
                               int buf_size, void *data)
Oded Shimon's avatar
Oded Shimon committed
974
{
975 976
    vorbis_enc_context *venc = avccontext->priv_data;
    signed short *audio = data;
977
    int samples = data ? avccontext->frame_size : 0;
978 979
    vorbis_enc_mode *mode;
    vorbis_enc_mapping *mapping;
980 981 982
    PutBitContext pb;
    int i;

983 984
    if (!apply_window_and_mdct(venc, audio, samples))
        return 0;
985
    samples = 1 << (venc->log2_blocksize[0] - 1);
986

987 988 989 990 991 992
    init_put_bits(&pb, packets, buf_size);

    put_bits(&pb, 1, 0); // magic bit

    put_bits(&pb, ilog(venc->nmodes - 1), 0); // 0 bits, the mode

993
    mode    = &venc->modes[0];
994 995 996 997 998 999 1000
    mapping = &venc->mappings[mode->mapping];
    if (mode->blockflag) {
        put_bits(&pb, 1, 0);
        put_bits(&pb, 1, 0);
    }

    for (i = 0; i < venc->channels; i++) {
1001
        vorbis_enc_floor *fc = &venc->floors[mapping->floor[mapping->mux[i]]];
1002
        uint_fast16_t posts[fc->values];
1003
        floor_fit(venc, fc, &venc->coeffs[i * samples], posts, samples);
1004
        floor_encode(venc, fc, &pb, posts, &venc->floor[i * samples], samples);
1005
    }
Oded Shimon's avatar
Oded Shimon committed
1006

1007
    for (i = 0; i < venc->channels * samples; i++)
1008
        venc->coeffs[i] /= venc->floor[i];
1009

1010
    for (i = 0; i < mapping->coupling_steps; i++) {
1011 1012
        float *mag = venc->coeffs + mapping->magnitude[i] * samples;
        float *ang = venc->coeffs + mapping->angle[i]     * samples;
1013 1014 1015
        int j;
        for (j = 0; j < samples; j++) {
            float a = ang[j];
1016
            ang[j] -= mag[j];
1017 1018 1019 1020
            if (mag[j] > 0)
                ang[j] = -ang[j];
            if (ang[j] < 0)
                mag[j] = a;
1021 1022 1023
        }
    }

1024 1025
    residue_encode(venc, &venc->residues[mapping->residue[mapping->mux[0]]],
                   &pb, venc->coeffs, samples, venc->channels);
1026

1027 1028
    avccontext->coded_frame->pts = venc->sample_count;
    venc->sample_count += avccontext->frame_size;
1029
    flush_put_bits(&pb);
1030
    return put_bits_count(&pb) >> 3;
Oded Shimon's avatar
Oded Shimon committed
1031 1032 1033
}


1034
static av_cold int vorbis_encode_close(AVCodecContext *avccontext)
Oded Shimon's avatar
Oded Shimon committed
1035
{
1036
    vorbis_enc_context *venc = avccontext->priv_data;
1037 1038
    int i;

1039 1040 1041 1042 1043 1044 1045 1046
    if (venc->codebooks)
        for (i = 0; i < venc->ncodebooks; i++) {
            av_freep(&venc->codebooks[i].lens);
            av_freep(&venc->codebooks[i].codewords);
            av_freep(&venc->codebooks[i].quantlist);
            av_freep(&venc->codebooks[i].dimentions);
            av_freep(&venc->codebooks[i].pow2);
        }
1047 1048
    av_freep(&venc->codebooks);

1049 1050 1051 1052 1053 1054
    if (venc->floors)
        for (i = 0; i < venc->nfloors; i++) {
            int j;
            if (venc->floors[i].classes)
                for (j = 0; j < venc->floors[i].nclasses; j++)
                    av_freep(&venc->floors[i].classes[j].books);
1055
            av_freep(&venc->floors[i].classes);
1056 1057 1058
            av_freep(&venc->floors[i].partition_to_class);
            av_freep(&venc->floors[i].list);
        }
1059 1060
    av_freep(&venc->floors);

1061 1062 1063 1064 1065
    if (venc->residues)
        for (i = 0; i < venc->nresidues; i++) {
            av_freep(&venc->residues[i].books);
            av_freep(&venc->residues[i].maxes);
        }
1066 1067
    av_freep(&venc->residues);

1068 1069 1070 1071 1072
    if (venc->mappings)
        for (i = 0; i < venc->nmappings; i++) {
            av_freep(&venc->mappings[i].mux);
            av_freep(&venc->mappings[i].floor);
            av_freep(&venc->mappings[i].residue);
Oded Shimon's avatar
Oded Shimon committed
1073 1074
            av_freep(&venc->mappings[i].magnitude);
            av_freep(&venc->mappings[i].angle);
1075
        }
1076 1077 1078
    av_freep(&venc->mappings);

    av_freep(&venc->modes);
Oded Shimon's avatar
Oded Shimon committed
1079

1080 1081 1082 1083 1084 1085 1086 1087
    av_freep(&venc->saved);
    av_freep(&venc->samples);
    av_freep(&venc->floor);
    av_freep(&venc->coeffs);

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

Oded Shimon's avatar
Oded Shimon committed
1088 1089 1090 1091 1092 1093
    av_freep(&avccontext->coded_frame);
    av_freep(&avccontext->extradata);

    return 0 ;
}

1094
AVCodec vorbis_encoder = {
Oded Shimon's avatar
Oded Shimon committed
1095
    "vorbis",
1096
    AVMEDIA_TYPE_AUDIO,
Oded Shimon's avatar
Oded Shimon committed
1097
    CODEC_ID_VORBIS,
1098
    sizeof(vorbis_enc_context),
Oded Shimon's avatar
Oded Shimon committed
1099 1100 1101 1102
    vorbis_encode_init,
    vorbis_encode_frame,
    vorbis_encode_close,
    .capabilities= CODEC_CAP_DELAY,
1103
    .sample_fmts = (const enum SampleFormat[]){SAMPLE_FMT_S16,SAMPLE_FMT_NONE},
1104
    .long_name = NULL_IF_CONFIG_SMALL("Vorbis"),
Oded Shimon's avatar
Oded Shimon committed
1105
};