Coverage Report

Created: 2026-09-14 08:00

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
153k
static INLINE int vp9_get_pred_context_seg_id(const MACROBLOCKD *xd) {
42
153k
  const MODE_INFO *const above_mi = xd->above_mi;
43
153k
  const MODE_INFO *const left_mi = xd->left_mi;
44
153k
  const int above_sip = (above_mi != NULL) ? above_mi->seg_id_predicted : 0;
45
153k
  const int left_sip = (left_mi != NULL) ? left_mi->seg_id_predicted : 0;
46
47
153k
  return above_sip + left_sip;
48
153k
}
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
153k
static INLINE int vp9_get_pred_context_seg_id(const MACROBLOCKD *xd) {
42
153k
  const MODE_INFO *const above_mi = xd->above_mi;
43
153k
  const MODE_INFO *const left_mi = xd->left_mi;
44
153k
  const int above_sip = (above_mi != NULL) ? above_mi->seg_id_predicted : 0;
45
153k
  const int left_sip = (left_mi != NULL) ? left_mi->seg_id_predicted : 0;
46
47
153k
  return above_sip + left_sip;
48
153k
}
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
153k
                                                const MACROBLOCKD *xd) {
52
153k
  return seg->pred_probs[vp9_get_pred_context_seg_id(xd)];
53
153k
}
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
153k
                                                const MACROBLOCKD *xd) {
52
153k
  return seg->pred_probs[vp9_get_pred_context_seg_id(xd)];
53
153k
}
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
54.9M
static INLINE int vp9_get_skip_context(const MACROBLOCKD *xd) {
56
54.9M
  const MODE_INFO *const above_mi = xd->above_mi;
57
54.9M
  const MODE_INFO *const left_mi = xd->left_mi;
58
54.9M
  const int above_skip = (above_mi != NULL) ? above_mi->skip : 0;
59
54.9M
  const int left_skip = (left_mi != NULL) ? left_mi->skip : 0;
60
54.9M
  return above_skip + left_skip;
61
54.9M
}
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
5.92M
static INLINE int vp9_get_skip_context(const MACROBLOCKD *xd) {
56
5.92M
  const MODE_INFO *const above_mi = xd->above_mi;
57
5.92M
  const MODE_INFO *const left_mi = xd->left_mi;
58
5.92M
  const int above_skip = (above_mi != NULL) ? above_mi->skip : 0;
59
5.92M
  const int left_skip = (left_mi != NULL) ? left_mi->skip : 0;
60
5.92M
  return above_skip + left_skip;
61
5.92M
}
vp9_decodemv.c:vp9_get_skip_context
Line
Count
Source
55
5.62M
static INLINE int vp9_get_skip_context(const MACROBLOCKD *xd) {
56
5.62M
  const MODE_INFO *const above_mi = xd->above_mi;
57
5.62M
  const MODE_INFO *const left_mi = xd->left_mi;
58
5.62M
  const int above_skip = (above_mi != NULL) ? above_mi->skip : 0;
59
5.62M
  const int left_skip = (left_mi != NULL) ? left_mi->skip : 0;
60
5.62M
  return above_skip + left_skip;
61
5.62M
}
vp9_bitstream.c:vp9_get_skip_context
Line
Count
Source
55
1.41M
static INLINE int vp9_get_skip_context(const MACROBLOCKD *xd) {
56
1.41M
  const MODE_INFO *const above_mi = xd->above_mi;
57
1.41M
  const MODE_INFO *const left_mi = xd->left_mi;
58
1.41M
  const int above_skip = (above_mi != NULL) ? above_mi->skip : 0;
59
1.41M
  const int left_skip = (left_mi != NULL) ? left_mi->skip : 0;
60
1.41M
  return above_skip + left_skip;
61
1.41M
}
Unexecuted instantiation: vp9_encodeframe.c:vp9_get_skip_context
vp9_rdopt.c:vp9_get_skip_context
Line
Count
Source
55
41.9M
static INLINE int vp9_get_skip_context(const MACROBLOCKD *xd) {
56
41.9M
  const MODE_INFO *const above_mi = xd->above_mi;
57
41.9M
  const MODE_INFO *const left_mi = xd->left_mi;
58
41.9M
  const int above_skip = (above_mi != NULL) ? above_mi->skip : 0;
59
41.9M
  const int left_skip = (left_mi != NULL) ? left_mi->skip : 0;
60
41.9M
  return above_skip + left_skip;
61
41.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
43.3M
                                         const MACROBLOCKD *xd) {
65
43.3M
  return cm->fc->skip_probs[vp9_get_skip_context(xd)];
66
43.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
1.41M
                                         const MACROBLOCKD *xd) {
65
1.41M
  return cm->fc->skip_probs[vp9_get_skip_context(xd)];
66
1.41M
}
Unexecuted instantiation: vp9_encodeframe.c:vp9_get_skip_prob
vp9_rdopt.c:vp9_get_skip_prob
Line
Count
Source
64
41.9M
                                         const MACROBLOCKD *xd) {
65
41.9M
  return cm->fc->skip_probs[vp9_get_skip_context(xd)];
66
41.9M
}
Unexecuted instantiation: vp9_pickmode.c:vp9_get_skip_prob
67
68
// Returns a context number for the given MB prediction signal
69
34.1M
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
34.1M
  const MODE_INFO *const left_mi = xd->left_mi;
