Commit bf343f0d authored by michael's avatar michael

() 10l


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@6576 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 83677636
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment