mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
+ (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 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)
|
||||
|
Loading…
Reference in New Issue
Block a user