Mercurial > libavcodec.hg
changeset 3946:ab0797f2e397 libavcodec
() 10l
author | michael |
---|---|
date | Sat, 07 Oct 2006 12:41:55 +0000 |
parents | 9544ad38f02a |
children | c8c591fe26f8 |
files | cabac.h |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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