Commit c78295ad authored by Michael Niedermayer's avatar Michael Niedermayer

Optimize level_code computation, 6cpu cycles speedup.

Originally committed as revision 21428 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent f1d2b572
......@@ -441,7 +441,7 @@ static int decode_residual(H264Context *h, GetBitContext *gb, DCTELEM *block, in
mask= -(level_code&1);
level[trailing_ones]= (((2+level_code)>>1) ^ mask) - mask;
}else{
if(trailing_ones < 3) level_code += (level_code>>31)|1;
level_code += ((level_code>>31)|1) & -(trailing_ones < 3);
suffix_length = 1;
if(level_code + 3U > 6U)
......
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