[SCM] libav/experimental: () 10l

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 15:51:52 UTC 2013


The following commit has been merged in the experimental branch:
commit 2ae7569dc89f2877c7544c05d4dea4c0b597ce09
Author: Michael Niedermayer <michaelni at gmx.at>
Date:   Sat Oct 7 12:41:55 2006 +0000

    () 10l
    
    Originally committed as revision 6576 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavcodec/cabac.h b/libavcodec/cabac.h
index 333b82a..7bef0ea 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

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list