75
34.1M
  const int left_type = left_mi ? left_mi->interp_filter : SWITCHABLE_FILTERS;
76
34.1M
  const MODE_INFO *const above_mi = xd->above_mi;
77
34.1M
  const int above_type =
78
34.1M
      above_mi ? above_mi->interp_filter : SWITCHABLE_FILTERS;
79
80
34.1M
  if (left_type == above_type)
81
22.2M
    return left_type;
82
11.8M
  else if (left_type == SWITCHABLE_FILTERS)
83
5.23M
    return above_type;
84
6.60M
  else if (above_type == SWITCHABLE_FILTERS)
85
5.28M
    return left_type;
86
1.32M
  else
87
1.32M
    return SWITCHABLE_FILTERS;
88
34.1M
}
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
31.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
31.8M
  const MODE_INFO *const left_mi = xd->left_mi;
75
31.8M
  const int left_type = left_mi ? left_mi->interp_filter : SWITCHABLE_FILTERS;
76
31.8M
  const MODE_INFO *const above_mi = xd->above_mi;
77
31.8M
  const int above_type =
78
31.8M
      above_mi ? above_mi->interp_filter : SWITCHABLE_FILTERS;
79
80
31.8M
  if (left_type == above_type)
81
21.2M
    return left_type;
82
10.6M
  else if (left_type == SWITCHABLE_FILTERS)
83
4.91M
    return above_type;
84
5.69M
  else if (above_type == SWITCHABLE_FILTERS)
85
4.79M
    return left_type;
86
901k
  else
87
901k
    return SWITCHABLE_FILTERS;
88
31.8M
}
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
1.93M
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
1.93M
  const MODE_INFO *const left_mi = xd->left_mi;
75
1.93M
  const int left_type = left_mi ? left_mi->interp_filter : SWITCHABLE_FILTERS;
76
1.93M
  const MODE_INFO *const above_mi = xd->above_mi;
77
1.93M
  const int above_type =
78
1.93M
      above_mi ? above_mi->interp_filter : SWITCHABLE_FILTERS;
79
80
1.93M
  if (left_type == above_type)
81
838k
    return left_type;
82
1.09M
  else if (left_type == SWITCHABLE_FILTERS)
83
277k
    return above_type;
84
816k
  else if (above_type == SWITCHABLE_FILTERS)
85
430k
    return left_type;
86
385k
  else
87
385k
    return SWITCHABLE_FILTERS;
88
1.93M
}
vp9_bitstream.c:get_pred_context_switchable_interp
Line
Count
Source
69
119k
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
119k
  const MODE_INFO *const left_mi = xd->left_mi;
75
119k
  const int left_type = left_mi ? left_mi->interp_filter : SWITCHABLE_FILTERS;
76
119k
  const MODE_INFO *const above_mi = xd->above_mi;
77
119k
  const int above_type =
78
119k
      above_mi ? above_mi->interp_filter : SWITCHABLE_FILTERS;
