vp8/error_concealment: remove shift of negative value
fixes: shifting a negative signed value is undefined [-Wshift-negative-value] Change-Id: I3a55f2dac7c51c0e264d40081ffce98e2abacb89
This commit is contained in:
parent
fa5d54f937
commit
971c5a16a9
@ -194,7 +194,7 @@ void vp8_calculate_overlaps(MB_OVERLAP *overlap_ul,
|
||||
return;
|
||||
}
|
||||
|
||||
if (new_row <= (-4 << 3) || new_col <= (-4 << 3))
|
||||
if (new_row <= -32 || new_col <= -32)
|
||||
{
|
||||
/* outside the frame */
|
||||
return;
|
||||
|
Loading…
x
Reference in New Issue
Block a user