Coverage Report

Created: 2026-02-14 06:59

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
95.8k
static INLINE int vp9_get_pred_context_seg_id(const MACROBLOCKD *xd) {
42
95.8k
  const MODE_INFO *const above_mi = xd->above_mi;
43
95.8k
  const MODE_INFO *const left_mi = xd->left_mi;
44
95.8k
  const int above_sip = (above_mi != NULL) ? above_mi->seg_id_predicted : 0;
45
95.8k
  const int left_sip = (left_mi != NULL) ? left_mi->seg_id_predicted : 0;
46
47
95.8k
  return above_sip + left_sip;
48
95.8k
}
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
95.8k
static INLINE int vp9_get_pred_context_seg_id(const MACROBLOCKD *xd) {
42
95.8k
  const MODE_INFO *const above_mi = xd->above_mi;
43
95.8k
  const MODE_INFO *const left_mi = xd->left_mi;
44
95.8k
  const int above_sip = (above_mi != NULL) ? above_mi->seg_id_predicted : 0;
45
95.8k
  const int left_sip = (left_mi != NULL) ? left_mi->seg_id_predicted : 0;
46
47
95.8k
  return above_sip + left_sip;
48
95.8k
}
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
95.8k
                                                const MACROBLOCKD *xd) {
52
95.8k
  return seg->pred_probs[vp9_get_pred_context_seg_id(xd)];
53
95.8k
}
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
95.8k
                                                const MACROBLOCKD *xd) {
52
95.8k
  return seg->pred_probs[vp9_get_pred_context_seg_id(xd)];
53
95.8k
}
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
57.3M
static INLINE int vp9_get_skip_context(const MACROBLOCKD *xd) {
56
57.3M
  const MODE_INFO *const above_mi = xd->above_mi;
57
57.3M
  const MODE_INFO *const left_mi = xd->left_mi;
58
57.3M
  const int above_skip = (above_mi != NULL) ? above_mi->skip : 0;
59
57.3M
  const int left_skip = (left_mi != NULL) ? left_mi->skip : 0;
60
57.3M
  return above_skip + left_skip;
61
57.3M
}
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
6.30M
static INLINE int vp9_get_skip_context(const MACROBLOCKD *xd) {
56
6.30M
  const MODE_INFO *const above_mi = xd->above_mi;
57
6.30M
  const MODE_INFO *const left_mi = xd->left_mi;
58
6.30M
  const int above_skip = (above_mi != NULL) ? above_mi->skip : 0;
59
6.30M
  const int left_skip = (left_mi != NULL) ? left_mi->skip : 0;
60
6.30M
  return above_skip + left_skip;
61
6.30M
}
vp9_decodemv.c:vp9_get_skip_context
Line
Count
Source
55
5.56M
static INLINE int vp9_get_skip_context(const MACROBLOCKD *xd) {
56
5.56M
  const MODE_INFO *const above_mi = xd->above_mi;
57
5.56M
  const MODE_INFO *const left_mi = xd->left_mi;
58
5.56M
  const int above_skip = (above_mi != NULL) ? above_mi->skip : 0;
59
5.56M
  const int left_skip = (left_mi != NULL) ? left_mi->skip : 0;
60
5.56M
  return above_skip + left_skip;
61
5.56M
}
vp9_bitstream.c:vp9_get_skip_context
Line
Count
Source
55
1.51M
static INLINE int vp9_get_skip_context(const MACROBLOCKD *xd) {
56
1.51M
  const MODE_INFO *const above_mi = xd->above_mi;
57
1.51M
  const MODE_INFO *const left_mi = xd->left_mi;
58
1.51M
  const int above_skip = (above_mi != NULL) ? above_mi->skip : 0;
59
1.51M
  const int left_skip = (left_mi != NULL) ? left_mi->skip : 0;
60
1.51M
  return above_skip + left_skip;
61
1.51M
}
Unexecuted instantiation: vp9_encodeframe.c:vp9_get_skip_context
vp9_rdopt.c:vp9_get_skip_context
Line
Count
Source
55
43.9M
static INLINE int vp9_get_skip_context(const MACROBLOCKD *xd) {
56
43.9M
  const MODE_INFO *const above_mi = xd->above_mi;
57
43.9M
  const MODE_INFO *const left_mi = xd->left_mi;
58
43.9M
  const int above_skip = (above_mi != NULL) ? above_mi->skip : 0;
59
43.9M
  const int left_skip = (left_mi != NULL) ? left_mi->skip : 0;
60
43.9M
  return above_skip + left_skip;
61
43.9M
}
Unexecuted instantiation: vp9_pickmode.c:vp9_get_skip_context
62
63
static INLINE vpx_prob vp9_get_skip_prob(const VP9_COMMON *cm,
64
45.4M
                                         const MACROBLOCKD *xd) {
65
45.4M
  return cm->fc->skip_probs[vp9_get_skip_context(xd)];
66
45.4M
}
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.51M
                                         const MACROBLOCKD *xd) {
65
1.51M
  return cm->fc->skip_probs[vp9_get_skip_context(xd)];
66
1.51M
}
Unexecuted instantiation: vp9_encodeframe.c:vp9_get_skip_prob
vp9_rdopt.c:vp9_get_skip_prob
Line
Count
Source
64
43.9M
                                         const MACROBLOCKD *xd) {
65
43.9M
  return cm->fc->skip_probs[vp9_get_skip_context(xd)];
66
43.9M
}
Unexecuted instantiation: vp9_pickmode.c:vp9_get_skip_prob
67
68
// Returns a context number for the given MB prediction signal
69
35.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
35.0M
  const MODE_INFO *const left_mi = xd->left_mi;
