mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 12:09:55 +00:00
add parenthesis, fix warning: i386/dsputil_mmx.c:2618: warning: suggest parentheses around arithmetic in operand of |
Originally committed as revision 11673 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
afa4778989
commit
066e0cc50d
@ -2615,8 +2615,8 @@ static void gmc_mmx(uint8_t *dst, uint8_t *src, int stride, int h, int ox, int o
|
||||
const int dxh = dxy*(h-1);
|
||||
const int dyw = dyx*(w-1);
|
||||
if( // non-constant fullpel offset (3% of blocks)
|
||||
(ox^(ox+dxw) | ox^(ox+dxh) | ox^(ox+dxw+dxh) |
|
||||
oy^(oy+dyw) | oy^(oy+dyh) | oy^(oy+dyw+dyh)) >> (16+shift)
|
||||
((ox^(ox+dxw)) | (ox^(ox+dxh)) | (ox^(ox+dxw+dxh)) |
|
||||
(oy^(oy+dyw)) | (oy^(oy+dyh)) | (oy^(oy+dyw+dyh))) >> (16+shift)
|
||||
// uses more than 16 bits of subpel mv (only at huge resolution)
|
||||
|| (dxx|dxy|dyx|dyy)&15 )
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user