Home
last modified time | relevance | path

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

/external/libgav1/libgav1/src/utils/
Dtypes.h109 return ref_mv_stack[7 - (weight_index_stack[stack_index] & 7)]; in reference_mv()
112 return compound_ref_mv_stack[7 - (weight_index_stack[stack_index] & 7)] in reference_mv()
117 weight_index_stack[index] += weight << 3; in IncreaseWeight()
121 weight_index_stack[index] = (weight << 3) + 7 - index; in SetWeightIndexStackEntry()
151 int16_t weight_index_stack[kMaxRefMvStackSize]; member
/external/libgav1/libgav1/src/
Dmotion_vector.cc662 int16_t* const weight_index_stack) { in SortWeightIndexStack() argument
666 int weight_index_0 = weight_index_stack[0]; in SortWeightIndexStack()
667 int weight_index_1 = weight_index_stack[1]; in SortWeightIndexStack()
670 int weight_index_2 = weight_index_stack[2]; in SortWeightIndexStack()
673 weight_index_stack[2] = weight_index_2; in SortWeightIndexStack()
675 weight_index_stack[0] = weight_index_0; in SortWeightIndexStack()
676 weight_index_stack[1] = weight_index_1; in SortWeightIndexStack()
681 int16_t max_element = weight_index_stack[0]; in SortWeightIndexStack()
684 max_element = std::max(max_element, weight_index_stack[i]); in SortWeightIndexStack()
686 weight_index_stack[0] = max_element; in SortWeightIndexStack()
[all …]