75
35.0M
  const int left_type = left_mi ? left_mi->interp_filter : SWITCHABLE_FILTERS;
76
35.0M
  const MODE_INFO *const above_mi = xd->above_mi;
77
35.0M
  const int above_type =
78
35.0M
      above_mi ? above_mi->interp_filter : SWITCHABLE_FILTERS;
79
80
35.0M
  if (left_type == above_type)
81
22.8M
    return left_type;
82
12.2M
  else if (left_type == SWITCHABLE_FILTERS)
83
5.19M
    return above_type;
84
7.05M
  else if (above_type == SWITCHABLE_FILTERS)
85
5.41M
    return left_type;
86
1.64M
  else
87
1.64M
    return SWITCHABLE_FILTERS;
88
35.0M
}
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
32.5M
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
32.5M
  const MODE_INFO *const left_mi = xd->left_mi;
75
32.5M
  const int left_type = left_mi ? left_mi->interp_filter : SWITCHABLE_FILTERS;
76
32.5M
  const MODE_INFO *const above_mi = xd->above_mi;
77
32.5M
  const int above_type =
78
32.5M
      above_mi ? above_mi->interp_filter : SWITCHABLE_FILTERS;
79
80
32.5M
  if (left_type == above_type)
81
21.6M
    return left_type;
82
10.9M
  else if (left_type == SWITCHABLE_FILTERS)
83
4.81M
    return above_type;
84
6.10M
  else if (above_type == SWITCHABLE_FILTERS)
85
4.97M
    return left_type;
86
1.13M
  else
87
1.13M
    return SWITCHABLE_FILTERS;
88
32.5M
}
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.12M
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.12M
  const MODE_INFO *const left_mi = xd->left_mi;
75
2.12M
  const int left_type = left_mi ? left_mi->interp_filter : SWITCHABLE_FILTERS;
76
2.12M
  const MODE_INFO *const above_mi = xd->above_mi;
77
2.12M
  const int above_type =
78
2.12M
      above_mi ? above_mi->interp_filter : SWITCHABLE_FILTERS;
79
80
2.12M
  if (left_type == above_type)
81
986k
    return left_type;
82
1.13M
  else if (left_type == SWITCHABLE_FILTERS)
83
320k
    return above_type;
84
816k
  else if (above_type == SWITCHABLE_FILTERS)
85
361k
    return left_type;
86
454k
  else
87
454k
    return SWITCHABLE_FILTERS;
88
2.12M
}
vp9_bitstream.c:get_pred_context_switchable_interp
Line
Count
Source
69
167k
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
167k
  const MODE_INFO *const left_mi = xd->left_mi;
75
167k
  const int left_type = left_mi ? left_mi->interp_filter : SWITCHABLE_FILTERS;
