|
- /*
- * copyright (c) 2006 Oded Shimon <ods15@ods15.dyndns.org>
- *
- * This library 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 of the License, or (at your option) any later version.
- *
- * This library 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 this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
- /**
- * @file vorbis_enc.c
- * Native Vorbis encoder.
- * @author Oded Shimon <ods15@ods15.dyndns.org>
- */
-
- #include "avcodec.h"
-
- #undef NDEBUG
- #include <assert.h>
-
- //#define ALT_BITSTREAM_WRITER
- //#include "bitstream.h"
-
- typedef struct {
- int len;
- uint32_t codeword;
- } cb_entry_t;
-
- typedef struct {
- int nentries;
- cb_entry_t * entries;
- int ndimentions;
- float min;
- float delta;
- int seq_p;
- int lookup;
- int * quantlist;
- float * dimentions;
- } codebook_t;
-
- typedef struct {
- int dim;
- int subclass;
- int masterbook;
- int * books;
- } floor_class_t;
-
- typedef struct {
- int partitions;
- int * partition_to_class;
- int nclasses;
- floor_class_t * classes;
- int multiplier;
- int rangebits;
- int values;
- struct { int x; } * list;
- } floor_t;
-
- typedef struct {
- int type;
- int begin;
- int end;
- int partition_size;
- int classifications;
- int classbook;
- int (*books)[8];
- } residue_t;
-
- typedef struct {
- int submaps;
- int * mux;
- int * floor;
- int * residue;
- } mapping_t;
-
- typedef struct {
- int blockflag;
- int mapping;
- } vorbis_mode_t;
-
- typedef struct {
- int channels;
- int sample_rate;
- int blocksize[2]; // in (1<<n) format
-
- int ncodebooks;
- codebook_t * codebooks;
-
- int nfloors;
- floor_t * floors;
-
- int nresidues;
- residue_t * residues;
-
- int nmappings;
- mapping_t * mappings;
-
- int nmodes;
- vorbis_mode_t * modes;
- } venc_context_t;
-
- typedef struct {
- int total;
- int total_pos;
- int pos;
- uint8_t * buf_ptr;
- } PutBitContext;
-
- static inline void init_put_bits(PutBitContext * pb, uint8_t * buf, int buffer_len) {
- pb->total = buffer_len * 8;
- pb->total_pos = 0;
- pb->pos = 0;
- pb->buf_ptr = buf;
- }
-
- static void put_bits(PutBitContext * pb, int bits, uint64_t val) {
- if ((pb->total_pos += bits) >= pb->total) return;
- if (!bits) return;
- if (pb->pos) {
- if (pb->pos > bits) {
- *pb->buf_ptr |= val << (8 - pb->pos);
- pb->pos -= bits;
- bits = 0;
- } else {
- *pb->buf_ptr++ |= (val << (8 - pb->pos)) & 0xFF;
- val >>= pb->pos;
- bits -= pb->pos;
- pb->pos = 0;
- }
- }
- for (; bits >= 8; bits -= 8) {
- *pb->buf_ptr++ = val & 0xFF;
- val >>= 8;
- }
- if (bits) {
- *pb->buf_ptr = val;
- pb->pos = 8 - bits;
- }
- }
-
- static inline void flush_put_bits(PutBitContext * pb) {
- }
-
- static inline int put_bits_count(PutBitContext * pb) {
- return pb->total_pos;
- }
-
- static int cb_lookup_vals(int lookup, int dimentions, int entries) {
- if (lookup == 1) {
- int tmp, i;
- for (tmp = 0; ; tmp++) {
- int n = 1;
- for (i = 0; i < dimentions; i++) n *= tmp;
- if (n > entries) break;
- }
- return tmp - 1;
- } else if (lookup == 2) return dimentions * entries;
- return 0;
- }
-
- static void ready_codebook(codebook_t * cb) {
- int h[33] = { 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 };
- int i;
-
- for (i = 0; i < cb->nentries; i++) {
- cb_entry_t * e = &cb->entries[i];
- int j = 0;
- if (h[0]) h[0] = 0;
- else for (j = e->len; !h[j]; j--) assert(j);
- e->codeword = h[j];
- h[j] = 0;
- for (j++; j <= e->len; j++) h[j] = e->codeword | (1 << (j - 1));
- }
- for (i = 0; i < 33; i++) assert(!h[i]);
-
- if (!cb->lookup) cb->dimentions = NULL;
- else {
- int vals = cb_lookup_vals(cb->lookup, cb->ndimentions, cb->nentries);
- cb->dimentions = av_malloc(sizeof(float) * cb->nentries * cb->ndimentions);
- for (i = 0; i < cb->nentries; i++) {
- float last = 0;
- int j;
- int div = 1;
- for (j = 0; j < cb->ndimentions; j++) {
- int off;
- if (cb->lookup == 1) off = (i / div) % vals; // lookup type 1
- else off = i * cb->ndimentions + j; // lookup type 2
-
- cb->dimentions[i * cb->ndimentions + j] = last + cb->min + cb->quantlist[off] * cb->delta;
- if (cb->seq_p) last = cb->dimentions[i * cb->ndimentions + j];
- div *= vals;
- }
- }
- }
-
- }
-
- static void create_vorbis_context(venc_context_t * venc, AVCodecContext * avccontext) {
- codebook_t * cb;
- floor_t * fc;
- residue_t * rc;
- mapping_t * mc;
- int i, book;
-
- venc->channels = avccontext->channels;
- venc->sample_rate = avccontext->sample_rate;
- venc->blocksize[0] = venc->blocksize[1] = 8;
-
- venc->ncodebooks = 10;
- venc->codebooks = av_malloc(sizeof(codebook_t) * venc->ncodebooks);
-
- // codebook 1 - floor1 book, values 0..255
- cb = &venc->codebooks[0];
- cb->nentries = 256;
- cb->entries = av_malloc(sizeof(cb_entry_t) * cb->nentries);
- for (i = 0; i < cb->nentries; i++) cb->entries[i].len = 8;
- cb->ndimentions = 0;
- cb->min = 0.;
- cb->delta = 0.;
- cb->seq_p = 0;
- cb->lookup = 0;
- cb->quantlist = NULL;
- ready_codebook(cb);
-
- // codebook 2 - residue classbook, values 0..1, dimentions 200
- cb = &venc->codebooks[1];
- cb->nentries = 2;
- cb->entries = av_malloc(sizeof(cb_entry_t) * cb->nentries);
- for (i = 0; i < cb->nentries; i++) cb->entries[i].len = 1;
- cb->ndimentions = 200;
- cb->min = 0.;
- cb->delta = 0.;
- cb->seq_p = 0;
- cb->lookup = 0;
- cb->quantlist = NULL;
- ready_codebook(cb);
-
- // codebook 3..10 - vector, for the residue, values -32767..32767, dimentions 1
- for (book = 0; book < 8; book++) {
- cb = &venc->codebooks[2 + book];
- cb->nentries = 5;
- cb->entries = av_malloc(sizeof(cb_entry_t) * cb->nentries);
- for (i = 0; i < cb->nentries; i++) cb->entries[i].len = i == 2 ? 1 : 3;
- cb->ndimentions = 1;
- cb->delta = 1 << ((7 - book) * 2);
- cb->min = -cb->delta*2;
- cb->seq_p = 0;
- cb->lookup = 2;
- cb->quantlist = av_malloc(sizeof(int) * cb_lookup_vals(cb->lookup, cb->ndimentions, cb->nentries));
- for (i = 0; i < cb->nentries; i++) cb->quantlist[i] = i;
- ready_codebook(cb);
- }
-
- venc->nfloors = 1;
- venc->floors = av_malloc(sizeof(floor_t) * venc->nfloors);
-
- // just 1 floor
- fc = &venc->floors[0];
- fc->partitions = 1;
- fc->partition_to_class = av_malloc(sizeof(int) * fc->partitions);
- for (i = 0; i < fc->partitions; i++) fc->partition_to_class[i] = 0;
- fc->nclasses = 1;
- fc->classes = av_malloc(sizeof(floor_class_t) * fc->nclasses);
- for (i = 0; i < fc->nclasses; i++) {
- floor_class_t * c = &fc->classes[i];
- int j, books;
- c->dim = 1;
- c->subclass = 0;
- c->masterbook = 0;
- books = (1 << c->subclass);
- c->books = av_malloc(sizeof(int) * books);
- for (j = 0; j < books; j++) c->books[j] = 0;
- }
- fc->multiplier = 1;
- fc->rangebits = venc->blocksize[0];
-
- fc->values = 2;
- for (i = 0; i < fc->partitions; i++)
- fc->values += fc->classes[fc->partition_to_class[i]].dim;
-
- fc->list = av_malloc(sizeof(*fc->list) * fc->values);
- fc->list[0].x = 0;
- fc->list[1].x = 1 << fc->rangebits;
- for (i = 2; i < fc->values; i++) fc->list[i].x = i * 5;
-
- venc->nresidues = 1;
- venc->residues = av_malloc(sizeof(residue_t) * venc->nresidues);
-
- // single residue
- rc = &venc->residues[0];
- rc->type = 0;
- rc->begin = 0;
- rc->end = 1 << venc->blocksize[0];
- rc->partition_size = 64;
- rc->classifications = 1;
- rc->classbook = 1;
- rc->books = av_malloc(sizeof(int[8]) * rc->classifications);
- for (i = 0; i < 8; i++) rc->books[0][i] = 2 + i;
-
- venc->nmappings = 1;
- venc->mappings = av_malloc(sizeof(mapping_t) * venc->nmappings);
-
- // single mapping
- mc = &venc->mappings[0];
- mc->submaps = 1;
- mc->mux = av_malloc(sizeof(int) * venc->channels);
- for (i = 0; i < venc->channels; i++) mc->mux[i] = 0;
- mc->floor = av_malloc(sizeof(int) * mc->submaps);
- mc->residue = av_malloc(sizeof(int) * mc->submaps);
- for (i = 0; i < mc->submaps; i++) {
- mc->floor[i] = 0;
- mc->residue[i] = 0;
- }
-
- venc->nmodes = 1;
- venc->modes = av_malloc(sizeof(vorbis_mode_t) * venc->nmodes);
-
- // single mode
- venc->modes[0].blockflag = 0;
- venc->modes[0].mapping = 0;
- }
-
- static inline int ilog(unsigned int a) {
- int i;
- for (i = 0; a >> i; i++);
- return i;
- }
-
- static void put_float(PutBitContext * pb, float f) {
- int exp, mant;
- uint32_t res = 0;
- mant = (int)ldexp(frexp(f, &exp), 20);
- exp += 788 - 20;
- if (mant < 0) { res |= (1 << 31); mant = -mant; }
- res |= mant | (exp << 21);
- put_bits(pb, 32, res);
- }
-
- static void put_codebook_header(PutBitContext * pb, codebook_t * cb) {
- int i;
- int ordered = 0;
-
- put_bits(pb, 24, 0x564342); //magic
- put_bits(pb, 16, cb->ndimentions);
- put_bits(pb, 24, cb->nentries);
-
- for (i = 1; i < cb->nentries; i++) if (cb->entries[i].len < cb->entries[i-1].len) break;
- if (i == cb->nentries) ordered = 1;
-
- put_bits(pb, 1, ordered);
- if (ordered) {
- int len = cb->entries[0].len;
- put_bits(pb, 5, len);
- i = 0;
- while (i < cb->nentries) {
- int j;
- for (j = 0; j+i < cb->nentries; j++) if (cb->entries[j+i].len != len) break;
- put_bits(pb, ilog(cb->nentries - i), j);
- i += j;
- len++;
- }
- } else {
- int sparse = 0;
- for (i = 0; i < cb->nentries; i++) if (!cb->entries[i].len) break;
- if (i != cb->nentries) sparse = 1;
- put_bits(pb, 1, sparse);
-
- for (i = 0; i < cb->nentries; i++) {
- if (sparse) put_bits(pb, 1, !!cb->entries[i].len);
- if (cb->entries[i].len) put_bits(pb, 5, cb->entries[i].len - 1);
- }
- }
-
- put_bits(pb, 4, cb->lookup);
- if (cb->lookup) {
- int tmp = cb_lookup_vals(cb->lookup, cb->ndimentions, cb->nentries);
- int bits = ilog(cb->quantlist[0]);
-
- for (i = 1; i < tmp; i++) bits = FFMAX(bits, ilog(cb->quantlist[i]));
-
- put_float(pb, cb->min);
- put_float(pb, cb->delta);
-
- put_bits(pb, 4, bits - 1);
- put_bits(pb, 1, cb->seq_p);
-
- for (i = 0; i < tmp; i++) put_bits(pb, bits, cb->quantlist[i]);
- }
- }
-
- static void put_floor_header(PutBitContext * pb, floor_t * fc) {
- int i;
-
- put_bits(pb, 16, 1); // type, only floor1 is supported
-
- put_bits(pb, 5, fc->partitions);
-
- for (i = 0; i < fc->partitions; i++) put_bits(pb, 4, fc->partition_to_class[i]);
-
- 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);
-
- if (fc->classes[i].subclass) put_bits(pb, 8, fc->classes[i].masterbook);
-
- books = (1 << fc->classes[i].subclass);
-
- for (j = 0; j < books; j++) put_bits(pb, 8, fc->classes[i].books[j] + 1);
- }
-
- put_bits(pb, 2, fc->multiplier - 1);
- put_bits(pb, 4, fc->rangebits);
-
- for (i = 2; i < fc->values; i++) put_bits(pb, fc->rangebits, fc->list[i].x);
- }
-
- static void put_residue_header(PutBitContext * pb, residue_t * rc) {
- 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);
- put_bits(pb, 6, rc->classifications - 1);
- put_bits(pb, 8, rc->classbook);
-
- for (i = 0; i < rc->classifications; i++) {
- int j, tmp = 0;
- for (j = 0; j < 8; j++) tmp |= (!!rc->books[i][j]) << j;
-
- put_bits(pb, 3, tmp & 7);
- put_bits(pb, 1, tmp > 7);
-
- if (tmp > 7) put_bits(pb, 5, tmp >> 3);
- }
-
- for (i = 0; i < rc->classifications; i++) {
- int j;
- for (j = 0; j < 8; j++)
- if (rc->books[i][j])
- put_bits(pb, 8, rc->books[i][j]);
- }
- }
-
- static int put_main_header(venc_context_t * venc, uint8_t ** out) {
- int i;
- PutBitContext pb;
- uint8_t buffer[50000] = {0}, * p = buffer;
- int buffer_len = sizeof buffer;
- int len, hlens[3];
-
- // identification header
- init_put_bits(&pb, p, buffer_len);
- put_bits(&pb, 8, 1); //magic
- for (i = 0; "vorbis"[i]; i++) put_bits(&pb, 8, "vorbis"[i]);
- put_bits(&pb, 32, 0); // version
- put_bits(&pb, 8, venc->channels);
- put_bits(&pb, 32, venc->sample_rate);
- put_bits(&pb, 32, 0); // bitrate
- put_bits(&pb, 32, 0); // bitrate
- put_bits(&pb, 32, 0); // bitrate
- put_bits(&pb, 4, venc->blocksize[0]);
- put_bits(&pb, 4, venc->blocksize[1]);
- put_bits(&pb, 1, 1); // framing
-
- flush_put_bits(&pb);
- hlens[0] = (put_bits_count(&pb) + 7) / 8;
- buffer_len -= hlens[0];
- p += hlens[0];
-
- // comment header
- init_put_bits(&pb, p, buffer_len);
- put_bits(&pb, 8, 3); //magic
- for (i = 0; "vorbis"[i]; i++) put_bits(&pb, 8, "vorbis"[i]);
- put_bits(&pb, 32, 0); // vendor length TODO
- put_bits(&pb, 32, 0); // amount of comments
- put_bits(&pb, 1, 1); // framing
-
- flush_put_bits(&pb);
- hlens[1] = (put_bits_count(&pb) + 7) / 8;
- buffer_len -= hlens[1];
- p += hlens[1];
-
- // setup header
- init_put_bits(&pb, p, buffer_len);
- put_bits(&pb, 8, 5); //magic
- for (i = 0; "vorbis"[i]; i++) put_bits(&pb, 8, "vorbis"[i]);
-
- // codebooks
- put_bits(&pb, 8, venc->ncodebooks - 1);
- for (i = 0; i < venc->ncodebooks; i++) put_codebook_header(&pb, &venc->codebooks[i]);
-
- // time domain, reserved, zero
- put_bits(&pb, 6, 0);
- put_bits(&pb, 16, 0);
-
- // floors
- put_bits(&pb, 6, venc->nfloors - 1);
- for (i = 0; i < venc->nfloors; i++) put_floor_header(&pb, &venc->floors[i]);
-
- // residues
- put_bits(&pb, 6, venc->nresidues - 1);
- for (i = 0; i < venc->nresidues; i++) put_residue_header(&pb, &venc->residues[i]);
-
- // mappings
- put_bits(&pb, 6, venc->nmappings - 1);
- for (i = 0; i < venc->nmappings; i++) {
- mapping_t * mc = &venc->mappings[i];
- int j;
- put_bits(&pb, 16, 0); // mapping type
-
- put_bits(&pb, 1, mc->submaps > 1);
- if (mc->submaps > 1) put_bits(&pb, 4, mc->submaps - 1);
-
- put_bits(&pb, 1, 0); // channel coupling
-
- put_bits(&pb, 2, 0); // reserved
-
- if (mc->submaps > 1) for (j = 0; j < venc->channels; j++) put_bits(&pb, 4, mc->mux[j]);
-
- 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]);
- }
- }
-
- // 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);
- }
-
- put_bits(&pb, 1, 1); // framing
-
- flush_put_bits(&pb);
- hlens[2] = (put_bits_count(&pb) + 7) / 8;
-
- 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];
- }
-
- return p - *out;
- }
-
- static int vorbis_encode_init(AVCodecContext * avccontext)
- {
- venc_context_t * venc = avccontext->priv_data;
-
- create_vorbis_context(venc, avccontext);
-
- //if (avccontext->flags & CODEC_FLAG_QSCALE) avccontext->global_quality / (float)FF_QP2LAMBDA); else avccontext->bit_rate;
- //if(avccontext->cutoff > 0) cfreq = avccontext->cutoff / 1000.0;
-
- avccontext->extradata_size = put_main_header(venc, (uint8_t**)&avccontext->extradata);
-
- avccontext->frame_size = 1 << venc->blocksize[0];
-
- avccontext->coded_frame = avcodec_alloc_frame();
- avccontext->coded_frame->key_frame = 1;
-
- return 0;
- }
-
-
- static int vorbis_encode_frame(AVCodecContext * avccontext, unsigned char * packets, int buf_size, void *data)
- {
- #if 0
- venc_context_t * venc = avccontext->priv_data;
- signed short * audio = data;
- int samples = data ? avccontext->frame_size : 0;
-
- avccontext->coded_frame->pts = av_rescale_q(op2->granulepos, (AVRational){1, avccontext->sample_rate}, avccontext->time_base);
- memcpy(packets, compressed_frame, l);
- #endif
- return data ? 50 : 0;
- }
-
-
- static int vorbis_encode_close(AVCodecContext * avccontext)
- {
- venc_context_t * venc = avccontext->priv_data;
- int i;
-
- if (venc->codebooks) for (i = 0; i < venc->ncodebooks; i++) {
- av_freep(&venc->codebooks[i].entries);
- av_freep(&venc->codebooks[i].quantlist);
- av_freep(&venc->codebooks[i].dimentions);
- }
- av_freep(&venc->codebooks);
-
- if (venc->floors) for (i = 0; i < venc->nfloors; i++) {
- int j;
- av_freep(&venc->floors[i].classes);
- if (venc->floors[i].classes)
- for (j = 0; j < venc->floors[i].nclasses; j++)
- av_freep(&venc->floors[i].classes[j].books);
- av_freep(&venc->floors[i].partition_to_class);
- av_freep(&venc->floors[i].list);
- }
- av_freep(&venc->floors);
-
- if (venc->residues) for (i = 0; i < venc->nresidues; i++) {
- av_freep(&venc->residues[i].books);
- }
- av_freep(&venc->residues);
-
- 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);
- }
- av_freep(&venc->mappings);
-
- av_freep(&venc->modes);
-
- av_freep(&avccontext->coded_frame);
- av_freep(&avccontext->extradata);
-
- return 0 ;
- }
-
- AVCodec oggvorbis_encoder = {
- "vorbis",
- CODEC_TYPE_AUDIO,
- CODEC_ID_VORBIS,
- sizeof(venc_context_t),
- vorbis_encode_init,
- vorbis_encode_frame,
- vorbis_encode_close,
- .capabilities= CODEC_CAP_DELAY,
- };
|