Commit 04ef159f authored by ods15's avatar ods15

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

fix for residue end

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@6450 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent f107ab75
...@@ -311,7 +311,7 @@ static void create_vorbis_context(venc_context_t * venc, AVCodecContext * avccon ...@@ -311,7 +311,7 @@ static void create_vorbis_context(venc_context_t * venc, AVCodecContext * avccon
rc = &venc->residues[0]; rc = &venc->residues[0];
rc->type = 0; rc->type = 0;
rc->begin = 0; rc->begin = 0;
rc->end = 1 << venc->blocksize[0]; rc->end = 1 << (venc->blocksize[0] - 1);
rc->partition_size = 64; rc->partition_size = 64;
rc->classifications = 1; rc->classifications = 1;
rc->classbook = 1; rc->classbook = 1;
......
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