Coverage Report

Created: 2026-04-01 07:42

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libvpx/vp9/common/vp9_pred_common.h
Line
Count
Source
1
/*
2
 *  Copyright (c) 2012 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
#ifndef VPX_VP9_COMMON_VP9_PRED_COMMON_H_
12
#define VPX_VP9_COMMON_VP9_PRED_COMMON_H_
13
14
#include "vp9/common/vp9_blockd.h"
15
#include "vp9/common/vp9_onyxc_int.h"
16
#include "vpx_dsp/vpx_dsp_common.h"
17
18
#ifdef __cplusplus
19
extern "C" {
20
#endif
21
22
static INLINE int get_segment_id(const VP9_COMMON *cm,
23
                                 const uint8_t *segment_ids, BLOCK_SIZE bsize,
24
0
                                 int mi_row, int mi_col) {
25
0
  const int mi_offset = mi_row * cm->mi_cols + mi_col;
26
0
  const int bw = num_8x8_blocks_wide_lookup[bsize];
27
0
  const int bh = num_8x8_blocks_high_lookup[bsize];
28
0
  const int xmis = VPXMIN(cm->mi_cols - mi_col, bw);
29
0
  const int ymis = VPXMIN(cm->mi_rows - mi_row, bh);
30
0
  int x, y, segment_id = MAX_SEGMENTS;
31
32
0
  for (y = 0; y < ymis; ++y)
33
0
    for (x = 0; x < xmis; ++x)
34
0
      segment_id =
35
0
          VPXMIN(segment_id, segment_ids[mi_offset + y * cm->mi_cols + x]);
36
37
0
  assert(segment_id >= 0 && segment_id < MAX_SEGMENTS);
38
0
  return segment_id;
39
0
}
Unexecuted instantiation: vp9_decodeframe.c:get_segment_id
Unexecuted instantiation: vp9_pred_common.c:get_segment_id
Unexecuted instantiation: vp9_rd.c:get_segment_id
Unexecuted instantiation: vp9_segmentation.c:get_segment_id
Unexecuted instantiation: vp9_tokenize.c:get_segment_id
Unexecuted instantiation: vp9_decodemv.c:get_segment_id
Unexecuted instantiation: vp9_bitstream.c:get_segment_id
Unexecuted instantiation: vp9_encodeframe.c:get_segment_id
Unexecuted instantiation: vp9_rdopt.c:get_segment_id
Unexecuted instantiation: vp9_pickmode.c:get_segment_id
40
41
90.5k
static INLINE int vp9_get_pred_context_seg_id(const MACROBLOCKD *xd) {
42
90.5k
  const MODE_INFO *const above_mi = xd->above_mi;
43
90.5k
  const MODE_INFO *const left_mi = xd->left_mi;
44
90.5k
  const int above_sip = (above_mi != NULL) ? above_mi->seg_id_predicted : 0;
45
90.5k
  const int left_sip = (left_mi != NULL) ? left_mi->seg_id_predicted : 0;
46
47
90.5k
  return above_sip + left_sip;
48
90.5k
}
Unexecuted instantiation: vp9_decodeframe.c:vp9_get_pred_context_seg_id
Unexecuted instantiation: vp9_pred_common.c:vp9_get_pred_context_seg_id
Unexecuted instantiation: vp9_rd.c:vp9_get_pred_context_seg_id
Unexecuted instantiation: vp9_segmentation.c:vp9_get_pred_context_seg_id
Unexecuted instantiation: vp9_tokenize.c:vp9_get_pred_context_seg_id
vp9_decodemv.c:vp9_get_pred_context_seg_id
Line
Count
Source
41
90.5k
static INLINE int vp9_get_pred_context_seg_id(const MACROBLOCKD *xd) {
42
90.5k
  const MODE_INFO *const above_mi = xd->above_mi;
43
90.5k
  const MODE_INFO *const left_mi = xd->left_mi;
44
90.5k
  const int above_sip = (above_mi != NULL) ? above_mi->seg_id_predicted : 0;
45
90.5k
  const int left_sip = (left_mi != NULL) ? left_mi->seg_id_predicted : 0;
46
47
90.5k
  return above_sip + left_sip;
48
90.5k
}
Unexecuted instantiation: vp9_bitstream.c:vp9_get_pred_context_seg_id
Unexecuted instantiation: vp9_encodeframe.c:vp9_get_pred_context_seg_id
Unexecuted instantiation: vp9_rdopt.c:vp9_get_pred_context_seg_id
Unexecuted instantiation: vp9_pickmode.c:vp9_get_pred_context_seg_id
49
50
static INLINE vpx_prob vp9_get_pred_prob_seg_id(const struct segmentation *seg,
51
90.5k
                                                const MACROBLOCKD *xd) {
52
90.5k
  return seg->pred_probs[vp9_get_pred_context_seg_id(xd)];
53
90.5k
}
Unexecuted instantiation: vp9_decodeframe.c:vp9_get_pred_prob_seg_id
Unexecuted instantiation: vp9_pred_common.c:vp9_get_pred_prob_seg_id
Unexecuted instantiation: vp9_rd.c:vp9_get_pred_prob_seg_id
Unexecuted instantiation: vp9_segmentation.c:vp9_get_pred_prob_seg_id
Unexecuted instantiation: vp9_tokenize.c:vp9_get_pred_prob_seg_id
vp9_decodemv.c:vp9_get_pred_prob_seg_id
Line
Count
Source
51
90.5k
                                                const MACROBLOCKD *xd) {
52
90.5k
  return seg->pred_probs[vp9_get_pred_context_seg_id(xd)];
53
90.5k
}
Unexecuted instantiation: vp9_bitstream.c:vp9_get_pred_prob_seg_id
Unexecuted instantiation: vp9_encodeframe.c:vp9_get_pred_prob_seg_id
Unexecuted instantiation: vp9_rdopt.c:vp9_get_pred_prob_seg_id
Unexecuted instantiation: vp9_pickmode.c:vp9_get_pred_prob_seg_id
54
55
72.0M
static INLINE int vp9_get_skip_context(const MACROBLOCKD *xd) {
56
72.0M
  const MODE_INFO *const above_mi = xd->above_mi;
57
72.0M
  const MODE_INFO *const left_mi = xd->left_mi;
58
72.0M
  const int above_skip = (above_mi != NULL) ? above_mi->skip : 0;
59
72.0M
  const int left_skip = (left_mi != NULL) ? left_mi->skip : 0;
60
72.0M
  return above_skip + left_skip;
61
72.0M
}
Unexecuted instantiation: vp9_decodeframe.c:vp9_get_skip_context
Unexecuted instantiation: vp9_pred_common.c:vp9_get_skip_context
Unexecuted instantiation: vp9_rd.c:vp9_get_skip_context
Unexecuted instantiation: vp9_segmentation.c:vp9_get_skip_context
vp9_tokenize.c:vp9_get_skip_context
Line
Count
Source
55
8.03M
static INLINE int vp9_get_skip_context(const MACROBLOCKD *xd) {
56
8.03M
  const MODE_INFO *const above_mi = xd->above_mi;
57
8.03M
  const MODE_INFO *const left_mi = xd->left_mi;
58
8.03M
  const int above_skip = (above_mi != NULL) ? above_mi->skip : 0;
59
8.03M
  const int left_skip = (left_mi != NULL) ? left_mi->skip : 0;
60
8.03M
  return above_skip + left_skip;
61
8.03M
}
vp9_decodemv.c:vp9_get_skip_context
Line
Count
Source
55
5.47M
static INLINE int vp9_get_skip_context(const MACROBLOCKD *xd) {
56
5.47M
  const MODE_INFO *const above_mi = xd->above_mi;
57
5.47M
  const MODE_INFO *const left_mi = xd->left_mi;
58
5.47M
  const int above_skip = (above_mi != NULL) ? above_mi->skip : 0;
59
5.47M
  const int left_skip = (left_mi != NULL) ? left_mi->skip : 0;
60
5.47M
  return above_skip + left_skip;
61
5.47M
}
vp9_bitstream.c:vp9_get_skip_context
Line
Count
Source
55
1.93M
static INLINE int vp9_get_skip_context(const MACROBLOCKD *xd) {
56
1.93M
  const MODE_INFO *const above_mi = xd->above_mi;
57
1.93M
  const MODE_INFO *const left_mi = xd->left_mi;
58
1.93M
  const int above_skip = (above_mi != NULL) ? above_mi->skip : 0;
59
1.93M
  const int left_skip = (left_mi != NULL) ? left_mi->skip : 0;
60
1.93M
  return above_skip + left_skip;
61
1.93M
}
Unexecuted instantiation: vp9_encodeframe.c:vp9_get_skip_context
vp9_rdopt.c:vp9_get_skip_context
Line
Count
Source
55
56.6M
static INLINE int vp9_get_skip_context(const MACROBLOCKD *xd) {
56
56.6M
  const MODE_INFO *const above_mi = xd->above_mi;
57
56.6M
  const MODE_INFO *const left_mi = xd->left_mi;
58
56.6M
  const int above_skip = (above_mi != NULL) ? above_mi->skip : 0;
59
56.6M
  const int left_skip = (left_mi != NULL) ? left_mi->skip : 0;
60
56.6M
  return above_skip + left_skip;
61
56.6M
}
Unexecuted instantiation: vp9_pickmode.c:vp9_get_skip_context
62
63
static INLINE vpx_prob vp9_get_skip_prob(const VP9_COMMON *cm,
64
58.5M
                                         const MACROBLOCKD *xd) {
65
58.5M
  return cm->fc->skip_probs[vp9_get_skip_context(xd)];
66
58.5M
}
Unexecuted instantiation: vp9_decodeframe.c:vp9_get_skip_prob
Unexecuted instantiation: vp9_pred_common.c:vp9_get_skip_prob
Unexecuted instantiation: vp9_rd.c:vp9_get_skip_prob
Unexecuted instantiation: vp9_segmentation.c:vp9_get_skip_prob
Unexecuted instantiation: vp9_tokenize.c:vp9_get_skip_prob
Unexecuted instantiation: vp9_decodemv.c:vp9_get_skip_prob
vp9_bitstream.c:vp9_get_skip_prob
Line
Count
Source
64
1.93M
                                         const MACROBLOCKD *xd) {
65
1.93M
  return cm->fc->skip_probs[vp9_get_skip_context(xd)];
66
1.93M
}
Unexecuted instantiation: vp9_encodeframe.c:vp9_get_skip_prob
vp9_rdopt.c:vp9_get_skip_prob
Line
Count
Source
64
56.6M
                                         const MACROBLOCKD *xd) {
65
56.6M
  return cm->fc->skip_probs[vp9_get_skip_context(xd)];
66
56.6M
}
Unexecuted instantiation: vp9_pickmode.c:vp9_get_skip_prob
67
68
// Returns a context number for the given MB prediction signal
69
46.9M
static INLINE int get_pred_context_switchable_interp(const MACROBLOCKD *xd) {
70
  // Note:
71
  // The mode info data structure has a one element border above and to the
72
  // left of the entries corresponding to real macroblocks.
73
  // The prediction flags in these dummy entries are initialized to 0.
74
46.9M
  const MODE_INFO *const left_mi = xd->left_mi;
75
46.9M
  const int left_type = left_mi ? left_mi->interp_filter : SWITCHABLE_FILTERS;
76
46.9M
  const MODE_INFO *const above_mi = xd->above_mi;
77
46.9M
  const int above_type =
78
46.9M
      above_mi ? above_mi->interp_filter : SWITCHABLE_FILTERS;
79
80
46.9M
  if (left_type == above_type)
81
31.2M
    return left_type;
82
15.7M
  else if (left_type == SWITCHABLE_FILTERS)
83
6.88M
    return above_type;
84
8.90M
  else if (above_type == SWITCHABLE_FILTERS)
85
6.95M
    return left_type;
86
1.94M
  else
87
1.94M
    return SWITCHABLE_FILTERS;
88
46.9M
}
Unexecuted instantiation: vp9_decodeframe.c:get_pred_context_switchable_interp
Unexecuted instantiation: vp9_pred_common.c:get_pred_context_switchable_interp
vp9_rd.c:get_pred_context_switchable_interp
Line
Count
Source
69
44.4M
static INLINE int get_pred_context_switchable_interp(const MACROBLOCKD *xd) {
70
  // Note:
71
  // The mode info data structure has a one element border above and to the
72
  // left of the entries corresponding to real macroblocks.
73
  // The prediction flags in these dummy entries are initialized to 0.
74
44.4M
  const MODE_INFO *const left_mi = xd->left_mi;
75
44.4M
  const int left_type = left_mi ? left_mi->interp_filter : SWITCHABLE_FILTERS;
76
44.4M
  const MODE_INFO *const above_mi = xd->above_mi;
77
44.4M
  const int above_type =
78
44.4M
      above_mi ? above_mi->interp_filter : SWITCHABLE_FILTERS;
79
80
44.4M
  if (left_type == above_type)
81
30.0M
    return left_type;
82
14.4M
  else if (left_type == SWITCHABLE_FILTERS)
83
6.49M
    return above_type;
84
7.94M
  else if (above_type == SWITCHABLE_FILTERS)
85
6.50M
    return left_type;
86
1.44M
  else
87
1.44M
    return SWITCHABLE_FILTERS;
88
44.4M
}
Unexecuted instantiation: vp9_segmentation.c:get_pred_context_switchable_interp
Unexecuted instantiation: vp9_tokenize.c:get_pred_context_switchable_interp
vp9_decodemv.c:get_pred_context_switchable_interp
Line
Count
Source
69
2.08M
static INLINE int get_pred_context_switchable_interp(const MACROBLOCKD *xd) {
70
  // Note:
71
  // The mode info data structure has a one element border above and to the
72
  // left of the entries corresponding to real macroblocks.
73
  // The prediction flags in these dummy entries are initialized to 0.
74
2.08M
  const MODE_INFO *const left_mi = xd->left_mi;
75
2.08M
  const int left_type = left_mi ? left_mi->interp_filter : SWITCHABLE_FILTERS;
76
2.08M
  const MODE_INFO *const above_mi = xd->above_mi;
77
2.08M
  const int above_type =
78
2.08M
      above_mi ? above_mi->interp_filter : SWITCHABLE_FILTERS;
79
80
2.08M
  if (left_type == above_type)
81
962k
    return left_type;
82
1.11M
  else if (left_type == SWITCHABLE_FILTERS)
83
325k
    return above_type;
84
792k
  else if (above_type == SWITCHABLE_FILTERS)
85
350k
    return left_type;
86
441k
  else
87
441k
    return SWITCHABLE_FILTERS;
88
2.08M
}
vp9_bitstream.c:get_pred_context_switchable_interp
Line
Count
Source
69
205k
static INLINE int get_pred_context_switchable_interp(const MACROBLOCKD *xd) {
70
  // Note:
71
  // The mode info data structure has a one element border above and to the
72
  // left of the entries corresponding to real macroblocks.
73
  // The prediction flags in these dummy entries are initialized to 0.
74
205k
  const MODE_INFO *const left_mi = xd->left_mi;
75
205k
  const int left_type = left_mi ? left_mi->interp_filter : SWITCHABLE_FILTERS;
76
205k
  const MODE_INFO *const above_mi = xd->above_mi;
77
205k
  const int above_type =
78
205k
      above_mi ? above_mi->interp_filter : SWITCHABLE_FILTERS;
79
80
205k
  if (left_type == above_type)
81
100k
    return left_type;
82
104k
  else if (left_type == SWITCHABLE_FILTERS)
83
29.6k
    return above_type;
84
74.9k
  else if (above_type == SWITCHABLE_FILTERS)
85
42.5k
    return left_type;
86
32.4k
  else
87
32.4k
    return SWITCHABLE_FILTERS;
88
205k
}
vp9_encodeframe.c:get_pred_context_switchable_interp
Line
Count
Source
69
261k
static INLINE int get_pred_context_switchable_interp(const MACROBLOCKD *xd) {
70
  // Note:
71
  // The mode info data structure has a one element border above and to the
72
  // left of the entries corresponding to real macroblocks.
73
  // The prediction flags in these dummy entries are initialized to 0.
74
261k
  const MODE_INFO *const left_mi = xd->left_mi;
75
261k
  const int left_type = left_mi ? left_mi->interp_filter : SWITCHABLE_FILTERS;
76
261k
  const MODE_INFO *const above_mi = xd->above_mi;
77
261k
  const int above_type =
78
261k
      above_mi ? above_mi->interp_filter : SWITCHABLE_FILTERS;
79
80
261k
  if (left_type == above_type)
81
136k
    return left_type;
82
125k
  else if (left_type == SWITCHABLE_FILTERS)
83
38.2k
    return above_type;
84
87.2k
  else if (above_type == SWITCHABLE_FILTERS)
85
54.8k
    return left_type;
86
32.4k
  else
87
32.4k
    return SWITCHABLE_FILTERS;
88
261k
}
Unexecuted instantiation: vp9_rdopt.c:get_pred_context_switchable_interp
Unexecuted instantiation: vp9_pickmode.c:get_pred_context_switchable_interp
89
90
// The mode info data structure has a one element border above and to the
91
// left of the entries corresponding to real macroblocks.
92
// The prediction flags in these dummy entries are initialized to 0.
93
// 0 - inter/inter, inter/--, --/inter, --/--
94
// 1 - intra/inter, inter/intra
95
// 2 - intra/--, --/intra
96
// 3 - intra/intra
97
13.3M
static INLINE int get_intra_inter_context(const MACROBLOCKD *xd) {
98
13.3M
  const MODE_INFO *const above_mi = xd->above_mi;
99
13.3M
  const MODE_INFO *const left_mi = xd->left_mi;
100
13.3M
  const int has_above = !!above_mi;
101
13.3M
  const int has_left = !!left_mi;
102
103
13.3M
  if (has_above && has_left) {  // both edges available
104
9.07M
    const int above_intra = !is_inter_block(above_mi);
105
9.07M
    const int left_intra = !is_inter_block(left_mi);
106
9.07M
    return left_intra && above_intra ? 3 : left_intra || above_intra;
107
9.07M
  } else if (has_above || has_left) {  // one edge available
108
3.72M
    return 2 * !is_inter_block(has_above ? above_mi : left_mi);
109
3.72M
  }
110
523k
  return 0;
111
13.3M
}
Unexecuted instantiation: vp9_decodeframe.c:get_intra_inter_context
Unexecuted instantiation: vp9_pred_common.c:get_intra_inter_context
Unexecuted instantiation: vp9_rd.c:get_intra_inter_context
Unexecuted instantiation: vp9_segmentation.c:get_intra_inter_context
Unexecuted instantiation: vp9_tokenize.c:get_intra_inter_context
vp9_decodemv.c:get_intra_inter_context
Line
Count
Source
97
4.54M
static INLINE int get_intra_inter_context(const MACROBLOCKD *xd) {
98
4.54M
  const MODE_INFO *const above_mi = xd->above_mi;
99
4.54M
  const MODE_INFO *const left_mi = xd->left_mi;
100
4.54M
  const int has_above = !!above_mi;
101
4.54M
  const int has_left = !!left_mi;
102
103
4.54M
  if (has_above && has_left) {  // both edges available
104
3.29M
    const int above_intra = !is_inter_block(above_mi);
105
3.29M
    const int left_intra = !is_inter_block(left_mi);
106
3.29M
    return left_intra && above_intra ? 3 : left_intra || above_intra;
107
3.29M
  } else if (has_above || has_left) {  // one edge available
108
1.20M
    return 2 * !is_inter_block(has_above ? above_mi : left_mi);
109
1.20M
  }
110
47.8k
  return 0;
111
4.54M
}
vp9_bitstream.c:get_intra_inter_context
Line
Count
Source
97
1.30M
static INLINE int get_intra_inter_context(const MACROBLOCKD *xd) {
98
1.30M
  const MODE_INFO *const above_mi = xd->above_mi;
99
1.30M
  const MODE_INFO *const left_mi = xd->left_mi;
100
1.30M
  const int has_above = !!above_mi;
101
1.30M
  const int has_left = !!left_mi;
102
103
1.30M
  if (has_above && has_left) {  // both edges available
104
894k
    const int above_intra = !is_inter_block(above_mi);
105
894k
    const int left_intra = !is_inter_block(left_mi);
106
894k
    return left_intra && above_intra ? 3 : left_intra || above_intra;
107
894k
  } else if (has_above || has_left) {  // one edge available
108
352k
    return 2 * !is_inter_block(has_above ? above_mi : left_mi);
109
352k
  }
110
57.4k
  return 0;
111
1.30M
}
vp9_encodeframe.c:get_intra_inter_context
Line
Count
Source
97
1.30M
static INLINE int get_intra_inter_context(const MACROBLOCKD *xd) {
98
1.30M
  const MODE_INFO *const above_mi = xd->above_mi;
99
1.30M
  const MODE_INFO *const left_mi = xd->left_mi;
100
1.30M
  const int has_above = !!above_mi;
101
1.30M
  const int has_left = !!left_mi;
102
103
1.30M
  if (has_above && has_left) {  // both edges available
104
894k
    const int above_intra = !is_inter_block(above_mi);
105
894k
    const int left_intra = !is_inter_block(left_mi);
106
894k
    return left_intra && above_intra ? 3 : left_intra || above_intra;
107
894k
  } else if (has_above || has_left) {  // one edge available
108
352k
    return 2 * !is_inter_block(has_above ? above_mi : left_mi);
109
352k
  }
110
57.4k
  return 0;
111
1.30M
}
vp9_rdopt.c:get_intra_inter_context
Line
Count
Source
97
6.16M
static INLINE int get_intra_inter_context(const MACROBLOCKD *xd) {
98
6.16M
  const MODE_INFO *const above_mi = xd->above_mi;
99
6.16M
  const MODE_INFO *const left_mi = xd->left_mi;
100
6.16M
  const int has_above = !!above_mi;
101
6.16M
  const int has_left = !!left_mi;
102
103
6.16M
  if (has_above && has_left) {  // both edges available
104
3.99M
    const int above_intra = !is_inter_block(above_mi);
105
3.99M
    const int left_intra = !is_inter_block(left_mi);
106
3.99M
    return left_intra && above_intra ? 3 : left_intra || above_intra;
107
3.99M
  } else if (has_above || has_left) {  // one edge available
108
1.81M
    return 2 * !is_inter_block(has_above ? above_mi : left_mi);
109
1.81M
  }
110
360k
  return 0;
111
6.16M
}
Unexecuted instantiation: vp9_pickmode.c:get_intra_inter_context
112
113
static INLINE vpx_prob vp9_get_intra_inter_prob(const VP9_COMMON *cm,
114
7.47M
                                                const MACROBLOCKD *xd) {
115
7.47M
  return cm->fc->intra_inter_prob[get_intra_inter_context(xd)];
116
7.47M
}
Unexecuted instantiation: vp9_decodeframe.c:vp9_get_intra_inter_prob
Unexecuted instantiation: vp9_pred_common.c:vp9_get_intra_inter_prob
Unexecuted instantiation: vp9_rd.c:vp9_get_intra_inter_prob
Unexecuted instantiation: vp9_segmentation.c:vp9_get_intra_inter_prob
Unexecuted instantiation: vp9_tokenize.c:vp9_get_intra_inter_prob
Unexecuted instantiation: vp9_decodemv.c:vp9_get_intra_inter_prob
vp9_bitstream.c:vp9_get_intra_inter_prob
Line
Count
Source
114
1.30M
                                                const MACROBLOCKD *xd) {
115
1.30M
  return cm->fc->intra_inter_prob[get_intra_inter_context(xd)];
116
1.30M
}
Unexecuted instantiation: vp9_encodeframe.c:vp9_get_intra_inter_prob
vp9_rdopt.c:vp9_get_intra_inter_prob
Line
Count
Source
114
6.16M
                                                const MACROBLOCKD *xd) {
115
6.16M
  return cm->fc->intra_inter_prob[get_intra_inter_context(xd)];
116
6.16M
}
Unexecuted instantiation: vp9_pickmode.c:vp9_get_intra_inter_prob
117
118
int vp9_get_reference_mode_context(const VP9_COMMON *cm, const MACROBLOCKD *xd);
119
120
static INLINE vpx_prob vp9_get_reference_mode_prob(const VP9_COMMON *cm,
121
0
                                                   const MACROBLOCKD *xd) {
122
0
  return cm->fc->comp_inter_prob[vp9_get_reference_mode_context(cm, xd)];
123
0
}
Unexecuted instantiation: vp9_decodeframe.c:vp9_get_reference_mode_prob
Unexecuted instantiation: vp9_pred_common.c:vp9_get_reference_mode_prob
Unexecuted instantiation: vp9_rd.c:vp9_get_reference_mode_prob
Unexecuted instantiation: vp9_segmentation.c:vp9_get_reference_mode_prob
Unexecuted instantiation: vp9_tokenize.c:vp9_get_reference_mode_prob
Unexecuted instantiation: vp9_decodemv.c:vp9_get_reference_mode_prob
Unexecuted instantiation: vp9_bitstream.c:vp9_get_reference_mode_prob
Unexecuted instantiation: vp9_encodeframe.c:vp9_get_reference_mode_prob
Unexecuted instantiation: vp9_rdopt.c:vp9_get_reference_mode_prob
Unexecuted instantiation: vp9_pickmode.c:vp9_get_reference_mode_prob
124
125
int vp9_get_pred_context_comp_ref_p(const VP9_COMMON *cm,
126
                                    const MACROBLOCKD *xd);
127
128
static INLINE vpx_prob vp9_get_pred_prob_comp_ref_p(const VP9_COMMON *cm,
129
0
                                                    const MACROBLOCKD *xd) {
130
0
  const int pred_context = vp9_get_pred_context_comp_ref_p(cm, xd);
131
0
  return cm->fc->comp_ref_prob[pred_context];
132
0
}
Unexecuted instantiation: vp9_decodeframe.c:vp9_get_pred_prob_comp_ref_p
Unexecuted instantiation: vp9_pred_common.c:vp9_get_pred_prob_comp_ref_p
Unexecuted instantiation: vp9_rd.c:vp9_get_pred_prob_comp_ref_p
Unexecuted instantiation: vp9_segmentation.c:vp9_get_pred_prob_comp_ref_p
Unexecuted instantiation: vp9_tokenize.c:vp9_get_pred_prob_comp_ref_p
Unexecuted instantiation: vp9_decodemv.c:vp9_get_pred_prob_comp_ref_p
Unexecuted instantiation: vp9_bitstream.c:vp9_get_pred_prob_comp_ref_p
Unexecuted instantiation: vp9_encodeframe.c:vp9_get_pred_prob_comp_ref_p
Unexecuted instantiation: vp9_rdopt.c:vp9_get_pred_prob_comp_ref_p
Unexecuted instantiation: vp9_pickmode.c:vp9_get_pred_prob_comp_ref_p
133
134
int vp9_get_pred_context_single_ref_p1(const MACROBLOCKD *xd);
135
136
static INLINE vpx_prob vp9_get_pred_prob_single_ref_p1(const VP9_COMMON *cm,
137
6.72M
                                                       const MACROBLOCKD *xd) {
138
6.72M
  return cm->fc->single_ref_prob[vp9_get_pred_context_single_ref_p1(xd)][0];
139
6.72M
}
Unexecuted instantiation: vp9_decodeframe.c:vp9_get_pred_prob_single_ref_p1
Unexecuted instantiation: vp9_pred_common.c:vp9_get_pred_prob_single_ref_p1
Unexecuted instantiation: vp9_rd.c:vp9_get_pred_prob_single_ref_p1
Unexecuted instantiation: vp9_segmentation.c:vp9_get_pred_prob_single_ref_p1
Unexecuted instantiation: vp9_tokenize.c:vp9_get_pred_prob_single_ref_p1
Unexecuted instantiation: vp9_decodemv.c:vp9_get_pred_prob_single_ref_p1
vp9_bitstream.c:vp9_get_pred_prob_single_ref_p1
Line
Count
Source
137
558k
                                                       const MACROBLOCKD *xd) {
138
558k
  return cm->fc->single_ref_prob[vp9_get_pred_context_single_ref_p1(xd)][0];
139
558k
}
Unexecuted instantiation: vp9_encodeframe.c:vp9_get_pred_prob_single_ref_p1
vp9_rdopt.c:vp9_get_pred_prob_single_ref_p1
Line
Count
Source
137
6.16M
                                                       const MACROBLOCKD *xd) {
138
6.16M
  return cm->fc->single_ref_prob[vp9_get_pred_context_single_ref_p1(xd)][0];
139
6.16M
}
Unexecuted instantiation: vp9_pickmode.c:vp9_get_pred_prob_single_ref_p1
140
141
int vp9_get_pred_context_single_ref_p2(const MACROBLOCKD *xd);
142
143
static INLINE vpx_prob vp9_get_pred_prob_single_ref_p2(const VP9_COMMON *cm,
144
6.37M
                                                       const MACROBLOCKD *xd) {
145
6.37M
  return cm->fc->single_ref_prob[vp9_get_pred_context_single_ref_p2(xd)][1];
146
6.37M
}
Unexecuted instantiation: vp9_decodeframe.c:vp9_get_pred_prob_single_ref_p2
Unexecuted instantiation: vp9_pred_common.c:vp9_get_pred_prob_single_ref_p2
Unexecuted instantiation: vp9_rd.c:vp9_get_pred_prob_single_ref_p2
Unexecuted instantiation: vp9_segmentation.c:vp9_get_pred_prob_single_ref_p2
Unexecuted instantiation: vp9_tokenize.c:vp9_get_pred_prob_single_ref_p2
Unexecuted instantiation: vp9_decodemv.c:vp9_get_pred_prob_single_ref_p2
vp9_bitstream.c:vp9_get_pred_prob_single_ref_p2
Line
Count
Source
144
206k
                                                       const MACROBLOCKD *xd) {
145
206k
  return cm->fc->single_ref_prob[vp9_get_pred_context_single_ref_p2(xd)][1];
146
206k
}
Unexecuted instantiation: vp9_encodeframe.c:vp9_get_pred_prob_single_ref_p2
vp9_rdopt.c:vp9_get_pred_prob_single_ref_p2
Line
Count
Source
144
6.16M
                                                       const MACROBLOCKD *xd) {
145
6.16M
  return cm->fc->single_ref_prob[vp9_get_pred_context_single_ref_p2(xd)][1];
146
6.16M
}
Unexecuted instantiation: vp9_pickmode.c:vp9_get_pred_prob_single_ref_p2
147
148
int vp9_compound_reference_allowed(const VP9_COMMON *cm);
149
150
void vp9_setup_compound_reference_mode(VP9_COMMON *cm);
151
152
// Returns a context number for the given MB prediction signal
153
// The mode info data structure has a one element border above and to the
154
// left of the entries corresponding to real blocks.
155
// The prediction flags in these dummy entries are initialized to 0.
156
30.6M
static INLINE int get_tx_size_context(const MACROBLOCKD *xd) {
157
30.6M
  const int max_tx_size = max_txsize_lookup[xd->mi[0]->sb_type];
158
30.6M
  const MODE_INFO *const above_mi = xd->above_mi;
159
30.6M
  const MODE_INFO *const left_mi = xd->left_mi;
160
30.6M
  const int has_above = !!above_mi;
161
30.6M
  const int has_left = !!left_mi;
162
30.6M
  int above_ctx =
163
30.6M
      (has_above && !above_mi->skip) ? (int)above_mi->tx_size : max_tx_size;
164
30.6M
  int left_ctx =
165
30.6M
      (has_left && !left_mi->skip) ? (int)left_mi->tx_size : max_tx_size;
166
30.6M
  if (!has_left) left_ctx = above_ctx;
167
168
30.6M
  if (!has_above) above_ctx = left_ctx;
169
170
30.6M
  return (above_ctx + left_ctx) > max_tx_size;
171
30.6M
}
Unexecuted instantiation: vp9_decodeframe.c:get_tx_size_context
Unexecuted instantiation: vp9_pred_common.c:get_tx_size_context
Unexecuted instantiation: vp9_rd.c:get_tx_size_context
Unexecuted instantiation: vp9_segmentation.c:get_tx_size_context
Unexecuted instantiation: vp9_tokenize.c:get_tx_size_context
vp9_decodemv.c:get_tx_size_context
Line
Count
Source
156
1.22M
static INLINE int get_tx_size_context(const MACROBLOCKD *xd) {
157
1.22M
  const int max_tx_size = max_txsize_lookup[xd->mi[0]->sb_type];
158
1.22M
  const MODE_INFO *const above_mi = xd->above_mi;
159
1.22M
  const MODE_INFO *const left_mi = xd->left_mi;
160
1.22M
  const int has_above = !!above_mi;
161
1.22M
  const int has_left = !!left_mi;
162
1.22M
  int above_ctx =
163
1.22M
      (has_above && !above_mi->skip) ? (int)above_mi->tx_size : max_tx_size;
164
1.22M
  int left_ctx =
165
1.22M
      (has_left && !left_mi->skip) ? (int)left_mi->tx_size : max_tx_size;
166
1.22M
  if (!has_left) left_ctx = above_ctx;
167
168
1.22M
  if (!has_above) above_ctx = left_ctx;
169
170
1.22M
  return (above_ctx + left_ctx) > max_tx_size;
171
1.22M
}
vp9_bitstream.c:get_tx_size_context
Line
Count
Source
156
448k
static INLINE int get_tx_size_context(const MACROBLOCKD *xd) {
157
448k
  const int max_tx_size = max_txsize_lookup[xd->mi[0]->sb_type];
158
448k
  const MODE_INFO *const above_mi = xd->above_mi;
159
448k
  const MODE_INFO *const left_mi = xd->left_mi;
160
448k
  const int has_above = !!above_mi;
161
448k
  const int has_left = !!left_mi;
162
448k
  int above_ctx =
163
448k
      (has_above && !above_mi->skip) ? (int)above_mi->tx_size : max_tx_size;
164
448k
  int left_ctx =
165
448k
      (has_left && !left_mi->skip) ? (int)left_mi->tx_size : max_tx_size;
166
448k
  if (!has_left) left_ctx = above_ctx;
167
168
448k
  if (!has_above) above_ctx = left_ctx;
169
170
448k
  return (above_ctx + left_ctx) > max_tx_size;
171
448k
}
vp9_encodeframe.c:get_tx_size_context
Line
Count
Source
156
511k
static INLINE int get_tx_size_context(const MACROBLOCKD *xd) {
157
511k
  const int max_tx_size = max_txsize_lookup[xd->mi[0]->sb_type];
158
511k
  const MODE_INFO *const above_mi = xd->above_mi;
159
511k
  const MODE_INFO *const left_mi = xd->left_mi;
160
511k
  const int has_above = !!above_mi;
161
511k
  const int has_left = !!left_mi;
162
511k
  int above_ctx =
163
511k
      (has_above && !above_mi->skip) ? (int)above_mi->tx_size : max_tx_size;
164
511k
  int left_ctx =
165
511k
      (has_left && !left_mi->skip) ? (int)left_mi->tx_size : max_tx_size;
166
511k
  if (!has_left) left_ctx = above_ctx;
167
168
511k
  if (!has_above) above_ctx = left_ctx;
169
170
511k
  return (above_ctx + left_ctx) > max_tx_size;
171
511k
}
vp9_rdopt.c:get_tx_size_context
Line
Count
Source
156
28.4M
static INLINE int get_tx_size_context(const MACROBLOCKD *xd) {
157
28.4M
  const int max_tx_size = max_txsize_lookup[xd->mi[0]->sb_type];
158
28.4M
  const MODE_INFO *const above_mi = xd->above_mi;
159
28.4M
  const MODE_INFO *const left_mi = xd->left_mi;
160
28.4M
  const int has_above = !!above_mi;
161
28.4M
  const int has_left = !!left_mi;
162
28.4M
  int above_ctx =
163
28.4M
      (has_above && !above_mi->skip) ? (int)above_mi->tx_size : max_tx_size;
164
28.4M
  int left_ctx =
165
28.4M
      (has_left && !left_mi->skip) ? (int)left_mi->tx_size : max_tx_size;
166
28.4M
  if (!has_left) left_ctx = above_ctx;
167
168
28.4M
  if (!has_above) above_ctx = left_ctx;
169
170
28.4M
  return (above_ctx + left_ctx) > max_tx_size;
171
28.4M
}
Unexecuted instantiation: vp9_pickmode.c:get_tx_size_context
172
173
static INLINE const vpx_prob *get_tx_probs(TX_SIZE max_tx_size, int ctx,
174
2.10M
                                           const struct tx_probs *tx_probs) {
175
2.10M
  switch (max_tx_size) {
176
1.19M
    case TX_8X8: return tx_probs->p8x8[ctx];
177
479k
    case TX_16X16: return tx_probs->p16x16[ctx];
178
430k
    case TX_32X32: return tx_probs->p32x32[ctx];
179
0
    default: assert(0 && "Invalid max_tx_size."); return NULL;
180
2.10M
  }
181
2.10M
}
Unexecuted instantiation: vp9_decodeframe.c:get_tx_probs
Unexecuted instantiation: vp9_pred_common.c:get_tx_probs
vp9_rd.c:get_tx_probs
Line
Count
Source
174
425k
                                           const struct tx_probs *tx_probs) {
175
425k
  switch (max_tx_size) {
176
141k
    case TX_8X8: return tx_probs->p8x8[ctx];
177
141k
    case TX_16X16: return tx_probs->p16x16[ctx];
178
141k
    case TX_32X32: return tx_probs->p32x32[ctx];
179
0
    default: assert(0 && "Invalid max_tx_size."); return NULL;
180
425k
  }
181
425k
}
Unexecuted instantiation: vp9_segmentation.c:get_tx_probs
Unexecuted instantiation: vp9_tokenize.c:get_tx_probs
vp9_decodemv.c:get_tx_probs
Line
Count
Source
174
1.22M
                                           const struct tx_probs *tx_probs) {
175
1.22M
  switch (max_tx_size) {
176
698k
    case TX_8X8: return tx_probs->p8x8[ctx];
177
280k
    case TX_16X16: return tx_probs->p16x16[ctx];
178
249k
    case TX_32X32: return tx_probs->p32x32[ctx];
179
0
    default: assert(0 && "Invalid max_tx_size."); return NULL;
180
1.22M
  }
181
1.22M
}
vp9_bitstream.c:get_tx_probs
Line
Count
Source
174
448k
                                           const struct tx_probs *tx_probs) {
175
448k
  switch (max_tx_size) {
176
352k
    case TX_8X8: return tx_probs->p8x8[ctx];
177
56.6k
    case TX_16X16: return tx_probs->p16x16[ctx];
178
39.2k
    case TX_32X32: return tx_probs->p32x32[ctx];
179
0
    default: assert(0 && "Invalid max_tx_size."); return NULL;
180
448k
  }
181
448k
}
Unexecuted instantiation: vp9_encodeframe.c:get_tx_probs
Unexecuted instantiation: vp9_rdopt.c:get_tx_probs
Unexecuted instantiation: vp9_pickmode.c:get_tx_probs
182
183
static INLINE unsigned int *get_tx_counts(TX_SIZE max_tx_size, int ctx,
184
1.24M
                                          struct tx_counts *tx_counts) {
185
1.24M
  switch (max_tx_size) {
186
825k
    case TX_8X8: return tx_counts->p8x8[ctx];
187
230k
    case TX_16X16: return tx_counts->p16x16[ctx];
188
188k
    case TX_32X32: return tx_counts->p32x32[ctx];
189
0
    default: assert(0 && "Invalid max_tx_size."); return NULL;
190
1.24M
  }
191
1.24M
}
Unexecuted instantiation: vp9_decodeframe.c:get_tx_counts
Unexecuted instantiation: vp9_pred_common.c:get_tx_counts
Unexecuted instantiation: vp9_rd.c:get_tx_counts
Unexecuted instantiation: vp9_segmentation.c:get_tx_counts
Unexecuted instantiation: vp9_tokenize.c:get_tx_counts
vp9_decodemv.c:get_tx_counts
Line
Count
Source
184
733k
                                          struct tx_counts *tx_counts) {
185
733k
  switch (max_tx_size) {
186
429k
    case TX_8X8: return tx_counts->p8x8[ctx];
187
167k
    case TX_16X16: return tx_counts->p16x16[ctx];
188
135k
    case TX_32X32: return tx_counts->p32x32[ctx];
189
0
    default: assert(0 && "Invalid max_tx_size."); return NULL;
190
733k
  }
191
733k
}
Unexecuted instantiation: vp9_bitstream.c:get_tx_counts
vp9_encodeframe.c:get_tx_counts
Line
Count
Source
184
511k
                                          struct tx_counts *tx_counts) {
185
511k
  switch (max_tx_size) {
186
396k
    case TX_8X8: return tx_counts->p8x8[ctx];
187
62.7k
    case TX_16X16: return tx_counts->p16x16[ctx];
188
52.4k
    case TX_32X32: return tx_counts->p32x32[ctx];
189
0
    default: assert(0 && "Invalid max_tx_size."); return NULL;
190
511k
  }
191
511k
}
Unexecuted instantiation: vp9_rdopt.c:get_tx_counts
Unexecuted instantiation: vp9_pickmode.c:get_tx_counts
192
193
#ifdef __cplusplus
194
}  // extern "C"
195
#endif
196
197
#endif  // VPX_VP9_COMMON_VP9_PRED_COMMON_H_