Prevent integer overflow in choose_partitioning

Re-arrange the multiplication and right shift operations to avoid
integer overflow in choose_partitioning.

Change-Id: Ib4005cafb410a67c1960486471d75b6ebe38c4e0
This commit is contained in:
Jingning Han 2015-03-11 16:29:13 -07:00
Родитель 313c28f8b8
Коммит 238b6be24b
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -611,12 +611,12 @@ static void choose_partitioning(VP9_COMP *cpi,
const BLOCK_SIZE bs = get_plane_block_size(bsize, pd);
if (bs == BLOCK_INVALID)
uv_sad = INT_MAX;
uv_sad = UINT_MAX;
else
uv_sad = cpi->fn_ptr[bs].sdf(p->src.buf, p->src.stride,
pd->dst.buf, pd->dst.stride);
x->color_sensitivity[i - 1] = uv_sad * 4 > y_sad;
x->color_sensitivity[i - 1] = uv_sad > (y_sad >> 2);
}
d = xd->plane[0].dst.buf;