Lines Matching defs:match_count
106 int diagonal_ref, match_count;
119 match_count = (diagonal_ref == ref) + (top_ref == ref) + (left_ref == ref);
120 ff_tlog(h->avctx, "pred_motion match_count=%d\n", match_count);
121 if (match_count > 1) { //most common
124 } else if (match_count == 1) {
263 int top_ref, left_ref, diagonal_ref, match_count, mx, my;
326 match_count = !diagonal_ref + !top_ref + !left_ref;
327 ff_tlog(h->avctx, "pred_pskip_motion match_count=%d\n", match_count);
328 if (match_count > 1) {
331 } else if (match_count == 1) {