[Ffmpeg-cvslog] r6576 - trunk/libavcodec/cabac.h
michael
subversion
Sat Oct 7 14:41:55 CEST 2006
Author: michael
Date: Sat Oct 7 14:41:55 2006
New Revision: 6576
Modified:
trunk/libavcodec/cabac.h
Log:
() 10l
Modified: trunk/libavcodec/cabac.h
==============================================================================
--- trunk/libavcodec/cabac.h (original)
+++ trunk/libavcodec/cabac.h Sat Oct 7 14:41:55 2006
@@ -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
More information about the ffmpeg-cvslog
mailing list