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

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


Author: ods15
Date: Mon Oct  2 07:56:16 2006
New Revision: 6443

Modified:
   trunk/libavcodec/vorbis_enc.c

Log:
Original Commit: r35 | ods15 | 2006-09-22 18:53:22 +0300 (Fri, 22 Sep 2006) | 4 lines

another off by one

header writing seems compliant now!

Modified: trunk/libavcodec/vorbis_enc.c
==============================================================================
--- trunk/libavcodec/vorbis_enc.c	(original)
+++ trunk/libavcodec/vorbis_enc.c	Mon Oct  2 07:56:16 2006
@@ -433,7 +433,7 @@
     put_bits(pb, 24, rc->begin);
     put_bits(pb, 24, rc->end);
     put_bits(pb, 24, rc->partition_size - 1);
-    put_bits(pb, 6, rc->classifications);
+    put_bits(pb, 6, rc->classifications - 1);
     put_bits(pb, 8, rc->classbook);
 
     for (i = 0; i < rc->classifications; i++) {




More information about the ffmpeg-cvslog mailing list