+ (sign&1) -> -sign (1 instruction less)
Originally committed as revision 5253 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
ac2549b583
commit
e7e2025a53
@ -1291,7 +1291,7 @@ static int decode_block(MJpegDecodeContext *s, DCTELEM *block,
|
|||||||
{
|
{
|
||||||
int cache=GET_CACHE(re,gb);
|
int cache=GET_CACHE(re,gb);
|
||||||
int sign=(~cache)>>31;
|
int sign=(~cache)>>31;
|
||||||
level = (NEG_USR32(sign ^ cache,code) ^ sign) + (sign&1) ;
|
level = (NEG_USR32(sign ^ cache,code) ^ sign) - sign;
|
||||||
}
|
}
|
||||||
|
|
||||||
LAST_SKIP_BITS(re, &s->gb, code)
|
LAST_SKIP_BITS(re, &s->gb, code)
|
||||||
|
Loading…
Reference in New Issue
Block a user