Fix compile error with global-motion + highbitdepth

Change-Id: If6b80d302a24db35f0e214865ddcdaae195dc032
This commit is contained in:
David Barker 2017-02-13 16:58:52 +00:00 коммит произвёл Debargha Mukherjee
Родитель 925e83c5f3
Коммит 338e135ce7
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -698,9 +698,9 @@ static void highbd_warp_plane(WarpedMotionParams *wm, uint8_t *ref8, int width,
if (mat[2] == 0) {
// assert(0 &&
// "Warped motion model is incompatible with new warp filter");
warp_plane_old(wm, ref, width, height, stride, pred, p_col, p_row,
p_width, p_height, p_stride, subsampling_x, subsampling_y,
x_scale, y_scale, ref_frm);
highbd_warp_plane_old(wm, ref8, width, height, stride, pred8, p_col,
p_row, p_width, p_height, p_stride, subsampling_x,
subsampling_y, x_scale, y_scale, bd, ref_frm);
return;
}