Coverage Report

Created: 2025-08-28 07:12

/src/libvpx/vp8/common/findnearmv.c
Line
Count
Source
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
2.00M
                       int refframe, int *ref_frame_sign_bias) {
26
2.00M
  const MODE_INFO *above = here - xd->mode_info_stride;
27
2.00M
  const MODE_INFO *left = here - 1;
28
2.00M
  const MODE_INFO *aboveleft = above - 1;
29
2.00M
  int_mv near_mvs[4];
30
2.00M
  int_mv *mv = near_mvs;
31
2.00M
  int *cntx = near_mv_ref_cnts;
32
2.00M
  enum { CNT_INTRA, CNT_NEAREST, CNT_NEAR, CNT_SPLITMV };
33
34
  /* Zero accumulators */
35
2.00M
  mv[0].as_int = mv[1].as_int = mv[2].as_int = 0;
36
2.00M
  near_mv_ref_cnts[0] = near_mv_ref_cnts[1] = near_mv_ref_cnts[2] =
37
2.00M
      near_mv_ref_cnts[3] = 0;
38
39
  /* Process above */
40
2.00M
  if (above->mbmi.ref_frame != INTRA_FRAME) {
41
579k
    if (above->mbmi.mv.as_int) {
42
417k
      (++mv)->as_int = above->mbmi.mv.as_int;
43
417k
      mv_bias(ref_frame_sign_bias[above->mbmi.ref_frame], refframe, mv,
44
417k
              ref_frame_sign_bias);
45
417k
      ++cntx;
46
417k
    }
47
48
579k
    *cntx += 2;
49
579k
  }
50
51
  /* Process left */
52
2.00M
  if (left->mbmi.ref_frame != INTRA_FRAME) {
53
850k
    if (left->mbmi.mv.as_int) {
54
649k
      int_mv this_mv;
55
56
649k
      this_mv.as_int = left->mbmi.mv.as_int;
57
649k
      mv_bias(ref_frame_sign_bias[left->mbmi.ref_frame], refframe, &this_mv,
58
649k
              ref_frame_sign_bias);
59
60
649k
      if (this_mv.as_int != mv->as_int) {
61
616k
        (++mv)->as_int = this_mv.as_int;
62
616k
        ++cntx;
63
616k
      }
64
65
649k
      *cntx += 2;
66
649k
    } else {
67
201k
      near_mv_ref_cnts[CNT_INTRA] += 2;
68
201k
    }
69
850k
  }
70
71
  /* Process above left */
72
2.00M
  if (aboveleft->mbmi.ref_frame != INTRA_FRAME) {
73
465k
    if (aboveleft->mbmi.mv.as_int) {
74
348k
      int_mv this_mv;
75
76
348k
      this_mv.as_int = aboveleft->mbmi.mv.as_int;
77
348k
      mv_bias(ref_frame_sign_bias[aboveleft->mbmi.ref_frame], refframe,
78
348k
              &this_mv, ref_frame_sign_bias);
79
80
348k
      if (this_mv.as_int != mv->as_int) {
81
275k
        (++mv)->as_int = this_mv.as_int;
82
275k
        ++cntx;
83
275k
      }
84
85
348k
      *cntx += 1;
86
348k
    } else {
87
117k
      near_mv_ref_cnts[CNT_INTRA] += 1;
88
117k
    }
89
465k
  }
90
91
  /* If we have three distinct MV's ... */
92
2.00M
  if (near_mv_ref_cnts[CNT_SPLITMV]) {
93
    /* See if above-left MV can be merged with NEAREST */
94
166k
    if (mv->as_int == near_mvs[CNT_NEAREST].as_int)
95
63.2k
      near_mv_ref_cnts[CNT_NEAREST] += 1;
96
166k
  }
97
98
2.00M
  near_mv_ref_cnts[CNT_SPLITMV] =
99
2.00M
      ((above->mbmi.mode == SPLITMV) + (left->mbmi.mode == SPLITMV)) * 2 +
100
2.00M
      (aboveleft->mbmi.mode == SPLITMV);
101
102
  /* Swap near and nearest if necessary */
103
2.00M
  if (near_mv_ref_cnts[CNT_NEAR] > near_mv_ref_cnts[CNT_NEAREST]) {
104
12.1k
    int tmp;
105
12.1k
    tmp = near_mv_ref_cnts[CNT_NEAREST];
106
12.1k
    near_mv_ref_cnts[CNT_NEAREST] = near_mv_ref_cnts[CNT_NEAR];
107
12.1k
    near_mv_ref_cnts[CNT_NEAR] = tmp;
108
12.1k
    tmp = (int)near_mvs[CNT_NEAREST].as_int;
109
12.1k
    near_mvs[CNT_NEAREST].as_int = near_mvs[CNT_NEAR].as_int;
110
12.1k
    near_mvs[CNT_NEAR].as_int = (uint32_t)tmp;
111
12.1k
  }
112
113
  /* Use near_mvs[0] to store the "best" MV */
114
2.00M
  if (near_mv_ref_cnts[CNT_NEAREST] >= near_mv_ref_cnts[CNT_INTRA]) {
115
1.75M
    near_mvs[CNT_INTRA] = near_mvs[CNT_NEAREST];
116
1.75M
  }
117
118
  /* Set up return values */
119
2.00M
  best_mv->as_int = near_mvs[0].as_int;
120
2.00M
  nearest->as_int = near_mvs[CNT_NEAREST].as_int;
121
2.00M
  nearby->as_int = near_mvs[CNT_NEAR].as_int;
122
2.00M
}
123
124
4.64M
static void invert_and_clamp_mvs(int_mv *inv, int_mv *src, MACROBLOCKD *xd) {
125
4.64M
  inv->as_mv.row = src->as_mv.row * -1;
126
4.64M
  inv->as_mv.col = src->as_mv.col * -1;
127
4.64M
  vp8_clamp_mv2(inv, xd);
128
4.64M
  vp8_clamp_mv2(src, xd);
129
4.64M
}
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
1.54M
                           int *ref_frame_sign_bias) {
135
1.54M
  int sign_bias = ref_frame_sign_bias[refframe];
136
137
1.54M
  vp8_find_near_mvs(xd, here, &mode_mv_sb[sign_bias][NEARESTMV],
138
1.54M
                    &mode_mv_sb[sign_bias][NEARMV], &best_mv_sb[sign_bias], cnt,
139
1.54M
                    refframe, ref_frame_sign_bias);
140
141
1.54M
  invert_and_clamp_mvs(&mode_mv_sb[!sign_bias][NEARESTMV],
142
1.54M
                       &mode_mv_sb[sign_bias][NEARESTMV], xd);
143
1.54M
  invert_and_clamp_mvs(&mode_mv_sb[!sign_bias][NEARMV],
144
1.54M
                       &mode_mv_sb[sign_bias][NEARMV], xd);
145
1.54M
  invert_and_clamp_mvs(&best_mv_sb[!sign_bias], &best_mv_sb[sign_bias], xd);
146
147
1.54M
  return sign_bias;
148
1.54M
}
149
150
vp8_prob *vp8_mv_ref_probs(vp8_prob p[VP8_MVREFS - 1],
151
7.02M
                           const int near_mv_ref_ct[4]) {
152
7.02M
  p[0] = vp8_mode_contexts[near_mv_ref_ct[0]][0];
153
7.02M
  p[1] = vp8_mode_contexts[near_mv_ref_ct[1]][1];
154
7.02M
  p[2] = vp8_mode_contexts[near_mv_ref_ct[2]][2];
155
7.02M
  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
7.02M
  return p;
159
7.02M
}