From c2942b9e35f557684c39dfd792b0cd1eae85bf2b Mon Sep 17 00:00:00 2001 From: tterribe Date: Sun, 8 Apr 2007 13:04:56 +0000 Subject: [PATCH] Fix copy/paste error in the INTRA UV zero bin size. Thanks to maikmerten. git-svn-id: http://svn.xiph.org/trunk@12835 0101bb08-14d6-0310-b084-bc0e0c8e3800 --- theora/lib/quant.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/theora/lib/quant.c b/theora/lib/quant.c index 9657517b5..893dc4751 100644 --- a/theora/lib/quant.c +++ b/theora/lib/quant.c @@ -551,7 +551,7 @@ void select_Inter_quantiser ( PB_INSTANCE *pbi ){ 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 ){ -- 2.11.4.GIT