Coverage Report

Created: 2026-01-16 07:48

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
103k
static INLINE int vp9_get_pred_context_seg_id(const MACROBLOCKD *xd) {
42
103k
  const MODE_INFO *const above_mi = xd->above_mi;
43
103k
  const MODE_INFO *const left_mi = xd->left_mi;
44
103k
  const int above_sip = (above_mi != NULL) ? above_mi->seg_id_predicted : 0;
45
103k
  const int left_sip = (left_mi != NULL) ? left_mi->seg_id_predicted : 0;
46
47
103k
  return above_sip + left_sip;
48
103k
}
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
103k
static INLINE int vp9_get_pred_context_seg_id(const MACROBLOCKD *xd) {
42
103k
  const MODE_INFO *const above_mi = xd->above_mi;
43
103k
  const MODE_INFO *const left_mi = xd->left_mi;
44
103k
  const int above_sip = (above_mi != NULL) ? above_mi->seg_id_predicted : 0;
45
103k
  const int left_sip = (left_mi != NULL) ? left_mi->seg_id_predicted : 0;
46
47
103k
  return above_sip + left_sip;
48
103k
}
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
103k
                                                const MACROBLOCKD *xd) {
52
103k
  return seg->pred_probs[vp9_get_pred_context_seg_id(xd)];
53
103k
}
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
103k
                                                const MACROBLOCKD *xd) {
52
103k
  return seg->pred_probs[vp9_get_pred_context_seg_id(xd)];
53
103k
}
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
82.2M
static INLINE int vp9_get_skip_context(const MACROBLOCKD *xd) {
56
82.2M
  const MODE_INFO *const above_mi = xd->above_mi;
57
82.2M
  const MODE_INFO *const left_mi = xd->left_mi;
58
82.2M
  const int above_skip = (above_mi != NULL) ? above_mi->skip : 0;
59
82.2M
  const int left_skip = (left_mi != NULL) ? left_mi->skip : 0;
60
82.2M
  return above_skip + left_skip;
61
82.2M
}
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
9.18M
static INLINE int vp9_get_skip_context(const MACROBLOCKD *xd) {
56
9.18M
  const MODE_INFO *const above_mi = xd->above_mi;
57
9.18M
  const MODE_INFO *const left_mi = xd->left_mi;
58
9.18M
  const int above_skip = (above_mi != NULL) ? above_mi->skip : 0;
59
9.18M
  const int left_skip = (left_mi != NULL) ? left_mi->skip : 0;
60
9.18M
  return above_skip + left_skip;
61
9.18M
}
vp9_decodemv.c:vp9_get_skip_context
Line
Count
Source
55
5.71M
static INLINE int vp9_get_skip_context(const MACROBLOCKD *xd) {
56
5.71M
  const MODE_INFO *const above_mi = xd->above_mi;
57
5.71M
  const MODE_INFO *const left_mi = xd->left_mi;
58
5.71M
  const int above_skip = (above_mi != NULL) ? above_mi->skip : 0;
59
5.71M
  const int left_skip = (left_mi != NULL) ? left_mi->skip : 0;
60
5.71M
  return above_skip + left_skip;
61
5.71M
}
vp9_bitstream.c:vp9_get_skip_context
Line
Count
Source
55
2.19M
static INLINE int vp9_get_skip_context(const MACROBLOCKD *xd) {
56
2.19M
  const MODE_INFO *const above_mi = xd->above_mi;
57
2.19M
  const MODE_INFO *const left_mi = xd->left_mi;
58
2.19M
  const int above_skip = (above_mi != NULL) ? above_mi->skip : 0;
59
2.19M
  const int left_skip = (left_mi != NULL) ? left_mi->skip : 0;
60
2.19M
  return above_skip + left_skip;
61
2.19M
}
Unexecuted instantiation: vp9_encodeframe.c:vp9_get_skip_context
vp9_rdopt.c:vp9_get_skip_context
Line
Count
Source
55
65.1M
static INLINE int vp9_get_skip_context(const MACROBLOCKD *xd) {
56
65.1M
  const MODE_INFO *const above_mi = xd->above_mi;
57
65.1M
  const MODE_INFO *const left_mi = xd->left_mi;
58
65.1M
  const int above_skip = (above_mi != NULL) ? above_mi->skip : 0;
59
65.1M
  const int left_skip = (left_mi != NULL) ? left_mi->skip : 0;
60
65.1M
  return above_skip + left_skip;
61
65.1M
}
Unexecuted instantiation: vp9_pickmode.c:vp9_get_skip_context
62
63
static INLINE vpx_prob vp9_get_skip_prob(const VP9_COMMON *cm,
64
67.3M
                                         const MACROBLOCKD *xd) {
65
67.3M
  return cm->fc->skip_probs[vp9_get_skip_context(xd)];
66
67.3M
}
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
2.19M
                                         const MACROBLOCKD *xd) {
65
2.19M
  return cm->fc->skip_probs[vp9_get_skip_context(xd)];
66
2.19M
}
Unexecuted instantiation: vp9_encodeframe.c:vp9_get_skip_prob
vp9_rdopt.c:vp9_get_skip_prob
Line
Count
Source
64
65.1M
                                         const MACROBLOCKD *xd) {
65
65.1M
  return cm->fc->skip_probs[vp9_get_skip_context(xd)];
66
65.1M
}
Unexecuted instantiation: vp9_pickmode.c:vp9_get_skip_prob
67
68
// Returns a context number for the given MB prediction signal
69
54.8M
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
54.8M
  const MODE_INFO *const left_mi = xd->left_mi;
