warped_motion: Fix ubsan warning for signed integer overflow

Change-Id: Ie698aa02ef56128759c71079e9bfa1af25149644
This commit is contained in:
Sarah Parker 2016-10-26 12:46:03 -07:00 коммит произвёл James Zern
Родитель 565f788de9
Коммит db92635745
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -215,7 +215,7 @@ static int32_t do_cubic_filter(int32_t *p, int x) {
} else if (x == (1 << WARPEDPIXEL_PREC_BITS)) {
return p[1];
} else {
const int64_t v1 = x * x * x * (3 * (p[0] - p[1]) + p[2] - p[-1]);
const int64_t v1 = (int64_t)x * x * x * (3 * (p[0] - p[1]) + p[2] - p[-1]);
const int64_t v2 = x * x * (2 * p[-1] - 5 * p[0] + 4 * p[1] - p[2]);
const int64_t v3 = x * (p[1] - p[-1]);
const int64_t v4 = 2 * p[0];