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
This commit is contained in:
Oded Shimon 2006-10-02 05:56:35 +00:00
parent 4317306f34
commit 19b00cf16e
1 changed files with 2 additions and 2 deletions

View File

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