75
54.8M
  const int left_type = left_mi ? left_mi->interp_filter : SWITCHABLE_FILTERS;
76
54.8M
  const MODE_INFO *const above_mi = xd->above_mi;
77
54.8M
  const int above_type =
78
54.8M
      above_mi ? above_mi->interp_filter : SWITCHABLE_FILTERS;
79
80
54.8M
  if (left_type == above_type)
81
36.2M
    return left_type;
82
18.5M
  else if (left_type == SWITCHABLE_FILTERS)
83
8.15M
    return above_type;
84
10.3M
  else if (above_type == SWITCHABLE_FILTERS)
85
8.16M
    return left_type;
86
2.20M
  else
87
2.20M
    return SWITCHABLE_FILTERS;
88
54.8M
}
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
52.0M
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
52.0M
  const MODE_INFO *const left_mi = xd->left_mi;
75
52.0M
  const int left_type = left_mi ? left_mi->interp_filter : SWITCHABLE_FILTERS;
76
52.0M
  const MODE_INFO *const above_mi = xd->above_mi;
77
52.0M
  const int above_type =
78
52.0M
      above_mi ? above_mi->interp_filter : SWITCHABLE_FILTERS;
79
80
52.0M
  if (left_type == above_type)
81
34.9M
    return left_type;
82
17.0M
  else if (left_type == SWITCHABLE_FILTERS)
83
7.74M
    return above_type;
84
9.33M
  else if (above_type == SWITCHABLE_FILTERS)
85
7.68M
    return left_type;
86
1.64M
  else
87
1.64M
    return SWITCHABLE_FILTERS;
88
52.0M
}
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.23M
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.23M
  const MODE_INFO *const left_mi = xd->left_mi;
75
2.23M
  const int left_type = left_mi ? left_mi->interp_filter : SWITCHABLE_FILTERS;
76
2.23M
  const MODE_INFO *const above_mi = xd->above_mi;
77
2.23M
  const int above_type =
78
2.23M
      above_mi ? above_mi->interp_filter : SWITCHABLE_FILTERS;
79
80
2.23M
  if (left_type == above_type)
81
1.04M
    return left_type;
82
1.18M
  else if (left_type == SWITCHABLE_FILTERS)
83
334k
    return above_type;
84
852k
  else if (above_type == SWITCHABLE_FILTERS)
85
369k
    return left_type;
86
483k
  else
87
483k
    return SWITCHABLE_FILTERS;
88
2.23M
}
vp9_bitstream.c:get_pred_context_switchable_interp
Line
Count
Source
69
235k
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
235k
  const MODE_INFO *const left_mi = xd->left_mi;
75
235k
  const int left_type = left_mi ? left_mi->interp_filter : SWITCHABLE_FILTERS;
