From 2ae7569dc89f2877c7544c05d4dea4c0b597ce09 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sat, 7 Oct 2006 12:41:55 +0000 Subject: [PATCH] () 10l Originally committed as revision 6576 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/cabac.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/cabac.h b/libavcodec/cabac.h index 333b82a04e..7bef0ea8a1 100644 --- a/libavcodec/cabac.h +++ b/libavcodec/cabac.h @@ -256,7 +256,7 @@ static void put_cabac_ueg(CABACContext *c, uint8_t * state, int v, int max, int 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