[xiph-commits] r12835 - trunk/theora/lib
tterribe at svn.xiph.org
tterribe at svn.xiph.org
Sun Apr 8 06:04:58 PDT 2007
Author: tterribe
Date: 2007-04-08 06:04:56 -0700 (Sun, 08 Apr 2007)
New Revision: 12835
Modified:
trunk/theora/lib/quant.c
Log:
Fix copy/paste error in the INTRA UV zero bin size.
Thanks to maikmerten.
Modified: trunk/theora/lib/quant.c
===================================================================
--- trunk/theora/lib/quant.c 2007-04-08 09:40:52 UTC (rev 12834)
+++ trunk/theora/lib/quant.c 2007-04-08 13:04:56 UTC (rev 12835)
@@ -551,7 +551,7 @@
void select_UV_quantiser ( PB_INSTANCE *pbi ){
pbi->fquant_coeffs = pbi->fp_quant_UV_coeffs;
pbi->fquant_round = pbi->fp_quant_UV_round;
- pbi->fquant_ZbSize = pbi->fp_quant_UV_round;
+ pbi->fquant_ZbSize = pbi->fp_ZeroBinSize_UV;
}
void select_InterUV_quantiser ( PB_INSTANCE *pbi ){
More information about the commits
mailing list