76
235k
  const MODE_INFO *const above_mi = xd->above_mi;
77
235k
  const int above_type =
78
235k
      above_mi ? above_mi->interp_filter : SWITCHABLE_FILTERS;
79
80
235k
  if (left_type == above_type)
81
114k
    return left_type;
82
121k
  else if (left_type == SWITCHABLE_FILTERS)
83
34.5k
    return above_type;
84
86.5k
  else if (above_type == SWITCHABLE_FILTERS)
85
48.9k
    return left_type;
86
37.6k
  else
87
37.6k
    return SWITCHABLE_FILTERS;
88
235k
}
vp9_encodeframe.c:get_pred_context_switchable_interp
Line
Count
Source
69
294k
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
294k
  const MODE_INFO *const left_mi = xd->left_mi;
75
294k
  const int left_type = left_mi ? left_mi->interp_filter : SWITCHABLE_FILTERS;
76
294k
  const MODE_INFO *const above_mi = xd->above_mi;
77
294k
  const int above_type =
78
294k
      above_mi ? above_mi->interp_filter : SWITCHABLE_FILTERS;
79
80
294k
  if (left_type == above_type)
81
150k
    return left_type;
82
143k
  else if (left_type == SWITCHABLE_FILTERS)
83
43.3k
    return above_type;
84
100k
  else if (above_type == SWITCHABLE_FILTERS)
85
62.8k
    return left_type;
86
37.6k
  else
87
37.6k
    return SWITCHABLE_FILTERS;
