[Ffmpeg-cvslog] r6450 - trunk/libavcodec/vorbis_enc.c

ods15 subversion
Mon Oct 2 07:56:33 CEST 2006


Author: ods15
Date: Mon Oct  2 07:56:32 2006
New Revision: 6450

Modified:
   trunk/libavcodec/vorbis_enc.c

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

fix for residue end

Modified: trunk/libavcodec/vorbis_enc.c
==============================================================================
--- trunk/libavcodec/vorbis_enc.c	(original)
+++ trunk/libavcodec/vorbis_enc.c	Mon Oct  2 07:56:32 2006
@@ -311,7 +311,7 @@
     rc = &venc->residues[0];
     rc->type = 0;
     rc->begin = 0;
-    rc->end = 1 << venc->blocksize[0];
+    rc->end = 1 << (venc->blocksize[0] - 1);
     rc->partition_size = 64;
     rc->classifications = 1;
     rc->classbook = 1;




More information about the ffmpeg-cvslog mailing list