76
167k
  const MODE_INFO *const above_mi = xd->above_mi;
77
167k
  const int above_type =
78
167k
      above_mi ? above_mi->interp_filter : SWITCHABLE_FILTERS;
79
80
167k
  if (left_type == above_type)
81
81.2k
    return left_type;
82
86.2k
  else if (left_type == SWITCHABLE_FILTERS)
83
24.1k
    return above_type;
84
62.0k
  else if (above_type == SWITCHABLE_FILTERS)
85
33.7k
    return left_type;
86
28.2k
  else
87
28.2k
    return SWITCHABLE_FILTERS;
88
167k
}
vp9_encodeframe.c:get_pred_context_switchable_interp
Line
Count
Source
69
214k
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
214k
  const MODE_INFO *const left_mi = xd->left_mi;
75
214k
  const int left_type = left_mi ? left_mi->interp_filter : SWITCHABLE_FILTERS;
76
214k
  const MODE_INFO *const above_mi = xd->above_mi;
77
214k
  const int above_type =
78
214k
      above_mi ? above_mi->interp_filter : SWITCHABLE_FILTERS;
79
80
214k
  if (left_type == above_type)
81
110k
    return left_type;
82
104k
  else if (left_type == SWITCHABLE_FILTERS)
83
31.3k
    return above_type;
84
72.8k
  else if (above_type == SWITCHABLE_FILTERS)
85
44.5k
    return left_type;
86
28.2k
  else
87
28.2k
    return SWITCHABLE_FILTERS;
