Home
last modified time | relevance | path

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

/external/libaom/libaom/av1/encoder/
Dmotion_search_facade.c217 int sum_weight = 0; in av1_single_motion_search() local
233 sum_weight += cand[m].weight; in av1_single_motion_search()
234 if (m >= 2 || 4 * sum_weight > 3 * total_weight) break; in av1_single_motion_search()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_firstpass.c563 int sum_weight = 0; in fp_estimate_point_noise() local
583 sum_weight += *kernal_ptr; in fp_estimate_point_noise()
593 dn_val = (sum_val + (sum_weight >> 1)) / sum_weight; in fp_estimate_point_noise()
604 int sum_weight = 0; in fp_highbd_estimate_point_noise() local
626 sum_weight += *kernal_ptr; in fp_highbd_estimate_point_noise()
636 dn_val = (sum_val + (sum_weight >> 1)) / sum_weight; in fp_highbd_estimate_point_noise()
Dvp9_encoder.c4702 int *sum_weight) { argument
4704 *sum_weight += point_weight;
4711 int sum_weight = 0; local
4743 &sum_val, &sum_weight);
4750 *src_ptr = (uint8_t)((sum_val + (sum_weight >> 1)) / sum_weight);
4756 int sum_weight = 0; local
4788 &sum_val, &sum_weight);
4795 *src_ptr = (uint16_t)((sum_val + (sum_weight >> 1)) / sum_weight);