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

/external/libvpx/libvpx/vp8/encoder/
H A Dencodeframe.c895 int tot_count; local
901 tot_count = segment_counts[0] + segment_counts[1] + segment_counts[2] +
904 if (tot_count) {
906 ((segment_counts[0] + segment_counts[1]) * 255) / tot_count;
908 tot_count = segment_counts[0] + segment_counts[1];
910 if (tot_count > 0) {
911 xd->mb_segment_tree_probs[1] = (segment_counts[0] * 255) / tot_count;
914 tot_count = segment_counts[2] + segment_counts[3];
916 if (tot_count > 0) {
917 xd->mb_segment_tree_probs[2] = (segment_counts[2] * 255) / tot_count;
[all...]
/external/speex/libspeex/
H A Djitter.c182 int tot_count; local
193 tot_count = 0;
195 tot_count += tb[i].curr_count;
196 if (tot_count==0)
201 late_factor = jitter->latency_tradeoff * 100.0f / tot_count;
203 late_factor = jitter->auto_tradeoff * jitter->window_size/tot_count;
265 if (tot_count < TOP_DELAY && opt > 0)

Completed in 126 milliseconds