diff cabac.h @ 3946:ab0797f2e397 libavcodec

() 10l
author michael
date Sat, 07 Oct 2006 12:41:55 +0000
parents 811a9b0d9f32
children c8c591fe26f8
line wrap: on
line diff
--- a/cabac.h	Sat Oct 07 11:46:35 2006 +0000
+++ b/cabac.h	Sat Oct 07 12:41:55 2006 +0000
@@ -256,7 +256,7 @@
 static void refill(CABACContext *c){
     if(c->bytestream <= c->bytestream_end)
 #if CABAC_BITS == 16
-        c->low+= ((c->bytestream[0]<<9) + (c->bytestream[1])<<1);
+        c->low+= (c->bytestream[0]<<9) + (c->bytestream[1]<<1);
 #else
         c->low+= c->bytestream[0]<<1;
 #endif