[ibc] Remove check_mv_cost_satd since it is not needed and causes an error, fixes #23

This commit is contained in:
Marko Viitanen 2024-09-08 12:21:01 +03:00
parent 0c1a830dc1
commit 6999e44841

View file

@ -219,38 +219,6 @@ static uint32_t calculate_ibc_cost_sad(ibc_search_info_t *info, const cu_loc_t*
return cost; return cost;
} }
static bool check_mv_cost_satd(ibc_search_info_t *info,
int x,
int y,
double *best_cost,
double* best_bits,
vector2d_t *best_mv)
{
if (!intmv_within_ibc_range(info, x, y)) return false;
double cost = calculate_ibc_cost_satd(info->state, info->lcu, &info->origin, x, y);
if (cost >= *best_cost) return false;
cost += info->mvd_cost_func(
info->state,
x, y, INTERNAL_MV_PREC,
info->mv_cand,
NULL,
0,
0,
best_bits
);
if (cost >= *best_cost) return false;
// Set to motion vector in internal pixel precision.
best_mv->x = x * (1 << INTERNAL_MV_PREC);
best_mv->y = y * (1 << INTERNAL_MV_PREC);
*best_cost = cost;
return true;
}
/** /**
* \brief Calculate cost for an integer motion vector. * \brief Calculate cost for an integer motion vector.
* *