79
80
119k
  if (left_type == above_type)
81
59.0k
    return left_type;
82
60.9k
  else if (left_type == SWITCHABLE_FILTERS)
83
18.7k
    return above_type;
84
42.2k
  else if (above_type == SWITCHABLE_FILTERS)
85
23.6k
    return left_type;
86
18.5k
  else
87
18.5k
    return SWITCHABLE_FILTERS;
88
119k
}
vp9_encodeframe.c:get_pred_context_switchable_interp
Line
Count
Source
69
161k
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
161k
  const MODE_INFO *const left_mi = xd->left_mi;
75
161k
  const int left_type = left_mi ? left_mi->interp_filter : SWITCHABLE_FILTERS;
76
161k
  const MODE_INFO *const above_mi = xd->above_mi;
77
161k
  const int above_type =
78
161k
      above_mi ? above_mi->interp_filter : SWITCHABLE_FILTERS;
79
80
161k
  if (left_type == above_type)
81
85.0k
    return left_type;
82
76.8k
  else if (left_type == SWITCHABLE_FILTERS)
83
25.4k
    return above_type;
84
51.3k
  else if (above_type == SWITCHABLE_FILTERS)
85
32.8k
    return left_type;
86
18.5k
  else
87
18.5k
    return SWITCHABLE_FILTERS;
