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:
Родитель
fa5d54f937
Коммит
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;
|
||||
|
|
Загрузка…
Ссылка в новой задаче