Home
last modified time | relevance | path

Searched refs:inliers_tmp (Results 1 – 1 of 1) sorted by relevance

/external/libaom/libaom/av1/encoder/
Dglobal_motion.c381 int *inliers_tmp = (int *)aom_malloc(2 * MAX_CORNERS * sizeof(*inliers_tmp)); in get_inliers_from_indices() local
382 memset(inliers_tmp, 0, 2 * MAX_CORNERS * sizeof(*inliers_tmp)); in get_inliers_from_indices()
386 inliers_tmp[2 * i] = correspondences[4 * index]; in get_inliers_from_indices()
387 inliers_tmp[2 * i + 1] = correspondences[4 * index + 1]; in get_inliers_from_indices()
389 memcpy(params->inliers, inliers_tmp, sizeof(*inliers_tmp) * 2 * MAX_CORNERS); in get_inliers_from_indices()
390 aom_free(inliers_tmp); in get_inliers_from_indices()