88
161k
}
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
10.9M
static INLINE int get_intra_inter_context(const MACROBLOCKD *xd) {
98
10.9M
  const MODE_INFO *const above_mi = xd->above_mi;
99
10.9M
  const MODE_INFO *const left_mi = xd->left_mi;
100
10.9M
  const int has_above = !!above_mi;
101
10.9M
  const int has_left = !!left_mi;
102
103
10.9M
  if (has_above && has_left) {  // both edges available
104
7.30M
    const int above_intra = !is_inter_block(above_mi);
105
7.30M
    const int left_intra = !is_inter_block(left_mi);
106
7.30M
    return left_intra && above_intra ? 3 : left_intra || above_intra;
107
7.30M
  } else if (has_above || has_left) {  // one edge available
108
3.21M
    return 2 * !is_inter_block(has_above ? above_mi : left_mi);
109
3.21M
  }
110
442k
  return 0;
111
10.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.75M
static INLINE int get_intra_inter_context(const MACROBLOCKD *xd) {
98
4.75M
  const MODE_INFO *const above_mi = xd->above_mi;
99
4.75M
  const MODE_INFO *const left_mi = xd->left_mi;
100
4.75M
  const int has_above = !!above_mi;
101
4.75M
  const int has_left = !!left_mi;
102
103
4.75M
  if (has_above && has_left) {  // both edges available
104
3.31M
    const int above_intra = !is_inter_block(above_mi);
105
3.31M
    const int left_intra = !is_inter_block(left_mi);
106
3.31M
    return left_intra && above_intra ? 3 : left_intra || above_intra;
107
3.31M
  } else if (has_above || has_left) {  // one edge available
108
1.39M
    return 2 * !is_inter_block(has_above ? above_mi : left_mi);
109
1.39M
  }
110
47.1k
  return 0;
111
4.75M
}
vp9_bitstream.c:get_intra_inter_context
Line
Count
Source
97
914k
static INLINE int get_intra_inter_context(const MACROBLOCKD *xd) {
98
914k
  const MODE_INFO *const above_mi = xd->above_mi;
99
914k
  const MODE_INFO *const left_mi = xd->left_mi;
100
914k
  const int has_above = !!above_mi;
101
914k
  const int has_left = !!left_mi;
102
103
914k
  if (has_above && has_left) {  // both edges available
104
612k
    const int above_intra = !is_inter_block(above_mi);
105
612k
    const int left_intra = !is_inter_block(left_mi);
106
612k
    return left_intra && above_intra ? 3 : left_intra || above_intra;
107
612k
  } else if (has_above || has_left) {  // one edge available
108
252k
    return 2 * !is_inter_block(has_above ? above_mi : left_mi);
109
252k
  }
110
48.5k
  return 0;
111
914k
}
vp9_encodeframe.c:get_intra_inter_context
Line
Count
Source
97
914k
static INLINE int get_intra_inter_context(const MACROBLOCKD *xd) {
98
914k
  const MODE_INFO *const above_mi = xd->above_mi;
99
914k
  const MODE_INFO *const left_mi = xd->left_mi;
100
914k
  const int has_above = !!above_mi;
101
914k
  const int has_left = !!left_mi;
102
103
914k
  if (has_above && has_left) {  // both edges available
104
612k
    const int above_intra = !is_inter_block(above_mi);
105
612k
    const int left_intra = !is_inter_block(left_mi);
106
612k
    return left_intra && above_intra ? 3 : left_intra || above_intra;
107
612k
  } else if (has_above || has_left) {  // one edge available
108
252k
    return 2 * !is_inter_block(has_above ? above_mi : left_mi);
109
252k
  }
110
48.5k
  return 0;
111
914k
}
vp9_rdopt.c:get_intra_inter_context
Line
Count
Source
97
4.37M
static INLINE int get_intra_inter_context(const MACROBLOCKD *xd) {
98
4.37M
  const MODE_INFO *const above_mi = xd->above_mi;
99
4.37M
  const MODE_INFO *const left_mi = xd->left_mi;
100
4.37M
  const int has_above = !!above_mi;
101
4.37M
  const int has_left = !!left_mi;
102
103
4.37M
  if (has_above && has_left) {  // both edges available
104
2.75M
    const int above_intra = !is_inter_block(above_mi);
105
2.75M
    const int left_intra = !is_inter_block(left_mi);
106
2.75M
    return left_intra && above_intra ? 3 : left_intra || above_intra;
107
2.75M
  } else if (has_above || has_left) {  // one edge available
108
1.31M
    return 2 * !is_inter_block(has_above ? above_mi : left_mi);
109
1.31M
  }
110
297k
  return 0;
111
4.37M
}
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.28M
                                                const MACROBLOCKD *xd) {
115
5.28M
  return cm->fc->intra_inter_prob[get_intra_inter_context(xd)];
116
5.28M
}
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
914k
                                                const MACROBLOCKD *xd) {
115
914k
  return cm->fc->intra_inter_prob[get_intra_inter_context(xd)];
116
914k
}
Unexecuted instantiation: vp9_encodeframe.c:vp9_get_intra_inter_prob
vp9_rdopt.c:vp9_get_intra_inter_prob
Line
Count
Source
114
4.37M
                                                const MACROBLOCKD *xd) {
115
4.37M
  return cm->fc->intra_inter_prob[get_intra_inter_context(xd)];
116
4.37M
}
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
4.75M
                                                       const MACROBLOCKD *xd) {
138
4.75M
  return cm->fc->single_ref_prob[vp9_get_pred_context_single_ref_p1(xd)][0];
139
4.75M
}
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
382k
                                                       const MACROBLOCKD *xd) {
138
382k
  return cm->fc->single_ref_prob[vp9_get_pred_context_single_ref_p1(xd)][0];
139
382k
}
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.37M
                                                       const MACROBLOCKD *xd) {
138
4.37M
  return cm->fc->single_ref_prob[vp9_get_pred_context_single_ref_p1(xd)][0];
139
4.37M
}
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.50M
                                                       const MACROBLOCKD *xd) {
145
4.50M
  return cm->fc->single_ref_prob[vp9_get_pred_context_single_ref_p2(xd)][1];
146
4.50M
}
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
130k
                                                       const MACROBLOCKD *xd) {
145
130k
  return cm->fc->single_ref_prob[vp9_get_pred_context_single_ref_p2(xd)][1];
146
130k
}
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.37M
                                                       const MACROBLOCKD *xd) {
145
4.37M
  return cm->fc->single_ref_prob[vp9_get_pred_context_single_ref_p2(xd)][1];
146
4.37M
}
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
24.4M
static INLINE int get_tx_size_context(const MACROBLOCKD *xd) {
157
24.4M
  const int max_tx_size = max_txsize_lookup[xd->mi[0]->sb_type];
158
24.4M
  const MODE_INFO *const above_mi = xd->above_mi;
159
24.4M
  const MODE_INFO *const left_mi = xd->left_mi;
160
24.4M
  const int has_above = !!above_mi;
161
24.4M
  const int has_left = !!left_mi;
162
24.4M
  int above_ctx =
163
24.4M
      (has_above && !above_mi->skip) ? (int)above_mi->tx_size : max_tx_size;
164
24.4M
  int left_ctx =
165
24.4M
      (has_left && !left_mi->skip) ? (int)left_mi->tx_size : max_tx_size;
166
24.4M
  if (!has_left) left_ctx = above_ctx;
167
168
24.4M
  if (!has_above) above_ctx = left_ctx;
169
170
24.4M
  return (above_ctx + left_ctx) > max_tx_size;
171
24.4M
}
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.66M
static INLINE int get_tx_size_context(const MACROBLOCKD *xd) {
157
1.66M
  const int max_tx_size = max_txsize_lookup[xd->mi[0]->sb_type];
158
1.66M
  const MODE_INFO *const above_mi = xd->above_mi;
159
1.66M
  const MODE_INFO *const left_mi = xd->left_mi;
160
1.66M
  const int has_above = !!above_mi;
161
1.66M
  const int has_left = !!left_mi;
162
1.66M
  int above_ctx =
163
1.66M
      (has_above && !above_mi->skip) ? (int)above_mi->tx_size : max_tx_size;
164
1.66M
  int left_ctx =
165
1.66M
      (has_left && !left_mi->skip) ? (int)left_mi->tx_size : max_tx_size;
166
1.66M
  if (!has_left) left_ctx = above_ctx;
167
168
1.66M
  if (!has_above) above_ctx = left_ctx;
169
170
1.66M
  return (above_ctx + left_ctx) > max_tx_size;
171
1.66M
}
vp9_bitstream.c:get_tx_size_context
Line
Count
Source
156
335k
static INLINE int get_tx_size_context(const MACROBLOCKD *xd) {
157
335k
  const int max_tx_size = max_txsize_lookup[xd->mi[0]->sb_type];
158
335k
  const MODE_INFO *const above_mi = xd->above_mi;
159
335k
  const MODE_INFO *const left_mi = xd->left_mi;
160
335k
  const int has_above = !!above_mi;
161
335k
  const int has_left = !!left_mi;
162
335k
  int above_ctx =
163
335k
      (has_above && !above_mi->skip) ? (int)above_mi->tx_size : max_tx_size;
164
335k
  int left_ctx =
165
335k
      (has_left && !left_mi->skip) ? (int)left_mi->tx_size : max_tx_size;
166
335k
  if (!has_left) left_ctx = above_ctx;
167
168
335k
  if (!has_above) above_ctx = left_ctx;
169
170
335k
  return (above_ctx + left_ctx) > max_tx_size;
171
335k
}
vp9_encodeframe.c:get_tx_size_context
Line
Count
Source
156
398k
static INLINE int get_tx_size_context(const MACROBLOCKD *xd) {
157
398k
  const int max_tx_size = max_txsize_lookup[xd->mi[0]->sb_type];
158
398k
  const MODE_INFO *const above_mi = xd->above_mi;
159
398k
  const MODE_INFO *const left_mi = xd->left_mi;
160
398k
  const int has_above = !!above_mi;
161
398k
  const int has_left = !!left_mi;
162
398k
  int above_ctx =
163
398k
      (has_above && !above_mi->skip) ? (int)above_mi->tx_size : max_tx_size;
164
398k
  int left_ctx =
165
398k
      (has_left && !left_mi->skip) ? (int)left_mi->tx_size : max_tx_size;
166
398k
  if (!has_left) left_ctx = above_ctx;
167
168
398k
  if (!has_above) above_ctx = left_ctx;
169
170
398k
  return (above_ctx + left_ctx) > max_tx_size;
171
398k
}
vp9_rdopt.c:get_tx_size_context
Line
Count
Source
156
22.0M
static INLINE int get_tx_size_context(const MACROBLOCKD *xd) {
157
22.0M
  const int max_tx_size = max_txsize_lookup[xd->mi[0]->sb_type];
158
22.0M
  const MODE_INFO *const above_mi = xd->above_mi;
159
22.0M
  const MODE_INFO *const left_mi = xd->left_mi;
160
22.0M
  const int has_above = !!above_mi;
161
22.0M
  const int has_left = !!left_mi;
162
22.0M
  int above_ctx =
163
22.0M
      (has_above && !above_mi->skip) ? (int)above_mi->tx_size : max_tx_size;
164
22.0M
  int left_ctx =
165
22.0M
      (has_left && !left_mi->skip) ? (int)left_mi->tx_size : max_tx_size;
166
22.0M
  if (!has_left) left_ctx = above_ctx;
167
168
22.0M
  if (!has_above) above_ctx = left_ctx;
169
170
22.0M
  return (above_ctx + left_ctx) > max_tx_size;
171
22.0M
}
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.36M
                                           const struct tx_probs *tx_probs) {
175
2.36M
  switch (max_tx_size) {
176
1.34M
    case TX_8X8: return tx_probs->p8x8[ctx];
177
538k
    case TX_16X16: return tx_probs->p16x16[ctx];
178
481k
    case TX_32X32: return tx_probs->p32x32[ctx];
179
0
    default: assert(0 && "Invalid max_tx_size."); return NULL;
180
2.36M
  }
181
2.36M
}
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
363k
                                           const struct tx_probs *tx_probs) {
175
363k
  switch (max_tx_size) {
176
121k
    case TX_8X8: return tx_probs->p8x8[ctx];
177
121k
    case TX_16X16: return tx_probs->p16x16[ctx];
178
121k
    case TX_32X32: return tx_probs->p32x32[ctx];
179
0
    default: assert(0 && "Invalid max_tx_size."); return NULL;
180
363k
  }
181
363k
}
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.66M
                                           const struct tx_probs *tx_probs) {
175
1.66M
  switch (max_tx_size) {
176
961k
    case TX_8X8: return tx_probs->p8x8[ctx];
177
372k
    case TX_16X16: return tx_probs->p16x16[ctx];
178
330k
    case TX_32X32: return tx_probs->p32x32[ctx];
179
0
    default: assert(0 && "Invalid max_tx_size."); return NULL;
180
1.66M
  }
181
1.66M
}
vp9_bitstream.c:get_tx_probs
Line
Count
Source
174
335k
                                           const struct tx_probs *tx_probs) {
175
335k
  switch (max_tx_size) {
176
261k
    case TX_8X8: return tx_probs->p8x8[ctx];
177
44.6k
    case TX_16X16: return tx_probs->p16x16[ctx];
178
29.6k
    case TX_32X32: return tx_probs->p32x32[ctx];
179
0
    default: assert(0 && "Invalid max_tx_size."); return NULL;
180
335k
  }
181
335k
}
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.36M
                                          struct tx_counts *tx_counts) {
185
1.36M
  switch (max_tx_size) {
186
878k
    case TX_8X8: return tx_counts->p8x8[ctx];
187
262k
    case TX_16X16: return tx_counts->p16x16[ctx];
188
222k
    case TX_32X32: return tx_counts->p32x32[ctx];
189
0
    default: assert(0 && "Invalid max_tx_size."); return NULL;
190
1.36M
  }
191
1.36M
}
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
965k
                                          struct tx_counts *tx_counts) {
185
965k
  switch (max_tx_size) {
186
577k
    case TX_8X8: return tx_counts->p8x8[ctx];
187
211k
    case TX_16X16: return tx_counts->p16x16[ctx];
188
176k
    case TX_32X32: return tx_counts->p32x32[ctx];
189
0
    default: assert(0 && "Invalid max_tx_size."); return NULL;
190
965k
  }
191
965k
}
Unexecuted instantiation: vp9_bitstream.c:get_tx_counts
vp9_encodeframe.c:get_tx_counts
Line
Count
Source
184
398k
                                          struct tx_counts *tx_counts) {
185
398k
  switch (max_tx_size) {
186
300k
    case TX_8X8: return tx_counts->p8x8[ctx];
187
51.5k
    case TX_16X16: return tx_counts->p16x16[ctx];
188
46.1k
    case TX_32X32: return tx_counts->p32x32[ctx];
189
0
    default: assert(0 && "Invalid max_tx_size."); return NULL;
190
398k
  }
191
398k
}
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_