88
214k
}
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
11.2M
static INLINE int get_intra_inter_context(const MACROBLOCKD *xd) {
98
11.2M
  const MODE_INFO *const above_mi = xd->above_mi;
99
11.2M
  const MODE_INFO *const left_mi = xd->left_mi;
100
11.2M
  const int has_above = !!above_mi;
101
11.2M
  const int has_left = !!left_mi;
102
103
11.2M
  if (has_above && has_left) {  // both edges available
104
7.68M
    const int above_intra = !is_inter_block(above_mi);
105
7.68M
    const int left_intra = !is_inter_block(left_mi);
106
7.68M
    return left_intra && above_intra ? 3 : left_intra || above_intra;
107
7.68M
  } else if (has_above || has_left) {  // one edge available
108
3.16M
    return 2 * !is_inter_block(has_above ? above_mi : left_mi);
109
3.16M
  }
110
444k
  return 0;
111
11.2M
}
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.74M
static INLINE int get_intra_inter_context(const MACROBLOCKD *xd) {
98
4.74M
  const MODE_INFO *const above_mi = xd->above_mi;
99
4.74M
  const MODE_INFO *const left_mi = xd->left_mi;
100
4.74M
  const int has_above = !!above_mi;
101
4.74M
  const int has_left = !!left_mi;
102
103
4.74M
  if (has_above && has_left) {  // both edges available
104
3.52M
    const int above_intra = !is_inter_block(above_mi);
105
3.52M
    const int left_intra = !is_inter_block(left_mi);
106
3.52M
    return left_intra && above_intra ? 3 : left_intra || above_intra;
107
3.52M
  } else if (has_above || has_left) {  // one edge available
108
1.18M
    return 2 * !is_inter_block(has_above ? above_mi : left_mi);
109
1.18M
  }
110
46.8k
  return 0;
111
4.74M
}
vp9_bitstream.c:get_intra_inter_context
Line
Count
Source
97
989k
static INLINE int get_intra_inter_context(const MACROBLOCKD *xd) {
98
989k
  const MODE_INFO *const above_mi = xd->above_mi;
99
989k
  const MODE_INFO *const left_mi = xd->left_mi;
100
989k
  const int has_above = !!above_mi;
101
989k
  const int has_left = !!left_mi;
102
103
989k
  if (has_above && has_left) {  // both edges available
104
659k
    const int above_intra = !is_inter_block(above_mi);
105
659k
    const int left_intra = !is_inter_block(left_mi);
106
659k
    return left_intra && above_intra ? 3 : left_intra || above_intra;
107
659k
  } else if (has_above || has_left) {  // one edge available
108
280k
    return 2 * !is_inter_block(has_above ? above_mi : left_mi);
109
280k
  }
110
49.4k
  return 0;
111
989k
}
vp9_encodeframe.c:get_intra_inter_context
Line
Count
Source
97
989k
static INLINE int get_intra_inter_context(const MACROBLOCKD *xd) {
98
989k
  const MODE_INFO *const above_mi = xd->above_mi;
99
989k
  const MODE_INFO *const left_mi = xd->left_mi;
100
989k
  const int has_above = !!above_mi;
101
989k
  const int has_left = !!left_mi;
102
103
989k
  if (has_above && has_left) {  // both edges available
104
659k
    const int above_intra = !is_inter_block(above_mi);
105
659k
    const int left_intra = !is_inter_block(left_mi);
106
659k
    return left_intra && above_intra ? 3 : left_intra || above_intra;
107
659k
  } else if (has_above || has_left) {  // one edge available
108
280k
    return 2 * !is_inter_block(has_above ? above_mi : left_mi);
109
280k
  }
110
49.4k
  return 0;
111
989k
}
vp9_rdopt.c:get_intra_inter_context
Line
Count
Source
97
4.56M
static INLINE int get_intra_inter_context(const MACROBLOCKD *xd) {
98
4.56M
  const MODE_INFO *const above_mi = xd->above_mi;
99
4.56M
  const MODE_INFO *const left_mi = xd->left_mi;
100
4.56M
  const int has_above = !!above_mi;
101
4.56M
  const int has_left = !!left_mi;
102
103
4.56M
  if (has_above && has_left) {  // both edges available
104
2.84M
    const int above_intra = !is_inter_block(above_mi);
105
2.84M
    const int left_intra = !is_inter_block(left_mi);
106
2.84M
    return left_intra && above_intra ? 3 : left_intra || above_intra;
107
2.84M
  } else if (has_above || has_left) {  // one edge available
108
1.42M
    return 2 * !is_inter_block(has_above ? above_mi : left_mi);
109
1.42M
  }
110
298k
  return 0;
111
4.56M
}
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
5.55M
                                                const MACROBLOCKD *xd) {
115
5.55M
  return cm->fc->intra_inter_prob[get_intra_inter_context(xd)];
116
5.55M
}
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
989k
                                                const MACROBLOCKD *xd) {
115
989k
  return cm->fc->intra_inter_prob[get_intra_inter_context(xd)];
116
989k
}
Unexecuted instantiation: vp9_encodeframe.c:vp9_get_intra_inter_prob
vp9_rdopt.c:vp9_get_intra_inter_prob
Line
Count
Source
114
4.56M
                                                const MACROBLOCKD *xd) {
115
4.56M
  return cm->fc->intra_inter_prob[get_intra_inter_context(xd)];
116
4.56M
}
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
5.01M
                                                       const MACROBLOCKD *xd) {
138
5.01M
  return cm->fc->single_ref_prob[vp9_get_pred_context_single_ref_p1(xd)][0];
139
5.01M
}
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
443k
                                                       const MACROBLOCKD *xd) {
138
443k
  return cm->fc->single_ref_prob[vp9_get_pred_context_single_ref_p1(xd)][0];
139
443k
}
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
4.56M
                                                       const MACROBLOCKD *xd) {
138
4.56M
  return cm->fc->single_ref_prob[vp9_get_pred_context_single_ref_p1(xd)][0];
139
4.56M
}
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
4.72M
                                                       const MACROBLOCKD *xd) {
145
4.72M
  return cm->fc->single_ref_prob[vp9_get_pred_context_single_ref_p2(xd)][1];
146
4.72M
}
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
159k
                                                       const MACROBLOCKD *xd) {
145
159k
  return cm->fc->single_ref_prob[vp9_get_pred_context_single_ref_p2(xd)][1];
146
159k
}
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
4.56M
                                                       const MACROBLOCKD *xd) {
145
4.56M
  return cm->fc->single_ref_prob[vp9_get_pred_context_single_ref_p2(xd)][1];
146
4.56M
}
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
25.6M
static INLINE int get_tx_size_context(const MACROBLOCKD *xd) {
157
25.6M
  const int max_tx_size = max_txsize_lookup[xd->mi[0]->sb_type];
158
25.6M
  const MODE_INFO *const above_mi = xd->above_mi;
159
25.6M
  const MODE_INFO *const left_mi = xd->left_mi;
160
25.6M
  const int has_above = !!above_mi;
161
25.6M
  const int has_left = !!left_mi;
162
25.6M
  int above_ctx =
163
25.6M
      (has_above && !above_mi->skip) ? (int)above_mi->tx_size : max_tx_size;
164
25.6M
  int left_ctx =
165
25.6M
      (has_left && !left_mi->skip) ? (int)left_mi->tx_size : max_tx_size;
166
25.6M
  if (!has_left) left_ctx = above_ctx;
167
168
25.6M
  if (!has_above) above_ctx = left_ctx;
169
170
25.6M
  return (above_ctx + left_ctx) > max_tx_size;
171
25.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.09M
static INLINE int get_tx_size_context(const MACROBLOCKD *xd) {
157
1.09M
  const int max_tx_size = max_txsize_lookup[xd->mi[0]->sb_type];
158
1.09M
  const MODE_INFO *const above_mi = xd->above_mi;
159
1.09M
  const MODE_INFO *const left_mi = xd->left_mi;
160
1.09M
  const int has_above = !!above_mi;
161
1.09M
  const int has_left = !!left_mi;
162
1.09M
  int above_ctx =
163
1.09M
      (has_above && !above_mi->skip) ? (int)above_mi->tx_size : max_tx_size;
164
1.09M
  int left_ctx =
165
1.09M
      (has_left && !left_mi->skip) ? (int)left_mi->tx_size : max_tx_size;
166
1.09M
  if (!has_left) left_ctx = above_ctx;
167
168
1.09M
  if (!has_above) above_ctx = left_ctx;
169
170
1.09M
  return (above_ctx + left_ctx) > max_tx_size;
171
1.09M
}
vp9_bitstream.c:get_tx_size_context
Line
Count
Source
156
386k
static INLINE int get_tx_size_context(const MACROBLOCKD *xd) {
157
386k
  const int max_tx_size = max_txsize_lookup[xd->mi[0]->sb_type];
158
386k
  const MODE_INFO *const above_mi = xd->above_mi;
159
386k
  const MODE_INFO *const left_mi = xd->left_mi;
160
386k
  const int has_above = !!above_mi;
161
386k
  const int has_left = !!left_mi;
162
386k
  int above_ctx =
163
386k
      (has_above && !above_mi->skip) ? (int)above_mi->tx_size : max_tx_size;
164
386k
  int left_ctx =
165
386k
      (has_left && !left_mi->skip) ? (int)left_mi->tx_size : max_tx_size;
166
386k
  if (!has_left) left_ctx = above_ctx;
167
168
386k
  if (!has_above) above_ctx = left_ctx;
169
170
386k
  return (above_ctx + left_ctx) > max_tx_size;
171
386k
}
vp9_encodeframe.c:get_tx_size_context
Line
Count
Source
156
443k
static INLINE int get_tx_size_context(const MACROBLOCKD *xd) {
157
443k
  const int max_tx_size = max_txsize_lookup[xd->mi[0]->sb_type];
158
443k
  const MODE_INFO *const above_mi = xd->above_mi;
159
443k
  const MODE_INFO *const left_mi = xd->left_mi;
160
443k
  const int has_above = !!above_mi;
161
443k
  const int has_left = !!left_mi;
162
443k
  int above_ctx =
163
443k
      (has_above && !above_mi->skip) ? (int)above_mi->tx_size : max_tx_size;
164
443k
  int left_ctx =
165
443k
      (has_left && !left_mi->skip) ? (int)left_mi->tx_size : max_tx_size;
166
443k
  if (!has_left) left_ctx = above_ctx;
167
168
443k
  if (!has_above) above_ctx = left_ctx;
169
170
443k
  return (above_ctx + left_ctx) > max_tx_size;
171
443k
}
vp9_rdopt.c:get_tx_size_context
Line
Count
Source
156
23.7M
static INLINE int get_tx_size_context(const MACROBLOCKD *xd) {
157
23.7M
  const int max_tx_size = max_txsize_lookup[xd->mi[0]->sb_type];
158
23.7M
  const MODE_INFO *const above_mi = xd->above_mi;
159
23.7M
  const MODE_INFO *const left_mi = xd->left_mi;
160
23.7M
  const int has_above = !!above_mi;
161
23.7M
  const int has_left = !!left_mi;
162
23.7M
  int above_ctx =
163
23.7M
      (has_above && !above_mi->skip) ? (int)above_mi->tx_size : max_tx_size;
164
23.7M
  int left_ctx =
165
23.7M
      (has_left && !left_mi->skip) ? (int)left_mi->tx_size : max_tx_size;
166
23.7M
  if (!has_left) left_ctx = above_ctx;
167
168
23.7M
  if (!has_above) above_ctx = left_ctx;
169
170
23.7M
  return (above_ctx + left_ctx) > max_tx_size;
171
23.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
1.84M
                                           const struct tx_probs *tx_probs) {
175
1.84M
  switch (max_tx_size) {
176
1.03M
    case TX_8X8: return tx_probs->p8x8[ctx];
177
414k
    case TX_16X16: return tx_probs->p16x16[ctx];
178
401k
    case TX_32X32: return tx_probs->p32x32[ctx];
179
0
    default: assert(0 && "Invalid max_tx_size."); return NULL;
180
1.84M
  }
181
1.84M
}
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
367k
                                           const struct tx_probs *tx_probs) {
175
367k
  switch (max_tx_size) {
176
122k
    case TX_8X8: return tx_probs->p8x8[ctx];
177
122k
    case TX_16X16: return tx_probs->p16x16[ctx];
178
122k
    case TX_32X32: return tx_probs->p32x32[ctx];
179
0
    default: assert(0 && "Invalid max_tx_size."); return NULL;
180
367k
  }
181
367k
}
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.09M
                                           const struct tx_probs *tx_probs) {
175
1.09M
  switch (max_tx_size) {
176
612k
    case TX_8X8: return tx_probs->p8x8[ctx];
177
241k
    case TX_16X16: return tx_probs->p16x16[ctx];
178
241k
    case TX_32X32: return tx_probs->p32x32[ctx];
179
0
    default: assert(0 && "Invalid max_tx_size."); return NULL;
180
1.09M
  }
181
1.09M
}
vp9_bitstream.c:get_tx_probs
Line
Count
Source
174
386k
                                           const struct tx_probs *tx_probs) {
175
386k
  switch (max_tx_size) {
176
298k
    case TX_8X8: return tx_probs->p8x8[ctx];
177
50.8k
    case TX_16X16: return tx_probs->p16x16[ctx];
178
37.2k
    case TX_32X32: return tx_probs->p32x32[ctx];
179
0
    default: assert(0 && "Invalid max_tx_size."); return NULL;
180
386k
  }
181
386k
}
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.05M
                                          struct tx_counts *tx_counts) {
185
1.05M
  switch (max_tx_size) {
186
688k
    case TX_8X8: return tx_counts->p8x8[ctx];
187
190k
    case TX_16X16: return tx_counts->p16x16[ctx];
188
173k
    case TX_32X32: return tx_counts->p32x32[ctx];
189
0
    default: assert(0 && "Invalid max_tx_size."); return NULL;
190
1.05M
  }
191
1.05M
}
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
609k
                                          struct tx_counts *tx_counts) {
185
609k
  switch (max_tx_size) {
186
351k
    case TX_8X8: return tx_counts->p8x8[ctx];
187
133k
    case TX_16X16: return tx_counts->p16x16[ctx];
188
123k
    case TX_32X32: return tx_counts->p32x32[ctx];
189
0
    default: assert(0 && "Invalid max_tx_size."); return NULL;
190
609k
  }
191
609k
}
Unexecuted instantiation: vp9_bitstream.c:get_tx_counts
vp9_encodeframe.c:get_tx_counts
Line
Count
Source
184
443k
                                          struct tx_counts *tx_counts) {
185
443k
  switch (max_tx_size) {
186
337k
    case TX_8X8: return tx_counts->p8x8[ctx];
187
57.0k
    case TX_16X16: return tx_counts->p16x16[ctx];
188
49.4k
    case TX_32X32: return tx_counts->p32x32[ctx];
189
0
    default: assert(0 && "Invalid max_tx_size."); return NULL;
190
443k
  }
191
443k
}
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_