summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2006-10-07 12:41:55 +0000
committerMichael Niedermayer <michaelni@gmx.at>2006-10-07 12:41:55 +0000
commit2ae7569dc89f2877c7544c05d4dea4c0b597ce09 (patch)
treecfb25cf1f937681919dde11658093f1986de8510
parentd4165a8190b1c1a1667a7d2c24ebcb1a706a6fdd (diff)
() 10l
Originally committed as revision 6576 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavcodec/cabac.h2
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