mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 20:19:55 +00:00
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:
parent
4317306f34
commit
19b00cf16e
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user