diff options
-rw-r--r-- | libavcodec/cabac.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 |