88
294k
}
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
14.9M
static INLINE int get_intra_inter_context(const MACROBLOCKD *xd) {
98
14.9M
  const MODE_INFO *const above_mi = xd->above_mi;
99
14.9M
  const MODE_INFO *const left_mi = xd->left_mi;
100
14.9M
  const int has_above = !!above_mi;
101
14.9M
  const int has_left = !!left_mi;
102
103
14.9M
  if (has_above && has_left) {  // both edges available
104
10.3M
    const int above_intra = !is_inter_block(above_mi);
105
10.3M
    const int left_intra = !is_inter_block(left_mi);
106
10.3M
    return left_intra && above_intra ? 3 : left_intra || above_intra;
107
10.3M
  } else if (has_above || has_left) {  // one edge available
108
4.08M
    return 2 * !is_inter_block(has_above ? above_mi : left_mi);
109
4.08M
  }
110
537k
  return 0;
111
14.9M
}
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.89M
static INLINE int get_intra_inter_context(const MACROBLOCKD *xd) {
98
4.89M
  const MODE_INFO *const above_mi = xd->above_mi;
99
4.89M
  const MODE_INFO *const left_mi = xd->left_mi;
100
4.89M
  const int has_above = !!above_mi;
101
4.89M
  const int has_left = !!left_mi;
102
103
4.89M
  if (has_above && has_left) {  // both edges available
104
3.58M
    const int above_intra = !is_inter_block(above_mi);
105
3.58M
    const int left_intra = !is_inter_block(left_mi);
106
3.58M
    return left_intra && above_intra ? 3 : left_intra || above_intra;
107
3.58M
  } else if (has_above || has_left) {  // one edge available
108
1.25M
    return 2 * !is_inter_block(has_above ? above_mi : left_mi);
109
1.25M
  }
110
49.8k
  return 0;
111
4.89M
}
vp9_bitstream.c:get_intra_inter_context
Line
Count
Source
97
1.45M
static INLINE int get_intra_inter_context(const MACROBLOCKD *xd) {
98
1.45M
  const MODE_INFO *const above_mi = xd->above_mi;
99
1.45M
  const MODE_INFO *const left_mi = xd->left_mi;
100
1.45M
  const int has_above = !!above_mi;
101
1.45M
  const int has_left = !!left_mi;
102
103
1.45M
  if (has_above && has_left) {  // both edges available
104
1.01M
    const int above_intra = !is_inter_block(above_mi);
105
1.01M
    const int left_intra = !is_inter_block(left_mi);
106
1.01M
    return left_intra && above_intra ? 3 : left_intra || above_intra;
107
1.01M
  } else if (has_above || has_left) {  // one edge available
108
383k
    return 2 * !is_inter_block(has_above ? above_mi : left_mi);
109
383k
  }
110
57.5k
  return 0;
111
1.45M
}
vp9_encodeframe.c:get_intra_inter_context
Line
Count
Source
97
1.45M
static INLINE int get_intra_inter_context(const MACROBLOCKD *xd) {
98
1.45M
  const MODE_INFO *const above_mi = xd->above_mi;
99
1.45M
  const MODE_INFO *const left_mi = xd->left_mi;
100
1.45M
  const int has_above = !!above_mi;
101
1.45M
  const int has_left = !!left_mi;
102
103
1.45M
  if (has_above && has_left) {  // both edges available
104
1.01M
    const int above_intra = !is_inter_block(above_mi);
105
1.01M
    const int left_intra = !is_inter_block(left_mi);
106
1.01M
    return left_intra && above_intra ? 3 : left_intra || above_intra;
107
1.01M
  } else if (has_above || has_left) {  // one edge available
108
383k
    return 2 * !is_inter_block(has_above ? above_mi : left_mi);
109
383k
  }
110
57.5k
  return 0;
111
1.45M
}
vp9_rdopt.c:get_intra_inter_context
Line
Count
Source
97
7.13M
static INLINE int get_intra_inter_context(const MACROBLOCKD *xd) {
98
7.13M
  const MODE_INFO *const above_mi = xd->above_mi;
99
7.13M
  const MODE_INFO *const left_mi = xd->left_mi;
100
7.13M
  const int has_above = !!above_mi;
101
7.13M
  const int has_left = !!left_mi;
102
103
7.13M
  if (has_above && has_left) {  // both edges available
104
4.70M
    const int above_intra = !is_inter_block(above_mi);
105
4.70M
    const int left_intra = !is_inter_block(left_mi);
106
4.70M
    return left_intra && above_intra ? 3 : left_intra || above_intra;
107
4.70M
  } else if (has_above || has_left) {  // one edge available
108
2.05M
    return 2 * !is_inter_block(has_above ? above_mi : left_mi);
109
2.05M
  }
110
372k
  return 0;
111
7.13M
}
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
8.58M
                                                const MACROBLOCKD *xd) {
115
8.58M
  return cm->fc->intra_inter_prob[get_intra_inter_context(xd)];
116
8.58M
}
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.45M
                                                const MACROBLOCKD *xd) {
115
1.45M
  return cm->fc->intra_inter_prob[get_intra_inter_context(xd)];
116
1.45M
}
Unexecuted instantiation: vp9_encodeframe.c:vp9_get_intra_inter_prob
vp9_rdopt.c:vp9_get_intra_inter_prob
Line
Count
Source
114
7.13M
                                                const MACROBLOCKD *xd) {
115
7.13M
  return cm->fc->intra_inter_prob[get_intra_inter_context(xd)];
116
7.13M
}
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
7.74M
                                                       const MACROBLOCKD *xd) {
138
7.74M
  return cm->fc->single_ref_prob[vp9_get_pred_context_single_ref_p1(xd)][0];
139
7.74M
}
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
606k
                                                       const MACROBLOCKD *xd) {
138
606k
  return cm->fc->single_ref_prob[vp9_get_pred_context_single_ref_p1(xd)][0];
139
606k
}
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
7.13M
                                                       const MACROBLOCKD *xd) {
138
7.13M
  return cm->fc->single_ref_prob[vp9_get_pred_context_single_ref_p1(xd)][0];
139
7.13M
}
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
7.35M
                                                       const MACROBLOCKD *xd) {
145
7.35M
  return cm->fc->single_ref_prob[vp9_get_pred_context_single_ref_p2(xd)][1];
146
7.35M
}
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
217k
                                                       const MACROBLOCKD *xd) {
145
217k
  return cm->fc->single_ref_prob[vp9_get_pred_context_single_ref_p2(xd)][1];
146
217k
}
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
7.13M
                                                       const MACROBLOCKD *xd) {
145
7.13M
  return cm->fc->single_ref_prob[vp9_get_pred_context_single_ref_p2(xd)][1];
146
7.13M
}
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
34.9M
static INLINE int get_tx_size_context(const MACROBLOCKD *xd) {
157
34.9M
  const int max_tx_size = max_txsize_lookup[xd->mi[0]->sb_type];
158
34.9M
  const MODE_INFO *const above_mi = xd->above_mi;
159
34.9M
  const MODE_INFO *const left_mi = xd->left_mi;
160
34.9M
  const int has_above = !!above_mi;
161
34.9M
  const int has_left = !!left_mi;
162
34.9M
  int above_ctx =
163
34.9M
      (has_above && !above_mi->skip) ? (int)above_mi->tx_size : max_tx_size;
164
34.9M
  int left_ctx =
165
34.9M
      (has_left && !left_mi->skip) ? (int)left_mi->tx_size : max_tx_size;
166
34.9M
  if (!has_left) left_ctx = above_ctx;
167
168
34.9M
  if (!has_above) above_ctx = left_ctx;
169
170
34.9M
  return (above_ctx + left_ctx) > max_tx_size;
171
34.9M
}
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.14M
static INLINE int get_tx_size_context(const MACROBLOCKD *xd) {
157
1.14M
  const int max_tx_size = max_txsize_lookup[xd->mi[0]->sb_type];
158
1.14M
  const MODE_INFO *const above_mi = xd->above_mi;
159
1.14M
  const MODE_INFO *const left_mi = xd->left_mi;
160
1.14M
  const int has_above = !!above_mi;
161
1.14M
  const int has_left = !!left_mi;
162
1.14M
  int above_ctx =
163
1.14M
      (has_above && !above_mi->skip) ? (int)above_mi->tx_size : max_tx_size;
164
1.14M
  int left_ctx =
165
1.14M
      (has_left && !left_mi->skip) ? (int)left_mi->tx_size : max_tx_size;
166
1.14M
  if (!has_left) left_ctx = above_ctx;
167
168
1.14M
  if (!has_above) above_ctx = left_ctx;
169
170
1.14M
  return (above_ctx + left_ctx) > max_tx_size;
171
1.14M
}
vp9_bitstream.c:get_tx_size_context
Line
Count
Source
156
501k
static INLINE int get_tx_size_context(const MACROBLOCKD *xd) {
157
501k
  const int max_tx_size = max_txsize_lookup[xd->mi[0]->sb_type];
158
501k
  const MODE_INFO *const above_mi = xd->above_mi;
159
501k
  const MODE_INFO *const left_mi = xd->left_mi;
160
501k
  const int has_above = !!above_mi;
161
501k
  const int has_left = !!left_mi;
162
501k
  int above_ctx =
163
501k
      (has_above && !above_mi->skip) ? (int)above_mi->tx_size : max_tx_size;
164
501k
  int left_ctx =
165
501k
      (has_left && !left_mi->skip) ? (int)left_mi->tx_size : max_tx_size;
166
501k
  if (!has_left) left_ctx = above_ctx;
167
168
501k
  if (!has_above) above_ctx = left_ctx;
169
170
501k
  return (above_ctx + left_ctx) > max_tx_size;
171
501k
}
vp9_encodeframe.c:get_tx_size_context
Line
Count
Source
156
567k
static INLINE int get_tx_size_context(const MACROBLOCKD *xd) {
157
567k
  const int max_tx_size = max_txsize_lookup[xd->mi[0]->sb_type];
158
567k
  const MODE_INFO *const above_mi = xd->above_mi;
159
567k
  const MODE_INFO *const left_mi = xd->left_mi;
160
567k
  const int has_above = !!above_mi;
161
567k
  const int has_left = !!left_mi;
162
567k
  int above_ctx =
163
567k
      (has_above && !above_mi->skip) ? (int)above_mi->tx_size : max_tx_size;
164
567k
  int left_ctx =
165
567k
      (has_left && !left_mi->skip) ? (int)left_mi->tx_size : max_tx_size;
166
567k
  if (!has_left) left_ctx = above_ctx;
167
168
567k
  if (!has_above) above_ctx = left_ctx;
169
170
567k
  return (above_ctx + left_ctx) > max_tx_size;
171
567k
}
vp9_rdopt.c:get_tx_size_context
Line
Count
Source
156
32.7M
static INLINE int get_tx_size_context(const MACROBLOCKD *xd) {
157
32.7M
  const int max_tx_size = max_txsize_lookup[xd->mi[0]->sb_type];
158
32.7M
  const MODE_INFO *const above_mi = xd->above_mi;
159
32.7M
  const MODE_INFO *const left_mi = xd->left_mi;
160
32.7M
  const int has_above = !!above_mi;
161
32.7M
  const int has_left = !!left_mi;
162
32.7M
  int above_ctx =
163
32.7M
      (has_above && !above_mi->skip) ? (int)above_mi->tx_size : max_tx_size;
164
32.7M
  int left_ctx =
165
32.7M
      (has_left && !left_mi->skip) ? (int)left_mi->tx_size : max_tx_size;
166
32.7M
  if (!has_left) left_ctx = above_ctx;
167
168
32.7M
  if (!has_above) above_ctx = left_ctx;
169
170
32.7M
  return (above_ctx + left_ctx) > max_tx_size;
171
32.7M
}
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.07M
                                           const struct tx_probs *tx_probs) {
175
2.07M
  switch (max_tx_size) {
176
1.17M
    case TX_8X8: return tx_probs->p8x8[ctx];
177
455k
    case TX_16X16: return tx_probs->p16x16[ctx];
178
445k
    case TX_32X32: return tx_probs->p32x32[ctx];
179
0
    default: assert(0 && "Invalid max_tx_size."); return NULL;
180
2.07M
  }
181
2.07M
}
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
426k
                                           const struct tx_probs *tx_probs) {
175
426k
  switch (max_tx_size) {
176
142k
    case TX_8X8: return tx_probs->p8x8[ctx];
177
142k
    case TX_16X16: return tx_probs->p16x16[ctx];
178
142k
    case TX_32X32: return tx_probs->p32x32[ctx];
179
0
    default: assert(0 && "Invalid max_tx_size."); return NULL;
180
426k
  }
181
426k
}
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.14M
                                           const struct tx_probs *tx_probs) {
175
1.14M
  switch (max_tx_size) {
176
630k
    case TX_8X8: return tx_probs->p8x8[ctx];
177
251k
    case TX_16X16: return tx_probs->p16x16[ctx];
178
261k
    case TX_32X32: return tx_probs->p32x32[ctx];
179
0
    default: assert(0 && "Invalid max_tx_size."); return NULL;
180
1.14M
  }
181
1.14M
}
vp9_bitstream.c:get_tx_probs
Line
Count
Source
174
501k
                                           const struct tx_probs *tx_probs) {
175
501k
  switch (max_tx_size) {
176
398k
    case TX_8X8: return tx_probs->p8x8[ctx];
177
61.0k
    case TX_16X16: return tx_probs->p16x16[ctx];
178
41.7k
    case TX_32X32: return tx_probs->p32x32[ctx];
179
0
    default: assert(0 && "Invalid max_tx_size."); return NULL;
180
501k
  }
181
501k
}
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
839k
    case TX_8X8: return tx_counts->p8x8[ctx];
187
222k
    case TX_16X16: return tx_counts->p16x16[ctx];
188
184k
    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
678k
                                          struct tx_counts *tx_counts) {
185
678k
  switch (max_tx_size) {
186
395k
    case TX_8X8: return tx_counts->p8x8[ctx];
187
154k
    case TX_16X16: return tx_counts->p16x16[ctx];
188
129k
    case TX_32X32: return tx_counts->p32x32[ctx];
189
0
    default: assert(0 && "Invalid max_tx_size."); return NULL;
190
678k
  }
191
678k
}
Unexecuted instantiation: vp9_bitstream.c:get_tx_counts
vp9_encodeframe.c:get_tx_counts
Line
Count
Source
184
567k
                                          struct tx_counts *tx_counts) {
185
567k
  switch (max_tx_size) {
186
444k
    case TX_8X8: return tx_counts->p8x8[ctx];
187
67.7k
    case TX_16X16: return tx_counts->p16x16[ctx];
188
55.2k
    case TX_32X32: return tx_counts->p32x32[ctx];
189
0
    default: assert(0 && "Invalid max_tx_size."); return NULL;
190
567k
  }
191
567k
}
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_