Home
last modified time | relevance | path

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

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
Dencodeframe.c954 int tot_count; in vp8_encode_frame() local
960 tot_count = segment_counts[0] + segment_counts[1] + segment_counts[2] + segment_counts[3]; in vp8_encode_frame()
962 if (tot_count) in vp8_encode_frame()
964 … xd->mb_segment_tree_probs[0] = ((segment_counts[0] + segment_counts[1]) * 255) / tot_count; in vp8_encode_frame()
966 tot_count = segment_counts[0] + segment_counts[1]; in vp8_encode_frame()
968 if (tot_count > 0) in vp8_encode_frame()
970 xd->mb_segment_tree_probs[1] = (segment_counts[0] * 255) / tot_count; in vp8_encode_frame()
973 tot_count = segment_counts[2] + segment_counts[3]; in vp8_encode_frame()
975 if (tot_count > 0) in vp8_encode_frame()
976 xd->mb_segment_tree_probs[2] = (segment_counts[2] * 255) / tot_count; in vp8_encode_frame()