vorbisenc.c 37.5 KB
Newer Older
Oded Shimon's avatar
Oded Shimon committed
1 2 3
/*
 * copyright (c) 2006 Oded Shimon <ods15@ods15.dyndns.org>
 *
4
 * This file is part of Libav.
5
 *
6
 * Libav 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
 * Libav 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 Libav; 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>
28

Oded Shimon's avatar
Oded Shimon committed
29
#include "avcodec.h"
30
#include "internal.h"
31
#include "fft.h"
32
#include "mathops.h"
33
#include "vorbis.h"
34
#include "vorbis_enc_data.h"
35

36
#define BITSTREAM_WRITER_LE
37
#include "put_bits.h"
38

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

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

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

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

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

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

95 96 97
typedef struct {
    int blockflag;
    int mapping;
98
} vorbis_enc_mode;
99

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

113
    int ncodebooks;
114
    vorbis_enc_codebook *codebooks;
115 116

    int nfloors;
117
    vorbis_enc_floor *floors;
118 119

    int nresidues;
120
    vorbis_enc_residue *residues;
121 122

    int nmappings;
123
    vorbis_enc_mapping *mappings;
124 125

    int nmodes;
126
    vorbis_enc_mode *modes;
127

128
    int64_t next_pts;
129
} vorbis_enc_context;
Oded Shimon's avatar
Oded Shimon committed
130

Måns Rullgård's avatar
Måns Rullgård committed
131 132 133 134 135 136 137 138 139 140 141
#define MAX_CHANNELS     2
#define MAX_CODEBOOK_DIM 8

#define MAX_FLOOR_CLASS_DIM  4
#define NUM_FLOOR_PARTITIONS 8
#define MAX_FLOOR_VALUES     (MAX_FLOOR_CLASS_DIM*NUM_FLOOR_PARTITIONS+2)

#define RESIDUE_SIZE           1600
#define RESIDUE_PART_SIZE      32
#define NUM_RESIDUE_PARTITIONS (RESIDUE_SIZE/RESIDUE_PART_SIZE)

142 143
static inline int put_codeword(PutBitContext *pb, vorbis_enc_codebook *cb,
                               int entry)
144
{
145 146 147
    assert(entry >= 0);
    assert(entry < cb->nentries);
    assert(cb->lens[entry]);
148 149
    if (pb->size_in_bits - put_bits_count(pb) < cb->lens[entry])
        return AVERROR(EINVAL);
150
    put_bits(pb, cb->lens[entry], cb->codewords[entry]);
151
    return 0;
152 153
}

154
static int cb_lookup_vals(int lookup, int dimensions, int entries)
155 156
{
    if (lookup == 1)
157
        return ff_vorbis_nth_root(entries, dimensions);
158
    else if (lookup == 2)
159
        return dimensions *entries;
160 161 162
    return 0;
}

163
static int ready_codebook(vorbis_enc_codebook *cb)
164
{
165 166
    int i;

167
    ff_vorbis_len2vlc(cb->lens, cb->codewords, cb->nentries);
168

169
    if (!cb->lookup) {
170
        cb->pow2 = cb->dimensions = NULL;
171
    } else {
172 173
        int vals = cb_lookup_vals(cb->lookup, cb->ndimensions, cb->nentries);
        cb->dimensions = av_malloc(sizeof(float) * cb->nentries * cb->ndimensions);
174
        cb->pow2 = av_mallocz(sizeof(float) * cb->nentries);
175
        if (!cb->dimensions || !cb->pow2)
176
            return AVERROR(ENOMEM);
177 178 179 180
        for (i = 0; i < cb->nentries; i++) {
            float last = 0;
            int j;
            int div = 1;
181
            for (j = 0; j < cb->ndimensions; j++) {
182
                int off;
183 184 185
                if (cb->lookup == 1)
                    off = (i / div) % vals; // lookup type 1
                else
186
                    off = i * cb->ndimensions + j; // lookup type 2
187

188
                cb->dimensions[i * cb->ndimensions + j] = last + cb->min + cb->quantlist[off] * cb->delta;
189
                if (cb->seq_p)
190 191
                    last = cb->dimensions[i * cb->ndimensions + j];
                cb->pow2[i] += cb->dimensions[i * cb->ndimensions + j] * cb->dimensions[i * cb->ndimensions + j];
192 193
                div *= vals;
            }
194
            cb->pow2[i] /= 2.0;
195 196
        }
    }
197
    return 0;
198 199
}

200
static int ready_residue(vorbis_enc_residue *rc, vorbis_enc_context *venc)
201
{
202 203 204
    int i;
    assert(rc->type == 2);
    rc->maxes = av_mallocz(sizeof(float[2]) * rc->classifications);
205 206
    if (!rc->maxes)
        return AVERROR(ENOMEM);
207 208
    for (i = 0; i < rc->classifications; i++) {
        int j;
209
        vorbis_enc_codebook * cb;
210
        for (j = 0; j < 8; j++)
211 212
            if (rc->books[i][j] != -1)
                break;
213 214
        if (j == 8) // zero
            continue;
215
        cb = &venc->codebooks[rc->books[i][j]];
216
        assert(cb->ndimensions >= 2);
217 218 219 220
        assert(cb->lookup);

        for (j = 0; j < cb->nentries; j++) {
            float a;
221 222
            if (!cb->lens[j])
                continue;
223
            a = fabs(cb->dimensions[j * cb->ndimensions]);
224 225
            if (a > rc->maxes[i][0])
                rc->maxes[i][0] = a;
226
            a = fabs(cb->dimensions[j * cb->ndimensions + 1]);
227 228
            if (a > rc->maxes[i][1])
                rc->maxes[i][1] = a;
229 230 231 232 233 234 235
        }
    }
    // small bias
    for (i = 0; i < rc->classifications; i++) {
        rc->maxes[i][0] += 0.8;
        rc->maxes[i][1] += 0.8;
    }
236
    return 0;
237 238
}

239
static int create_vorbis_context(vorbis_enc_context *venc,
240
                                 AVCodecContext *avctx)
241
{
242 243 244
    vorbis_enc_floor   *fc;
    vorbis_enc_residue *rc;
    vorbis_enc_mapping *mc;
245
    int i, book, ret;
246

247 248
    venc->channels    = avctx->channels;
    venc->sample_rate = avctx->sample_rate;
249
    venc->log2_blocksize[0] = venc->log2_blocksize[1] = 11;
250

251
    venc->ncodebooks = FF_ARRAY_ELEMS(cvectors);
252
    venc->codebooks  = av_malloc(sizeof(vorbis_enc_codebook) * venc->ncodebooks);
253 254
    if (!venc->codebooks)
        return AVERROR(ENOMEM);
255

256
    // codebook 0..14 - floor1 book, values 0..255
257 258 259
    // codebook 15 residue masterbook
    // codebook 16..29 residue
    for (book = 0; book < venc->ncodebooks; book++) {
260
        vorbis_enc_codebook *cb = &venc->codebooks[book];
261
        int vals;
262
        cb->ndimensions = cvectors[book].dim;
263 264 265 266 267
        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;
268

269
        cb->lens      = av_malloc(sizeof(uint8_t)  * cb->nentries);
270
        cb->codewords = av_malloc(sizeof(uint32_t) * cb->nentries);
271 272
        if (!cb->lens || !cb->codewords)
            return AVERROR(ENOMEM);
273 274 275
        memcpy(cb->lens, cvectors[book].clens, cvectors[book].len);
        memset(cb->lens + cvectors[book].len, 0, cb->nentries - cvectors[book].len);

276
        if (cb->lookup) {
277
            vals = cb_lookup_vals(cb->lookup, cb->ndimensions, cb->nentries);
278
            cb->quantlist = av_malloc(sizeof(int) * vals);
279 280
            if (!cb->quantlist)
                return AVERROR(ENOMEM);
281 282
            for (i = 0; i < vals; i++)
                cb->quantlist[i] = cvectors[book].quant[i];
283 284 285
        } else {
            cb->quantlist = NULL;
        }
286 287
        if ((ret = ready_codebook(cb)) < 0)
            return ret;
288
    }
289

290
    venc->nfloors = 1;
291
    venc->floors  = av_malloc(sizeof(vorbis_enc_floor) * venc->nfloors);
292 293
    if (!venc->floors)
        return AVERROR(ENOMEM);
294

295 296
    // just 1 floor
    fc = &venc->floors[0];
Måns Rullgård's avatar
Måns Rullgård committed
297
    fc->partitions         = NUM_FLOOR_PARTITIONS;
298
    fc->partition_to_class = av_malloc(sizeof(int) * fc->partitions);
299 300
    if (!fc->partition_to_class)
        return AVERROR(ENOMEM);
301
    fc->nclasses           = 0;
302
    for (i = 0; i < fc->partitions; i++) {
303
        static const int a[] = {0, 1, 2, 2, 3, 3, 4, 4};
304 305 306 307
        fc->partition_to_class[i] = a[i];
        fc->nclasses = FFMAX(fc->nclasses, fc->partition_to_class[i]);
    }
    fc->nclasses++;
308
    fc->classes = av_malloc(sizeof(vorbis_enc_floor_class) * fc->nclasses);
309 310
    if (!fc->classes)
        return AVERROR(ENOMEM);
311
    for (i = 0; i < fc->nclasses; i++) {
312
        vorbis_enc_floor_class * c = &fc->classes[i];
313
        int j, books;
314 315
        c->dim        = floor_classes[i].dim;
        c->subclass   = floor_classes[i].subclass;
316
        c->masterbook = floor_classes[i].masterbook;
317 318
        books         = (1 << c->subclass);
        c->books      = av_malloc(sizeof(int) * books);
319 320
        if (!c->books)
            return AVERROR(ENOMEM);
321 322
        for (j = 0; j < books; j++)
            c->books[j] = floor_classes[i].nbooks[j];
323
    }
324
    fc->multiplier = 2;
325
    fc->rangebits  = venc->log2_blocksize[0] - 1;
326 327 328 329 330

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

331
    fc->list = av_malloc(sizeof(vorbis_floor1_entry) * fc->values);
332 333
    if (!fc->list)
        return AVERROR(ENOMEM);
334 335
    fc->list[0].x = 0;
    fc->list[1].x = 1 << fc->rangebits;
336
    for (i = 2; i < fc->values; i++) {
337 338 339 340 341
        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
        };
342
        fc->list[i].x = a[i - 2];
343
    }
344
    if (ff_vorbis_ready_floor1_list(avctx, fc->list, fc->values))
345
        return AVERROR_BUG;
346 347

    venc->nresidues = 1;
348
    venc->residues  = av_malloc(sizeof(vorbis_enc_residue) * venc->nresidues);
349 350
    if (!venc->residues)
        return AVERROR(ENOMEM);
351

352 353
    // single residue
    rc = &venc->residues[0];
354 355 356 357
    rc->type            = 2;
    rc->begin           = 0;
    rc->end             = 1600;
    rc->partition_size  = 32;
358
    rc->classifications = 10;
359 360
    rc->classbook       = 15;
    rc->books           = av_malloc(sizeof(*rc->books) * rc->classifications);
361 362
    if (!rc->books)
        return AVERROR(ENOMEM);
363 364
    {
        static const int8_t a[10][8] = {
365 366 367 368 369 370 371 372 373 374 375
            { -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, },
        };
376
        memcpy(rc->books, a, sizeof a);
377
    }
378 379
    if ((ret = ready_residue(rc, venc)) < 0)
        return ret;
380

381
    venc->nmappings = 1;
382
    venc->mappings  = av_malloc(sizeof(vorbis_enc_mapping) * venc->nmappings);
383 384
    if (!venc->mappings)
        return AVERROR(ENOMEM);
385

386 387 388
    // single mapping
    mc = &venc->mappings[0];
    mc->submaps = 1;
389
    mc->mux     = av_malloc(sizeof(int) * venc->channels);
390 391
    if (!mc->mux)
        return AVERROR(ENOMEM);
392 393
    for (i = 0; i < venc->channels; i++)
        mc->mux[i] = 0;
394
    mc->floor   = av_malloc(sizeof(int) * mc->submaps);
395
    mc->residue = av_malloc(sizeof(int) * mc->submaps);
396 397
    if (!mc->floor || !mc->residue)
        return AVERROR(ENOMEM);
398
    for (i = 0; i < mc->submaps; i++) {
399
        mc->floor[i]   = 0;
400 401
        mc->residue[i] = 0;
    }
402
    mc->coupling_steps = venc->channels == 2 ? 1 : 0;
403 404
    mc->magnitude      = av_malloc(sizeof(int) * mc->coupling_steps);
    mc->angle          = av_malloc(sizeof(int) * mc->coupling_steps);
405 406
    if (!mc->magnitude || !mc->angle)
        return AVERROR(ENOMEM);
407 408
    if (mc->coupling_steps) {
        mc->magnitude[0] = 0;
409
        mc->angle[0]     = 1;
410
    }
411

412
    venc->nmodes = 1;
413
    venc->modes  = av_malloc(sizeof(vorbis_enc_mode) * venc->nmodes);
414 415
    if (!venc->modes)
        return AVERROR(ENOMEM);
416 417 418

    // single mode
    venc->modes[0].blockflag = 0;
419
    venc->modes[0].mapping   = 0;
420

421
    venc->have_saved = 0;
422 423 424 425
    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);
426 427
    if (!venc->saved || !venc->samples || !venc->floor || !venc->coeffs)
        return AVERROR(ENOMEM);
428

429 430
    venc->win[0] = ff_vorbis_vwin[venc->log2_blocksize[0] - 6];
    venc->win[1] = ff_vorbis_vwin[venc->log2_blocksize[1] - 6];
431

432 433 434 435 436 437
    if ((ret = ff_mdct_init(&venc->mdct[0], venc->log2_blocksize[0], 0, 1.0)) < 0)
        return ret;
    if ((ret = ff_mdct_init(&venc->mdct[1], venc->log2_blocksize[1], 0, 1.0)) < 0)
        return ret;

    return 0;
438 439
}

440
static void put_float(PutBitContext *pb, float f)
441
{
442 443 444 445
    int exp, mant;
    uint32_t res = 0;
    mant = (int)ldexp(frexp(f, &exp), 20);
    exp += 788 - 20;
446
    if (mant < 0) {
447
        res |= (1U << 31);
448 449
        mant = -mant;
    }
450
    res |= mant | (exp << 21);
451
    put_bits32(pb, res);
452 453
}

454
static void put_codebook_header(PutBitContext *pb, vorbis_enc_codebook *cb)
455
{
456 457 458 459
    int i;
    int ordered = 0;

    put_bits(pb, 24, 0x564342); //magic
460
    put_bits(pb, 16, cb->ndimensions);
461 462
    put_bits(pb, 24, cb->nentries);

463
    for (i = 1; i < cb->nentries; i++)
464 465
        if (cb->lens[i] < cb->lens[i-1])
            break;
466 467
    if (i == cb->nentries)
        ordered = 1;
468 469 470

    put_bits(pb, 1, ordered);
    if (ordered) {
471
        int len = cb->lens[0];
472
        put_bits(pb, 5, len - 1);
473 474
        i = 0;
        while (i < cb->nentries) {
475
            int j;
476
            for (j = 0; j+i < cb->nentries; j++)
477 478
                if (cb->lens[j+i] != len)
                    break;
479
            put_bits(pb, ilog(cb->nentries - i), j);
480 481 482 483 484
            i += j;
            len++;
        }
    } else {
        int sparse = 0;
485
        for (i = 0; i < cb->nentries; i++)
486 487
            if (!cb->lens[i])
                break;
488 489
        if (i != cb->nentries)
            sparse = 1;
490 491 492
        put_bits(pb, 1, sparse);

        for (i = 0; i < cb->nentries; i++) {
493 494 495 496
            if (sparse)
                put_bits(pb, 1, !!cb->lens[i]);
            if (cb->lens[i])
                put_bits(pb, 5, cb->lens[i] - 1);
497 498 499 500 501
        }
    }

    put_bits(pb, 4, cb->lookup);
    if (cb->lookup) {
502
        int tmp  = cb_lookup_vals(cb->lookup, cb->ndimensions, cb->nentries);
503
        int bits = ilog(cb->quantlist[0]);
504

505 506
        for (i = 1; i < tmp; i++)
            bits = FFMAX(bits, ilog(cb->quantlist[i]));
507

508 509
        put_float(pb, cb->min);
        put_float(pb, cb->delta);
510

511 512
        put_bits(pb, 4, bits - 1);
        put_bits(pb, 1, cb->seq_p);
513

514 515
        for (i = 0; i < tmp; i++)
            put_bits(pb, bits, cb->quantlist[i]);
516 517 518
    }
}

519
static void put_floor_header(PutBitContext *pb, vorbis_enc_floor *fc)
520
{
521 522 523 524 525 526
    int i;

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

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

527 528
    for (i = 0; i < fc->partitions; i++)
        put_bits(pb, 4, fc->partition_to_class[i]);
529 530 531 532 533 534 535

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

536 537
        if (fc->classes[i].subclass)
            put_bits(pb, 8, fc->classes[i].masterbook);
538 539 540

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

541 542
        for (j = 0; j < books; j++)
            put_bits(pb, 8, fc->classes[i].books[j] + 1);
543 544 545 546 547
    }

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

548 549
    for (i = 2; i < fc->values; i++)
        put_bits(pb, fc->rangebits, fc->list[i].x);
550 551
}

552
static void put_residue_header(PutBitContext *pb, vorbis_enc_residue *rc)
553
{
554 555 556 557 558 559 560
    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);
561
    put_bits(pb, 6, rc->classifications - 1);
562 563 564 565
    put_bits(pb, 8, rc->classbook);

    for (i = 0; i < rc->classifications; i++) {
        int j, tmp = 0;
566 567
        for (j = 0; j < 8; j++)
            tmp |= (rc->books[i][j] != -1) << j;
568 569 570 571

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

572 573
        if (tmp > 7)
            put_bits(pb, 5, tmp >> 3);
574 575 576 577 578
    }

    for (i = 0; i < rc->classifications; i++) {
        int j;
        for (j = 0; j < 8; j++)
579
            if (rc->books[i][j] != -1)
580 581
                put_bits(pb, 8, rc->books[i][j]);
    }
582 583
}

584
static int put_main_header(vorbis_enc_context *venc, uint8_t **out)
585
{
586
    int i;
587
    PutBitContext pb;
588
    uint8_t buffer[50000] = {0}, *p = buffer;
589 590 591 592 593 594
    int buffer_len = sizeof buffer;
    int len, hlens[3];

    // identification header
    init_put_bits(&pb, p, buffer_len);
    put_bits(&pb, 8, 1); //magic
595 596
    for (i = 0; "vorbis"[i]; i++)
        put_bits(&pb, 8, "vorbis"[i]);
597
    put_bits32(&pb, 0); // version
598
    put_bits(&pb,  8, venc->channels);
599 600 601 602
    put_bits32(&pb, venc->sample_rate);
    put_bits32(&pb, 0); // bitrate
    put_bits32(&pb, 0); // bitrate
    put_bits32(&pb, 0); // bitrate
603 604 605
    put_bits(&pb,  4, venc->log2_blocksize[0]);
    put_bits(&pb,  4, venc->log2_blocksize[1]);
    put_bits(&pb,  1, 1); // framing
606 607

    flush_put_bits(&pb);
608
    hlens[0] = put_bits_count(&pb) >> 3;
609 610 611 612 613 614
    buffer_len -= hlens[0];
    p += hlens[0];

    // comment header
    init_put_bits(&pb, p, buffer_len);
    put_bits(&pb, 8, 3); //magic
615 616
    for (i = 0; "vorbis"[i]; i++)
        put_bits(&pb, 8, "vorbis"[i]);
617 618
    put_bits32(&pb, 0); // vendor length TODO
    put_bits32(&pb, 0); // amount of comments
619
    put_bits(&pb,  1, 1); // framing
620 621

    flush_put_bits(&pb);
622
    hlens[1] = put_bits_count(&pb) >> 3;
623 624 625 626 627 628
    buffer_len -= hlens[1];
    p += hlens[1];

    // setup header
    init_put_bits(&pb, p, buffer_len);
    put_bits(&pb, 8, 5); //magic
629 630
    for (i = 0; "vorbis"[i]; i++)
        put_bits(&pb, 8, "vorbis"[i]);
631 632 633

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

637
    // time domain, reserved, zero
638
    put_bits(&pb,  6, 0);
639 640 641 642
    put_bits(&pb, 16, 0);

    // floors
    put_bits(&pb, 6, venc->nfloors - 1);
643 644
    for (i = 0; i < venc->nfloors; i++)
        put_floor_header(&pb, &venc->floors[i]);
645 646 647

    // residues
    put_bits(&pb, 6, venc->nresidues - 1);
648 649
    for (i = 0; i < venc->nresidues; i++)
        put_residue_header(&pb, &venc->residues[i]);
650 651 652 653

    // mappings
    put_bits(&pb, 6, venc->nmappings - 1);
    for (i = 0; i < venc->nmappings; i++) {
654
        vorbis_enc_mapping *mc = &venc->mappings[i];
655 656 657 658
        int j;
        put_bits(&pb, 16, 0); // mapping type

        put_bits(&pb, 1, mc->submaps > 1);
659 660
        if (mc->submaps > 1)
            put_bits(&pb, 4, mc->submaps - 1);
661

662 663 664 665 666 667 668 669
        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]);
            }
        }
670 671 672

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

673 674 675
        if (mc->submaps > 1)
            for (j = 0; j < venc->channels; j++)
                put_bits(&pb, 4, mc->mux[j]);
676 677 678 679 680 681

        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]);
        }
682
    }
683

684 685 686 687 688 689 690 691 692
    // 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);
    }

693 694
    put_bits(&pb, 1, 1); // framing

695
    flush_put_bits(&pb);
696
    hlens[2] = put_bits_count(&pb) >> 3;
697 698 699

    len = hlens[0] + hlens[1] + hlens[2];
    p = *out = av_mallocz(64 + len + len/255);
700 701
    if (!p)
        return AVERROR(ENOMEM);
702 703 704 705 706 707 708 709 710 711

    *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];
    }
712

713
    return p - *out;
714 715
}

716
static float get_floor_average(vorbis_enc_floor * fc, float *coeffs, int i)
717
{
718 719 720 721 722
    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;

723 724
    for (j = begin; j < end; j++)
        average += fabs(coeffs[j]);
725 726 727
    return average / (end - begin);
}

728
static void floor_fit(vorbis_enc_context *venc, vorbis_enc_floor *fc,
729
                      float *coeffs, uint16_t *posts, int samples)
730
{
731 732
    int range = 255 / fc->multiplier + 1;
    int i;
733
    float tot_average = 0.0;
Måns Rullgård's avatar
Måns Rullgård committed
734
    float averages[MAX_FLOOR_VALUES];
735
    for (i = 0; i < fc->values; i++) {
736 737 738
        averages[i] = get_floor_average(fc, coeffs, i);
        tot_average += averages[i];
    }
739
    tot_average /= fc->values;
740
    tot_average /= venc->quality;
741

742
    for (i = 0; i < fc->values; i++) {
743
        int position  = fc->list[fc->list[i].sort].x;
744
        float average = averages[i];
745 746
        int j;

747
        average = sqrt(tot_average * average) * pow(1.25f, position*0.005f); // MAGIC!
748
        for (j = 0; j < range - 1; j++)
749 750
            if (ff_vorbis_floor1_inverse_db_table[j * fc->multiplier] > average)
                break;
751 752 753 754
        posts[fc->list[i].sort] = j;
    }
}

755 756
static int render_point(int x0, int y0, int x1, int y1, int x)
{
757 758 759
    return y0 +  (x - x0) * (y1 - y0) / (x1 - x0);
}

760 761 762
static int floor_encode(vorbis_enc_context *venc, vorbis_enc_floor *fc,
                        PutBitContext *pb, uint16_t *posts,
                        float *floor, int samples)
763
{
764
    int range = 255 / fc->multiplier + 1;
Måns Rullgård's avatar
Måns Rullgård committed
765
    int coded[MAX_FLOOR_VALUES]; // first 2 values are unused
766 767
    int i, counter;

768 769
    if (pb->size_in_bits - put_bits_count(pb) < 1 + 2 * ilog(range - 1))
        return AVERROR(EINVAL);
770
    put_bits(pb, 1, 1); // non zero
771 772
    put_bits(pb, ilog(range - 1), posts[0]);
    put_bits(pb, ilog(range - 1), posts[1]);
773
    coded[0] = coded[1] = 1;
774 775 776 777 778 779 780

    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);
781
        int highroom = range - predicted;
782 783 784 785 786
        int lowroom = predicted;
        int room = FFMIN(highroom, lowroom);
        if (predicted == posts[i]) {
            coded[i] = 0; // must be used later as flag!
            continue;
787
        } else {
788 789 790 791
            if (!coded[fc->list[i].low ])
                coded[fc->list[i].low ] = -1;
            if (!coded[fc->list[i].high])
                coded[fc->list[i].high] = -1;
792 793
        }
        if (posts[i] > predicted) {
794 795 796 797
            if (posts[i] - predicted > room)
                coded[i] = posts[i] - predicted + lowroom;
            else
                coded[i] = (posts[i] - predicted) << 1;
798
        } else {
799 800 801 802
            if (predicted - posts[i] > room)
                coded[i] = predicted - posts[i] + highroom - 1;
            else
                coded[i] = ((predicted - posts[i]) << 1) - 1;
803 804 805 806 807
        }
    }

    counter = 2;
    for (i = 0; i < fc->partitions; i++) {
808
        vorbis_enc_floor_class * c = &fc->classes[fc->partition_to_class[i]];
809 810
        int k, cval = 0, csub = 1<<c->subclass;
        if (c->subclass) {
811
            vorbis_enc_codebook * book = &venc->codebooks[c->masterbook];
812 813 814 815 816
            int cshift = 0;
            for (k = 0; k < c->dim; k++) {
                int l;
                for (l = 0; l < csub; l++) {
                    int maxval = 1;
817 818
                    if (c->books[l] != -1)
                        maxval = venc->codebooks[c->books[l]].nentries;
Diego Biurrun's avatar
Diego Biurrun committed
819
                    // coded could be -1, but this still works, cause that is 0
820 821
                    if (coded[counter + k] < maxval)
                        break;
822 823
                }
                assert(l != csub);
824
                cval   |= l << cshift;
825 826
                cshift += c->subclass;
            }
827 828
            if (put_codeword(pb, book, cval))
                return AVERROR(EINVAL);
829
        }
830
        for (k = 0; k < c->dim; k++) {
831
            int book  = c->books[cval & (csub-1)];
832
            int entry = coded[counter++];
833
            cval >>= c->subclass;
834 835 836 837
            if (book == -1)
                continue;
            if (entry == -1)
                entry = 0;
838 839
            if (put_codeword(pb, &venc->codebooks[book], entry))
                return AVERROR(EINVAL);
840 841 842
        }
    }

843 844
    ff_vorbis_floor1_render_list(fc->list, fc->values, posts, coded,
                                 fc->multiplier, floor, samples);
845 846

    return 0;
847 848
}

849 850
static float *put_vector(vorbis_enc_codebook *book, PutBitContext *pb,
                         float *num)
851
{
852 853
    int i, entry = -1;
    float distance = FLT_MAX;
854
    assert(book->dimensions);
855
    for (i = 0; i < book->nentries; i++) {
856
        float * vec = book->dimensions + i * book->ndimensions, d = book->pow2[i];
857
        int j;
858 859
        if (!book->lens[i])
            continue;
860
        for (j = 0; j < book->ndimensions; j++)
861
            d -= vec[j] * num[j];
862
        if (distance > d) {
863
            entry    = i;
864 865 866
            distance = d;
        }
    }
867 868
    if (put_codeword(pb, book, entry))
        return NULL;
869
    return &book->dimensions[entry * book->ndimensions];
870
}
Oded Shimon's avatar
Oded Shimon committed
871

872 873 874
static int residue_encode(vorbis_enc_context *venc, vorbis_enc_residue *rc,
                          PutBitContext *pb, float *coeffs, int samples,
                          int real_ch)
875
{
876
    int pass, i, j, p, k;
877
    int psize      = rc->partition_size;
878
    int partitions = (rc->end - rc->begin) / psize;
879
    int channels   = (rc->type == 2) ? 1 : real_ch;
Måns Rullgård's avatar
Måns Rullgård committed
880
    int classes[MAX_CHANNELS][NUM_RESIDUE_PARTITIONS];
881
    int classwords = venc->codebooks[rc->classbook].ndimensions;
882

883 884 885
    assert(rc->type == 2);
    assert(real_ch == 2);
    for (p = 0; p < partitions; p++) {
886
        float max1 = 0.0, max2 = 0.0;
887 888
        int s = rc->begin + p * psize;
        for (k = s; k < s + psize; k += 2) {
889 890
            max1 = FFMAX(max1, fabs(coeffs[          k / real_ch]));
            max2 = FFMAX(max2, fabs(coeffs[samples + k / real_ch]));
891 892
        }

893 894 895
        for (i = 0; i < rc->classifications - 1; i++)
            if (max1 < rc->maxes[i][0] && max2 < rc->maxes[i][1])
                break;
896 897 898
        classes[0][p] = i;
    }

899 900 901
    for (pass = 0; pass < 8; pass++) {
        p = 0;
        while (p < partitions) {
902 903
            if (pass == 0)
                for (j = 0; j < channels; j++) {
904
                    vorbis_enc_codebook * book = &venc->codebooks[rc->classbook];
905 906 907 908 909
                    int entry = 0;
                    for (i = 0; i < classwords; i++) {
                        entry *= rc->classifications;
                        entry += classes[j][p + i];
                    }
910 911
                    if (put_codeword(pb, book, entry))
                        return AVERROR(EINVAL);
912 913 914 915
                }
            for (i = 0; i < classwords && p < partitions; i++, p++) {
                for (j = 0; j < channels; j++) {
                    int nbook = rc->books[classes[j][p]][pass];
916
                    vorbis_enc_codebook * book = &venc->codebooks[nbook];
917
                    float *buf = coeffs + samples*j + rc->begin + p*psize;
918 919
                    if (nbook == -1)
                        continue;
Oded Shimon's avatar
Oded Shimon committed
920

921
                    assert(rc->type == 0 || rc->type == 2);
922
                    assert(!(psize % book->ndimensions));
Oded Shimon's avatar
Oded Shimon committed
923

924
                    if (rc->type == 0) {
925
                        for (k = 0; k < psize; k += book->ndimensions) {
926
                            int l;
927 928 929
                            float *a = put_vector(book, pb, &buf[k]);
                            if (!a)
                                return AVERROR(EINVAL);
930
                            for (l = 0; l < book->ndimensions; l++)
931
                                buf[k + l] -= a[l];
932
                        }
933
                    } else {
934 935 936
                        int s = rc->begin + p * psize, a1, b1;
                        a1 = (s % real_ch) * samples;
                        b1 =  s / real_ch;
937
                        s  = real_ch * samples;
938
                        for (k = 0; k < psize; k += book->ndimensions) {
939
                            int dim, a2 = a1, b2 = b1;
Måns Rullgård's avatar
Måns Rullgård committed
940
                            float vec[MAX_CODEBOOK_DIM], *pv = vec;
941
                            for (dim = book->ndimensions; dim--; ) {
942
                                *pv++ = coeffs[a2 + b2];
943
                                if ((a2 += samples) == s) {
944
                                    a2 = 0;
945 946
                                    b2++;
                                }
947 948
                            }
                            pv = put_vector(book, pb, vec);
949 950
                            if (!pv)
                                return AVERROR(EINVAL);
951
                            for (dim = book->ndimensions; dim--; ) {
952
                                coeffs[a1 + b1] -= *pv++;
953
                                if ((a1 += samples) == s) {
954
                                    a1 = 0;
955 956
                                    b1++;
                                }
957
                            }
958 959
                        }
                    }
960 961 962 963
                }
            }
        }
    }
964
    return 0;
Oded Shimon's avatar
Oded Shimon committed
965 966
}

967 968
static int apply_window_and_mdct(vorbis_enc_context *venc,
                                 float **audio, int samples)
969
{
970
    int i, channel;
971
    const float * win = venc->win[0];
972
    int window_len = 1 << (venc->log2_blocksize[0] - 1);
973
    float n = (float)(1 << venc->log2_blocksize[0]) / 4.0;
974 975
    // FIXME use dsp

976 977
    if (!venc->have_saved && !samples)
        return 0;
978

979
    if (venc->have_saved) {
980
        for (channel = 0; channel < venc->channels; channel++)
981 982 983
            memcpy(venc->samples + channel * window_len * 2,
                   venc->saved + channel * window_len, sizeof(float) * window_len);
    } else {
984
        for (channel = 0; channel < venc->channels; channel++)
985 986 987
            memset(venc->samples + channel * window_len * 2, 0,
                   sizeof(float) * window_len);
    }
988 989 990

    if (samples) {
        for (channel = 0; channel < venc->channels; channel++) {
991
            float * offset = venc->samples + channel*window_len*2 + window_len;
992 993
            for (i = 0; i < samples; i++)
                offset[i] = audio[channel][i] / n * win[window_len - i - 1];
994 995
        }
    } else {
996
        for (channel = 0; channel < venc->channels; channel++)
997 998
            memset(venc->samples + channel * window_len * 2 + window_len,
                   0, sizeof(float) * window_len);
999 1000
    }

1001
    for (channel = 0; channel < venc->channels; channel++)
1002
        venc->mdct[0].mdct_calc(&venc->mdct[0], venc->coeffs + channel * window_len,
1003
                     venc->samples + channel * window_len * 2);
1004 1005 1006

    if (samples) {
        for (channel = 0; channel < venc->channels; channel++) {
1007
            float *offset = venc->saved + channel * window_len;
1008 1009
            for (i = 0; i < samples; i++)
                offset[i] = audio[channel][i] / n * win[i];
1010 1011 1012 1013 1014 1015 1016
        }
        venc->have_saved = 1;
    } else {
        venc->have_saved = 0;
    }
    return 1;
}
Oded Shimon's avatar
Oded Shimon committed
1017

1018

1019
static int vorbis_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
1020
                               const AVFrame *frame, int *got_packet_ptr)
Oded Shimon's avatar
Oded Shimon committed
1021
{
1022
    vorbis_enc_context *venc = avctx->priv_data;
1023
    float **audio = frame ? (float **)frame->extended_data : NULL;
1024
    int samples = frame ? frame->nb_samples : 0;
1025 1026
    vorbis_enc_mode *mode;
    vorbis_enc_mapping *mapping;
1027
    PutBitContext pb;
1028
    int i, ret;
1029

1030 1031
    if (!apply_window_and_mdct(venc, audio, samples))
        return 0;
1032
    samples = 1 << (venc->log2_blocksize[0] - 1);
1033

1034
    if ((ret = ff_alloc_packet(avpkt, 8192))) {
1035
        av_log(avctx, AV_LOG_ERROR, "Error getting output packet\n");
1036 1037 1038 1039
        return ret;
    }

    init_put_bits(&pb, avpkt->data, avpkt->size);
1040

1041
    if (pb.size_in_bits - put_bits_count(&pb) < 1 + ilog(venc->nmodes - 1)) {
1042
        av_log(avctx, AV_LOG_ERROR, "output buffer is too small\n");
1043 1044 1045
        return AVERROR(EINVAL);
    }

1046 1047 1048 1049
    put_bits(&pb, 1, 0); // magic bit

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

1050
    mode    = &venc->modes[0];
1051 1052 1053 1054 1055 1056 1057
    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++) {
1058
        vorbis_enc_floor *fc = &venc->floors[mapping->floor[mapping->mux[i]]];
1059
        uint16_t posts[MAX_FLOOR_VALUES];
1060
        floor_fit(venc, fc, &venc->coeffs[i * samples], posts, samples);
1061
        if (floor_encode(venc, fc, &pb, posts, &venc->floor[i * samples], samples)) {
1062
            av_log(avctx, AV_LOG_ERROR, "output buffer is too small\n");
1063 1064
            return AVERROR(EINVAL);
        }
1065
    }
Oded Shimon's avatar
Oded Shimon committed
1066

1067
    for (i = 0; i < venc->channels * samples; i++)
1068
        venc->coeffs[i] /= venc->floor[i];
1069

1070
    for (i = 0; i < mapping->coupling_steps; i++) {
1071 1072
        float *mag = venc->coeffs + mapping->magnitude[i] * samples;
        float *ang = venc->coeffs + mapping->angle[i]     * samples;
1073 1074 1075
        int j;
        for (j = 0; j < samples; j++) {
            float a = ang[j];
1076
            ang[j] -= mag[j];
1077 1078 1079 1080
            if (mag[j] > 0)
                ang[j] = -ang[j];
            if (ang[j] < 0)
                mag[j] = a;
1081 1082 1083
        }
    }

1084 1085
    if (residue_encode(venc, &venc->residues[mapping->residue[mapping->mux[0]]],
                       &pb, venc->coeffs, samples, venc->channels)) {
1086
        av_log(avctx, AV_LOG_ERROR, "output buffer is too small\n");
1087 1088
        return AVERROR(EINVAL);
    }
1089

1090
    flush_put_bits(&pb);
1091 1092
    avpkt->size = put_bits_count(&pb) >> 3;

1093
    avpkt->duration = ff_samples_to_time_base(avctx, avctx->frame_size);
1094 1095
    if (frame)
        if (frame->pts != AV_NOPTS_VALUE)
1096
            avpkt->pts = ff_samples_to_time_base(avctx, frame->pts);
1097 1098 1099 1100 1101 1102 1103
    else
        avpkt->pts = venc->next_pts;
    if (avpkt->pts != AV_NOPTS_VALUE)
        venc->next_pts = avpkt->pts + avpkt->duration;

    *got_packet_ptr = 1;
    return 0;
Oded Shimon's avatar
Oded Shimon committed
1104 1105 1106
}


1107
static av_cold int vorbis_encode_close(AVCodecContext *avctx)
Oded Shimon's avatar
Oded Shimon committed
1108
{
1109
    vorbis_enc_context *venc = avctx->priv_data;
1110 1111
    int i;

1112 1113 1114 1115 1116
    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);
1117
            av_freep(&venc->codebooks[i].dimensions);
1118 1119
            av_freep(&venc->codebooks[i].pow2);
        }
1120 1121
    av_freep(&venc->codebooks);

1122 1123 1124 1125 1126 1127
    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);
1128
            av_freep(&venc->floors[i].classes);
1129 1130 1131
            av_freep(&venc->floors[i].partition_to_class);
            av_freep(&venc->floors[i].list);
        }
1132 1133
    av_freep(&venc->floors);

1134 1135 1136 1137 1138
    if (venc->residues)
        for (i = 0; i < venc->nresidues; i++) {
            av_freep(&venc->residues[i].books);
            av_freep(&venc->residues[i].maxes);
        }
1139 1140
    av_freep(&venc->residues);

1141 1142 1143 1144 1145
    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
1146 1147
            av_freep(&venc->mappings[i].magnitude);
            av_freep(&venc->mappings[i].angle);
1148
        }
1149 1150 1151
    av_freep(&venc->mappings);

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

1153 1154 1155 1156 1157 1158 1159 1160
    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]);

1161
    av_freep(&avctx->extradata);
Oded Shimon's avatar
Oded Shimon committed
1162 1163 1164 1165

    return 0 ;
}

1166
static av_cold int vorbis_encode_init(AVCodecContext *avctx)
1167
{
1168
    vorbis_enc_context *venc = avctx->priv_data;
1169 1170
    int ret;

1171 1172
    if (avctx->channels != 2) {
        av_log(avctx, AV_LOG_ERROR, "Current Libav Vorbis encoder only supports 2 channels.\n");
1173 1174 1175
        return -1;
    }

1176
    if ((ret = create_vorbis_context(venc, avctx)) < 0)
1177 1178
        goto error;

1179 1180 1181
    avctx->bit_rate = 0;
    if (avctx->flags & CODEC_FLAG_QSCALE)
        venc->quality = avctx->global_quality / (float)FF_QP2LAMBDA;
1182
    else
1183
        venc->quality = 3.0;
1184 1185
    venc->quality *= venc->quality;

1186
    if ((ret = put_main_header(venc, (uint8_t**)&avctx->extradata)) < 0)
1187
        goto error;
1188
    avctx->extradata_size = ret;
1189

1190
    avctx->frame_size = 1 << (venc->log2_blocksize[0] - 1);
1191 1192 1193

    return 0;
error:
1194
    vorbis_encode_close(avctx);
1195 1196 1197
    return ret;
}

1198
AVCodec ff_vorbis_encoder = {
1199
    .name           = "vorbis",
1200
    .long_name      = NULL_IF_CONFIG_SMALL("Vorbis"),
1201
    .type           = AVMEDIA_TYPE_AUDIO,
1202
    .id             = AV_CODEC_ID_VORBIS,
1203 1204
    .priv_data_size = sizeof(vorbis_enc_context),
    .init           = vorbis_encode_init,
1205
    .encode2        = vorbis_encode_frame,
1206
    .close          = vorbis_encode_close,
1207
    .capabilities   = CODEC_CAP_DELAY | CODEC_CAP_EXPERIMENTAL,
1208
    .sample_fmts    = (const enum AVSampleFormat[]){ AV_SAMPLE_FMT_FLTP,
1209
                                                     AV_SAMPLE_FMT_NONE },
Oded Shimon's avatar
Oded Shimon committed
1210
};