# HG changeset patch # User michael # Date 1160224915 0 # Node ID ab0797f2e3971db85f22fffd579b6ae10b7b658c # Parent 9544ad38f02ad56391c5897b3c00649ca4746bf1 () 10l diff -r 9544ad38f02a -r ab0797f2e397 cabac.h --- 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