HomeSort by relevance Sort by last modified time
    Searched refs:tot_count (Results 1 - 2 of 2) sorted by null

  /external/libvpx/vp8/encoder/
encodeframe.c 801 int tot_count; local
807 tot_count = segment_counts[0] + segment_counts[1] + segment_counts[2] + segment_counts[3];
809 if (tot_count)
811 xd->mb_segment_tree_probs[0] = ((segment_counts[0] + segment_counts[1]) * 255) / tot_count;
813 tot_count = segment_counts[0] + segment_counts[1];
815 if (tot_count > 0)
817 xd->mb_segment_tree_probs[1] = (segment_counts[0] * 255) / tot_count;
820 tot_count = segment_counts[2] + segment_counts[3];
822 if (tot_count > 0)
823 xd->mb_segment_tree_probs[2] = (segment_counts[2] * 255) / tot_count;
    [all...]
  /external/speex/libspeex/
jitter.c 182 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 41 milliseconds