Commit 19b00cf1 authored by Oded Shimon's avatar Oded Shimon

Original Commit: r43 | ods15 | 2006-09-23 10:53:46 +0300 (Sat, 23 Sep 2006) | 2 lines

change residue codebook dimentions

Originally committed as revision 6451 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 4317306f
......@@ -243,12 +243,12 @@ static void create_vorbis_context(venc_context_t * venc, AVCodecContext * avccon
cb->quantlist = NULL;
ready_codebook(cb);
// codebook 1 - residue classbook, values 0..1, dimentions 200
// codebook 1 - residue classbook, values 0..1, dimentions 4
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->ndimentions = 4;
cb->min = 0.;
cb->delta = 0.;
cb->seq_p = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment