mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 20:19:55 +00:00
Original Commit: r16 | ods15 | 2006-09-22 12:27:17 +0300 (Fri, 22 Sep 2006) | 2 lines
minimum size for a huffman table is 2 entries, 1bit Originally committed as revision 6427 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
53261080b9
commit
1495689c5b
@ -186,9 +186,9 @@ static void create_vorbis_context(venc_context_t * venc, AVCodecContext * avccon
|
||||
cb->quantlist = NULL;
|
||||
ready_codebook(cb);
|
||||
|
||||
// codebook 2 - residue classbook, values 0..0, dimentions 200
|
||||
// codebook 2 - residue classbook, values 0..1, dimentions 200
|
||||
cb = &venc->codebooks[1];
|
||||
cb->nentries = 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;
|
||||
|
Loading…
Reference in New Issue
Block a user