Coverage Report

Created: 2025-08-28 06:29

/src/libvpx/vp8/common/findnearmv.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 *  Copyright (c) 2010 The WebM project authors. All Rights Reserved.
3
 *
4
 *  Use of this source code is governed by a BSD-style license
5
 *  that can be found in the LICENSE file in the root of the source
6
 *  tree. An additional intellectual property rights grant can be found
7
 *  in the file PATENTS.  All contributing project authors may
8
 *  be found in the AUTHORS file in the root of the source tree.
9
 */
10
11
#include "findnearmv.h"
12
13
const unsigned char vp8_mbsplit_offset[4][16] = {
14
  { 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
15
  { 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
16
  { 0, 2, 8, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
17
  { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 }
18
};
19
20
/* Predict motion vectors using those from already-decoded nearby blocks.
21
   Note that we only consider one 4x4 subblock from each candidate 16x16
22
   macroblock.   */
23
void vp8_find_near_mvs(MACROBLOCKD *xd, const MODE_INFO *here, int_mv *nearest,
24
                       int_mv *nearby, int_mv *best_mv, int near_mv_ref_cnts[4],
25
0
                       int refframe, int *ref_frame_sign_bias) {
26
0
  const MODE_INFO *above = here - xd->mode_info_stride;
27
0
  const MODE_INFO *left = here - 1;
28
0
  const MODE_INFO *aboveleft = above - 1;
29
0
  int_mv near_mvs[4];
30
0
  int_mv *mv = near_mvs;
31
0
  int *cntx = near_mv_ref_cnts;
32
0
  enum { CNT_INTRA, CNT_NEAREST, CNT_NEAR, CNT_SPLITMV };
33
34
  /* Zero accumulators */
35
0
  mv[0].as_int = mv[1].as_int = mv[2].as_int = 0;
36
0
  near_mv_ref_cnts[0] = near_mv_ref_cnts[1] = near_mv_ref_cnts[2] =
37
0
      near_mv_ref_cnts[3] = 0;
38
39
  /* Process above */
40
0
  if (above->mbmi.ref_frame != INTRA_FRAME) {
41
0
    if (above->mbmi.mv.as_int) {
42
0
      (++mv)->as_int = above->mbmi.mv.as_int;
43
0
      mv_bias(ref_frame_sign_bias[above->mbmi.ref_frame], refframe, mv,
44
0
              ref_frame_sign_bias);
45
0
      ++cntx;
46
0
    }
47
48
0
    *cntx += 2;
49
0
  }
50
51
  /* Process left */
52
0
  if (left->mbmi.ref_frame != INTRA_FRAME) {
53
0
    if (left->mbmi.mv.as_int) {
54
0
      int_mv this_mv;
55
56
0
      this_mv.as_int = left->mbmi.mv.as_int;
57
0
      mv_bias(ref_frame_sign_bias[left->mbmi.ref_frame], refframe, &this_mv,
58
0
              ref_frame_sign_bias);
59
60
0
      if (this_mv.as_int != mv->as_int) {
61
0
        (++mv)->as_int = this_mv.as_int;
62
0
        ++cntx;
63
0
      }
64
65
0
      *cntx += 2;
66
0
    } else {
67
0
      near_mv_ref_cnts[CNT_INTRA] += 2;
68
0
    }
69
0
  }
70
71
  /* Process above left */
72
0
  if (aboveleft->mbmi.ref_frame != INTRA_FRAME) {
73
0
    if (aboveleft->mbmi.mv.as_int) {
74
0
      int_mv this_mv;
75
76
0
      this_mv.as_int = aboveleft->mbmi.mv.as_int;
77
0
      mv_bias(ref_frame_sign_bias[aboveleft->mbmi.ref_frame], refframe,
78
0
              &this_mv, ref_frame_sign_bias);
79
80
0
      if (this_mv.as_int != mv->as_int) {
81
0
        (++mv)->as_int = this_mv.as_int;
82
0
        ++cntx;
83
0
      }
84
85
0
      *cntx += 1;
86
0
    } else {
87
0
      near_mv_ref_cnts[CNT_INTRA] += 1;
88
0
    }
89
0
  }
90
91
  /* If we have three distinct MV's ... */
92
0
  if (near_mv_ref_cnts[CNT_SPLITMV]) {
93
    /* See if above-left MV can be merged with NEAREST */
94
0
    if (mv->as_int == near_mvs[CNT_NEAREST].as_int)
95
0
      near_mv_ref_cnts[CNT_NEAREST] += 1;
96
0
  }
97
98
0
  near_mv_ref_cnts[CNT_SPLITMV] =
99
0
      ((above->mbmi.mode == SPLITMV) + (left->mbmi.mode == SPLITMV)) * 2 +
100
0
      (aboveleft->mbmi.mode == SPLITMV);
101
102
  /* Swap near and nearest if necessary */
103
0
  if (near_mv_ref_cnts[CNT_NEAR] > near_mv_ref_cnts[CNT_NEAREST]) {
104
0
    int tmp;
105
0
    tmp = near_mv_ref_cnts[CNT_NEAREST];
106
0
    near_mv_ref_cnts[CNT_NEAREST] = near_mv_ref_cnts[CNT_NEAR];
107
0
    near_mv_ref_cnts[CNT_NEAR] = tmp;
108
0
    tmp = (int)near_mvs[CNT_NEAREST].as_int;
109
0
    near_mvs[CNT_NEAREST].as_int = near_mvs[CNT_NEAR].as_int;
110
0
    near_mvs[CNT_NEAR].as_int = (uint32_t)tmp;
111
0
  }
112
113
  /* Use near_mvs[0] to store the "best" MV */
114
0
  if (near_mv_ref_cnts[CNT_NEAREST] >= near_mv_ref_cnts[CNT_INTRA]) {
115
0
    near_mvs[CNT_INTRA] = near_mvs[CNT_NEAREST];
116
0
  }
117
118
  /* Set up return values */
119
0
  best_mv->as_int = near_mvs[0].as_int;
120
0
  nearest->as_int = near_mvs[CNT_NEAREST].as_int;
121
0
  nearby->as_int = near_mvs[CNT_NEAR].as_int;
122
0
}
123
124
0
static void invert_and_clamp_mvs(int_mv *inv, int_mv *src, MACROBLOCKD *xd) {
125
0
  inv->as_mv.row = src->as_mv.row * -1;
126
0
  inv->as_mv.col = src->as_mv.col * -1;
127
0
  vp8_clamp_mv2(inv, xd);
128
0
  vp8_clamp_mv2(src, xd);
129
0
}
130
131
int vp8_find_near_mvs_bias(MACROBLOCKD *xd, const MODE_INFO *here,
132
                           int_mv mode_mv_sb[2][MB_MODE_COUNT],
133
                           int_mv best_mv_sb[2], int cnt[4], int refframe,
134
0
                           int *ref_frame_sign_bias) {
135
0
  int sign_bias = ref_frame_sign_bias[refframe];
136
137
0
  vp8_find_near_mvs(xd, here, &mode_mv_sb[sign_bias][NEARESTMV],
138
0
                    &mode_mv_sb[sign_bias][NEARMV], &best_mv_sb[sign_bias], cnt,
139
0
                    refframe, ref_frame_sign_bias);
140
141
0
  invert_and_clamp_mvs(&mode_mv_sb[!sign_bias][NEARESTMV],
142
0
                       &mode_mv_sb[sign_bias][NEARESTMV], xd);
143
0
  invert_and_clamp_mvs(&mode_mv_sb[!sign_bias][NEARMV],
144
0
                       &mode_mv_sb[sign_bias][NEARMV], xd);
145
0
  invert_and_clamp_mvs(&best_mv_sb[!sign_bias], &best_mv_sb[sign_bias], xd);
146
147
0
  return sign_bias;
148
0
}
149
150
vp8_prob *vp8_mv_ref_probs(vp8_prob p[VP8_MVREFS - 1],
151
0
                           const int near_mv_ref_ct[4]) {
152
0
  p[0] = vp8_mode_contexts[near_mv_ref_ct[0]][0];
153
0
  p[1] = vp8_mode_contexts[near_mv_ref_ct[1]][1];
154
0
  p[2] = vp8_mode_contexts[near_mv_ref_ct[2]][2];
155
0
  p[3] = vp8_mode_contexts[near_mv_ref_ct[3]][3];
156
  /* p[3] = vp8_mode_contexts[near_mv_ref_ct[1] + near_mv_ref_ct[2] +
157
                           near_mv_ref_ct[3]][3]; */
158
0
  return p;
159
0
}