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:
James Zern 2016-05-19 19:19:19 -07:00
Родитель fa5d54f937
Коммит 971c5a16a9
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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;