[xiph-commits] r16277 - branches/theora-thusnelda/lib/dec

tterribe at svn.xiph.org tterribe at svn.xiph.org
Tue Jul 14 04:59:11 PDT 2009


Author: tterribe
Date: 2009-07-14 04:59:11 -0700 (Tue, 14 Jul 2009)
New Revision: 16277

Modified:
   branches/theora-thusnelda/lib/dec/huffdec.c
Log:
Fix a compile error in r16276.


Modified: branches/theora-thusnelda/lib/dec/huffdec.c
===================================================================
--- branches/theora-thusnelda/lib/dec/huffdec.c	2009-07-14 11:43:52 UTC (rev 16276)
+++ branches/theora-thusnelda/lib/dec/huffdec.c	2009-07-14 11:59:11 UTC (rev 16277)
@@ -75,7 +75,7 @@
     OC_HUFF_SLUSH (defined below) would have to be at least 27 to actually read
      32 bits in a single go, and would require a 32 GB lookup table (assuming
      8 byte pointers, since 4 byte pointers couldn't fit such a table).*/
-  _b->window=window<<=_bits;
+  _b->window<<=_bits;
   _b->bits-=_bits;
 }
 



More information about the commits mailing list