Coverage Report

Created: 2025-11-16 07:20

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
77.0k
static INLINE int vp9_get_pred_context_seg_id(const MACROBLOCKD *xd) {
42
77.0k
  const MODE_INFO *const above_mi = xd->above_mi;
43
77.0k
  const MODE_INFO *const left_mi = xd->left_mi;
44
77.0k
  const int above_sip = (above_mi != NULL) ? above_mi->seg_id_predicted : 0;
45
77.0k
  const int left_sip = (left_mi != NULL) ? left_mi->seg_id_predicted : 0;
46
47
77.0k
  return above_sip + left_sip;
48
77.0k
}
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
77.0k
static INLINE int vp9_get_pred_context_seg_id(const MACROBLOCKD *xd) {
42
77.0k
  const MODE_INFO *const above_mi = xd->above_mi;
43
77.0k
  const MODE_INFO *const left_mi = xd->left_mi;
44
77.0k
  const int above_sip = (above_mi != NULL) ? above_mi->seg_id_predicted : 0;
45
77.0k
  const int left_sip = (left_mi != NULL) ? left_mi->seg_id_predicted : 0;
46
47
77.0k
  return above_sip + left_sip;
48
77.0k
}
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
77.0k
                                                const MACROBLOCKD *xd) {
52
77.0k
  return seg->pred_probs[vp9_get_pred_context_seg_id(xd)];
53
77.0k
}
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
77.0k
                                                const MACROBLOCKD *xd) {
52
77.0k
  return seg->pred_probs[vp9_get_pred_context_seg_id(xd)];
53
77.0k
}
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
78.4M
static INLINE int vp9_get_skip_context(const MACROBLOCKD *xd) {
56
78.4M
  const MODE_INFO *const above_mi = xd->above_mi;
57
78.4M
  const MODE_INFO *const left_mi = xd->left_mi;
58
78.4M
  const int above_skip = (above_mi != NULL) ? above_mi->skip : 0;
59
78.4M
  const int left_skip = (left_mi != NULL) ? left_mi->skip : 0;
60
78.4M
  return above_skip + left_skip;
61
78.4M
}
Unexecuted instantiation: vp9_decodeframe.c:vp9_get_skip_context
Unexecuted instantiation: vp9_pred_common.c:vp9_get_skip_context
Unexecuted instantiation: vp9_rd.c:vp9_get_skip_context
Unexecuted instantiation: vp9_segmentation.c:vp9_get_skip_context
vp9_tokenize.c:vp9_get_skip_context
Line
Count
Source
55
8.50M
static INLINE int vp9_get_skip_context(const MACROBLOCKD *xd) {
56
8.50M
  const MODE_INFO *const above_mi = xd->above_mi;
57
8.50M
  const MODE_INFO *const left_mi = xd->left_mi;
58
8.50M
  const int above_skip = (above_mi != NULL) ? above_mi->skip : 0;
59
8.50M
  const int left_skip = (left_mi != NULL) ? left_mi->skip : 0;
60
8.50M
  return above_skip + left_skip;
61
8.50M
}
vp9_decodemv.c:vp9_get_skip_context
Line
Count
Source
55
5.61M
static INLINE int vp9_get_skip_context(const MACROBLOCKD *xd) {
56
5.61M
  const MODE_INFO *const above_mi = xd->above_mi;
57
5.61M
  const MODE_INFO *const left_mi = xd->left_mi;
58
5.61M
  const int above_skip = (above_mi != NULL) ? above_mi->skip : 0;
59
5.61M
  const int left_skip = (left_mi != NULL) ? left_mi->skip : 0;
60
5.61M
  return above_skip + left_skip;
61
5.61M
}
vp9_bitstream.c:vp9_get_skip_context
Line
Count
Source
55
2.04M
static INLINE int vp9_get_skip_context(const MACROBLOCKD *xd) {
56
2.04M
  const MODE_INFO *const above_mi = xd->above_mi;
57
2.04M
  const MODE_INFO *const left_mi = xd->left_mi;
58
2.04M
  const int above_skip = (above_mi != NULL) ? above_mi->skip : 0;
59
2.04M
  const int left_skip = (left_mi != NULL) ? left_mi->skip : 0;
60
2.04M
  return above_skip + left_skip;
61
2.04M
}
Unexecuted instantiation: vp9_encodeframe.c:vp9_get_skip_context
vp9_rdopt.c:vp9_get_skip_context
Line
Count
Source
55
62.2M
static INLINE int vp9_get_skip_context(const MACROBLOCKD *xd) {
56
62.2M
  const MODE_INFO *const above_mi = xd->above_mi;
57
62.2M
  const MODE_INFO *const left_mi = xd->left_mi;
58
62.2M
  const int above_skip = (above_mi != NULL) ? above_mi->skip : 0;
59
62.2M
  const int left_skip = (left_mi != NULL) ? left_mi->skip : 0;
60
62.2M
  return above_skip + left_skip;
61
62.2M
}
Unexecuted instantiation: vp9_pickmode.c:vp9_get_skip_context
62
63
static INLINE vpx_prob vp9_get_skip_prob(const VP9_COMMON *cm,
64
64.3M
                                         const MACROBLOCKD *xd) {
65
64.3M
  return cm->fc->skip_probs[vp9_get_skip_context(xd)];
66
64.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.04M
                                         const MACROBLOCKD *xd) {
65
2.04M
  return cm->fc->skip_probs[vp9_get_skip_context(xd)];
66
2.04M
}
Unexecuted instantiation: vp9_encodeframe.c:vp9_get_skip_prob
vp9_rdopt.c:vp9_get_skip_prob
Line
Count
Source
64
62.2M
                                         const MACROBLOCKD *xd) {
65
62.2M
  return cm->fc->skip_probs[vp9_get_skip_context(xd)];
66
62.2M
}
Unexecuted instantiation: vp9_pickmode.c:vp9_get_skip_prob
67
68
// Returns a context number for the given MB prediction signal
69
52.6M
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.6M
  const MODE_INFO *const left_mi = xd->left_mi;
75
52.6M
  const int left_type = left_mi ? left_mi->interp_filter : SWITCHABLE_FILTERS;
76
52.6M
  const MODE_INFO *const above_mi = xd->above_mi;
77
52.6M
  const int above_type =
78
52.6M
      above_mi ? above_mi->interp_filter : SWITCHABLE_FILTERS;
79
80
52.6M
  if (left_type == above_type)
81
35.7M
    return left_type;
82
16.8M
  else if (left_type == SWITCHABLE_FILTERS)
83
7.35M
    return above_type;
84
9.46M
  else if (above_type == SWITCHABLE_FILTERS)
85
7.46M
    return left_type;
86
2.00M
  else
87
2.00M
    return SWITCHABLE_FILTERS;
88
52.6M
}
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
50.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
50.0M
  const MODE_INFO *const left_mi = xd->left_mi;
75
50.0M
  const int left_type = left_mi ? left_mi->interp_filter : SWITCHABLE_FILTERS;
76
50.0M
  const MODE_INFO *const above_mi = xd->above_mi;
77
50.0M
  const int above_type =
78
50.0M
      above_mi ? above_mi->interp_filter : SWITCHABLE_FILTERS;
79
80
50.0M
  if (left_type == above_type)
81
34.5M
    return left_type;
82
15.4M
  else if (left_type == SWITCHABLE_FILTERS)
83
6.93M
    return above_type;
84
8.52M
  else if (above_type == SWITCHABLE_FILTERS)
85
7.04M
    return left_type;
86
1.47M
  else
87
1.47M
    return SWITCHABLE_FILTERS;
88
50.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.10M
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.10M
  const MODE_INFO *const left_mi = xd->left_mi;
75
2.10M
  const int left_type = left_mi ? left_mi->interp_filter : SWITCHABLE_FILTERS;
76
2.10M
  const MODE_INFO *const above_mi = xd->above_mi;
77
2.10M
  const int above_type =
78
2.10M
      above_mi ? above_mi->interp_filter : SWITCHABLE_FILTERS;
79
80
2.10M
  if (left_type == above_type)
81
969k
    return left_type;
82
1.13M
  else if (left_type == SWITCHABLE_FILTERS)
83
364k
    return above_type;
84
773k
  else if (above_type == SWITCHABLE_FILTERS)
85
314k
    return left_type;
86
459k
  else
87
459k
    return SWITCHABLE_FILTERS;
88
2.10M
}
vp9_bitstream.c:get_pred_context_switchable_interp
Line
Count
Source
69
210k
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
210k
  const MODE_INFO *const left_mi = xd->left_mi;
75
210k
  const int left_type = left_mi ? left_mi->interp_filter : SWITCHABLE_FILTERS;
76
210k
  const MODE_INFO *const above_mi = xd->above_mi;
77
210k
  const int above_type =
78
210k
      above_mi ? above_mi->interp_filter : SWITCHABLE_FILTERS;
79
80
210k
  if (left_type == above_type)
81
106k
    return left_type;
82
104k
  else if (left_type == SWITCHABLE_FILTERS)
83
27.4k
    return above_type;
84
76.9k
  else if (above_type == SWITCHABLE_FILTERS)
85
42.5k
    return left_type;
86
34.4k
  else
87
34.4k
    return SWITCHABLE_FILTERS;
88
210k
}
vp9_encodeframe.c:get_pred_context_switchable_interp
Line
Count
Source
69
263k
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
263k
  const MODE_INFO *const left_mi = xd->left_mi;
75
263k
  const int left_type = left_mi ? left_mi->interp_filter : SWITCHABLE_FILTERS;
76
263k
  const MODE_INFO *const above_mi = xd->above_mi;
77
263k
  const int above_type =
78
263k
      above_mi ? above_mi->interp_filter : SWITCHABLE_FILTERS;
79
80
263k
  if (left_type == above_type)
81
138k
    return left_type;
82
125k
  else if (left_type == SWITCHABLE_FILTERS)
83
34.7k
    return above_type;
84
90.6k
  else if (above_type == SWITCHABLE_FILTERS)
85
56.1k
    return left_type;
86
34.4k
  else
87
34.4k
    return SWITCHABLE_FILTERS;
88
263k
}
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.0M
static INLINE int get_intra_inter_context(const MACROBLOCKD *xd) {
98
14.0M
  const MODE_INFO *const above_mi = xd->above_mi;
99
14.0M
  const MODE_INFO *const left_mi = xd->left_mi;
100
14.0M
  const int has_above = !!above_mi;
101
14.0M
  const int has_left = !!left_mi;
102
103
14.0M
  if (has_above && has_left) {  // both edges available
104
9.87M
    const int above_intra = !is_inter_block(above_mi);
105
9.87M
    const int left_intra = !is_inter_block(left_mi);
106
9.87M
    return left_intra && above_intra ? 3 : left_intra || above_intra;
107
9.87M
  } else if (has_above || has_left) {  // one edge available
108
3.68M
    return 2 * !is_inter_block(has_above ? above_mi : left_mi);
109
3.68M
  }
110
449k
  return 0;
111
14.0M
}
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.58M
static INLINE int get_intra_inter_context(const MACROBLOCKD *xd) {
98
4.58M
  const MODE_INFO *const above_mi = xd->above_mi;
99
4.58M
  const MODE_INFO *const left_mi = xd->left_mi;
100
4.58M
  const int has_above = !!above_mi;
101
4.58M
  const int has_left = !!left_mi;
102
103
4.58M
  if (has_above && has_left) {  // both edges available
104
3.39M
    const int above_intra = !is_inter_block(above_mi);
105
3.39M
    const int left_intra = !is_inter_block(left_mi);
106
3.39M
    return left_intra && above_intra ? 3 : left_intra || above_intra;
107
3.39M
  } else if (has_above || has_left) {  // one edge available
108
1.13M
    return 2 * !is_inter_block(has_above ? above_mi : left_mi);
109
1.13M
  }
110
58.4k
  return 0;
111
4.58M
}
vp9_bitstream.c:get_intra_inter_context
Line
Count
Source
97
1.36M
static INLINE int get_intra_inter_context(const MACROBLOCKD *xd) {
98
1.36M
  const MODE_INFO *const above_mi = xd->above_mi;
99
1.36M
  const MODE_INFO *const left_mi = xd->left_mi;
100
1.36M
  const int has_above = !!above_mi;
101
1.36M
  const int has_left = !!left_mi;
102
103
1.36M
  if (has_above && has_left) {  // both edges available
104
974k
    const int above_intra = !is_inter_block(above_mi);
105
974k
    const int left_intra = !is_inter_block(left_mi);
106
974k
    return left_intra && above_intra ? 3 : left_intra || above_intra;
107
974k
  } else if (has_above || has_left) {  // one edge available
108
344k
    return 2 * !is_inter_block(has_above ? above_mi : left_mi);
109
344k
  }
110
42.4k
  return 0;
111
1.36M
}
vp9_encodeframe.c:get_intra_inter_context
Line
Count
Source
97
1.36M
static INLINE int get_intra_inter_context(const MACROBLOCKD *xd) {
98
1.36M
  const MODE_INFO *const above_mi = xd->above_mi;
99
1.36M
  const MODE_INFO *const left_mi = xd->left_mi;
100
1.36M
  const int has_above = !!above_mi;
101
1.36M
  const int has_left = !!left_mi;
102
103
1.36M
  if (has_above && has_left) {  // both edges available
104
974k
    const int above_intra = !is_inter_block(above_mi);
105
974k
    const int left_intra = !is_inter_block(left_mi);
106
974k
    return left_intra && above_intra ? 3 : left_intra || above_intra;
107
974k
  } else if (has_above || has_left) {  // one edge available
108
344k
    return 2 * !is_inter_block(has_above ? above_mi : left_mi);
109
344k
  }
110
42.4k
  return 0;
111
1.36M
}
vp9_rdopt.c:get_intra_inter_context
Line
Count
Source
97
6.70M
static INLINE int get_intra_inter_context(const MACROBLOCKD *xd) {
98
6.70M
  const MODE_INFO *const above_mi = xd->above_mi;
99
6.70M
  const MODE_INFO *const left_mi = xd->left_mi;
100
6.70M
  const int has_above = !!above_mi;
101
6.70M
  const int has_left = !!left_mi;
102
103
6.70M
  if (has_above && has_left) {  // both edges available
104
4.52M
    const int above_intra = !is_inter_block(above_mi);
105
4.52M
    const int left_intra = !is_inter_block(left_mi);
106
4.52M
    return left_intra && above_intra ? 3 : left_intra || above_intra;
107
4.52M
  } else if (has_above || has_left) {  // one edge available
108
1.86M
    return 2 * !is_inter_block(has_above ? above_mi : left_mi);
109
1.86M
  }
110
305k
  return 0;
111
6.70M
}
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.06M
                                                const MACROBLOCKD *xd) {
115
8.06M
  return cm->fc->intra_inter_prob[get_intra_inter_context(xd)];
116
8.06M
}
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.36M
                                                const MACROBLOCKD *xd) {
115
1.36M
  return cm->fc->intra_inter_prob[get_intra_inter_context(xd)];
116
1.36M
}
Unexecuted instantiation: vp9_encodeframe.c:vp9_get_intra_inter_prob
vp9_rdopt.c:vp9_get_intra_inter_prob
Line
Count
Source
114
6.70M
                                                const MACROBLOCKD *xd) {
115
6.70M
  return cm->fc->intra_inter_prob[get_intra_inter_context(xd)];
116
6.70M
}
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.21M
                                                       const MACROBLOCKD *xd) {
138
7.21M
  return cm->fc->single_ref_prob[vp9_get_pred_context_single_ref_p1(xd)][0];
139
7.21M
}
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
516k
                                                       const MACROBLOCKD *xd) {
138
516k
  return cm->fc->single_ref_prob[vp9_get_pred_context_single_ref_p1(xd)][0];
139
516k
}
Unexecuted instantiation: vp9_encodeframe.c:vp9_get_pred_prob_single_ref_p1
vp9_rdopt.c:vp9_get_pred_prob_single_ref_p1
Line
Count
Source
137
6.70M
                                                       const MACROBLOCKD *xd) {
138
6.70M
  return cm->fc->single_ref_prob[vp9_get_pred_context_single_ref_p1(xd)][0];
139
6.70M
}
Unexecuted instantiation: vp9_pickmode.c:vp9_get_pred_prob_single_ref_p1
140
141
int vp9_get_pred_context_single_ref_p2(const MACROBLOCKD *xd);
142
143
static INLINE vpx_prob vp9_get_pred_prob_single_ref_p2(const VP9_COMMON *cm,
144
6.88M
                                                       const MACROBLOCKD *xd) {
145
6.88M
  return cm->fc->single_ref_prob[vp9_get_pred_context_single_ref_p2(xd)][1];
146
6.88M
}
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
183k
                                                       const MACROBLOCKD *xd) {
145
183k
  return cm->fc->single_ref_prob[vp9_get_pred_context_single_ref_p2(xd)][1];
146
183k
}
Unexecuted instantiation: vp9_encodeframe.c:vp9_get_pred_prob_single_ref_p2
vp9_rdopt.c:vp9_get_pred_prob_single_ref_p2
Line
Count
Source
144
6.70M
                                                       const MACROBLOCKD *xd) {
145
6.70M
  return cm->fc->single_ref_prob[vp9_get_pred_context_single_ref_p2(xd)][1];
146
6.70M
}
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
32.5M
static INLINE int get_tx_size_context(const MACROBLOCKD *xd) {
157
32.5M
  const int max_tx_size = max_txsize_lookup[xd->mi[0]->sb_type];
158
32.5M
  const MODE_INFO *const above_mi = xd->above_mi;
159
32.5M
  const MODE_INFO *const left_mi = xd->left_mi;
160
32.5M
  const int has_above = !!above_mi;
161
32.5M
  const int has_left = !!left_mi;
162
32.5M
  int above_ctx =
163
32.5M
      (has_above && !above_mi->skip) ? (int)above_mi->tx_size : max_tx_size;
164
32.5M
  int left_ctx =
165
32.5M
      (has_left && !left_mi->skip) ? (int)left_mi->tx_size : max_tx_size;
166
32.5M
  if (!has_left) left_ctx = above_ctx;
167
168
32.5M
  if (!has_above) above_ctx = left_ctx;
169
170
32.5M
  return (above_ctx + left_ctx) > max_tx_size;
171
32.5M
}
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.04M
static INLINE int get_tx_size_context(const MACROBLOCKD *xd) {
157
1.04M
  const int max_tx_size = max_txsize_lookup[xd->mi[0]->sb_type];
158
1.04M
  const MODE_INFO *const above_mi = xd->above_mi;
159
1.04M
  const MODE_INFO *const left_mi = xd->left_mi;
160
1.04M
  const int has_above = !!above_mi;
161
1.04M
  const int has_left = !!left_mi;
162
1.04M
  int above_ctx =
163
1.04M
      (has_above && !above_mi->skip) ? (int)above_mi->tx_size : max_tx_size;
164
1.04M
  int left_ctx =
165
1.04M
      (has_left && !left_mi->skip) ? (int)left_mi->tx_size : max_tx_size;
166
1.04M
  if (!has_left) left_ctx = above_ctx;
167
168
1.04M
  if (!has_above) above_ctx = left_ctx;
169
170
1.04M
  return (above_ctx + left_ctx) > max_tx_size;
171
1.04M
}
vp9_bitstream.c:get_tx_size_context
Line
Count
Source
156
471k
static INLINE int get_tx_size_context(const MACROBLOCKD *xd) {
157
471k
  const int max_tx_size = max_txsize_lookup[xd->mi[0]->sb_type];
158
471k
  const MODE_INFO *const above_mi = xd->above_mi;
159
471k
  const MODE_INFO *const left_mi = xd->left_mi;
160
471k
  const int has_above = !!above_mi;
161
471k
  const int has_left = !!left_mi;
162
471k
  int above_ctx =
163
471k
      (has_above && !above_mi->skip) ? (int)above_mi->tx_size : max_tx_size;
164
471k
  int left_ctx =
165
471k
      (has_left && !left_mi->skip) ? (int)left_mi->tx_size : max_tx_size;
166
471k
  if (!has_left) left_ctx = above_ctx;
167
168
471k
  if (!has_above) above_ctx = left_ctx;
169
170
471k
  return (above_ctx + left_ctx) > max_tx_size;
171
471k
}
vp9_encodeframe.c:get_tx_size_context
Line
Count
Source
156
533k
static INLINE int get_tx_size_context(const MACROBLOCKD *xd) {
157
533k
  const int max_tx_size = max_txsize_lookup[xd->mi[0]->sb_type];
158
533k
  const MODE_INFO *const above_mi = xd->above_mi;
159
533k
  const MODE_INFO *const left_mi = xd->left_mi;
160
533k
  const int has_above = !!above_mi;
161
533k
  const int has_left = !!left_mi;
162
533k
  int above_ctx =
163
533k
      (has_above && !above_mi->skip) ? (int)above_mi->tx_size : max_tx_size;
164
533k
  int left_ctx =
165
533k
      (has_left && !left_mi->skip) ? (int)left_mi->tx_size : max_tx_size;
166
533k
  if (!has_left) left_ctx = above_ctx;
167
168
533k
  if (!has_above) above_ctx = left_ctx;
169
170
533k
  return (above_ctx + left_ctx) > max_tx_size;
171
533k
}
vp9_rdopt.c:get_tx_size_context
Line
Count
Source
156
30.4M
static INLINE int get_tx_size_context(const MACROBLOCKD *xd) {
157
30.4M
  const int max_tx_size = max_txsize_lookup[xd->mi[0]->sb_type];
158
30.4M
  const MODE_INFO *const above_mi = xd->above_mi;
159
30.4M
  const MODE_INFO *const left_mi = xd->left_mi;
160
30.4M
  const int has_above = !!above_mi;
161
30.4M
  const int has_left = !!left_mi;
162
30.4M
  int above_ctx =
163
30.4M
      (has_above && !above_mi->skip) ? (int)above_mi->tx_size : max_tx_size;
164
30.4M
  int left_ctx =
165
30.4M
      (has_left && !left_mi->skip) ? (int)left_mi->tx_size : max_tx_size;
166
30.4M
  if (!has_left) left_ctx = above_ctx;
167
168
30.4M
  if (!has_above) above_ctx = left_ctx;
169
170
30.4M
  return (above_ctx + left_ctx) > max_tx_size;
171
30.4M
}
Unexecuted instantiation: vp9_pickmode.c:get_tx_size_context
172
173
static INLINE const vpx_prob *get_tx_probs(TX_SIZE max_tx_size, int ctx,
174
1.84M
                                           const struct tx_probs *tx_probs) {
175
1.84M
  switch (max_tx_size) {
176
1.07M
    case TX_8X8: return tx_probs->p8x8[ctx];
177
393k
    case TX_16X16: return tx_probs->p16x16[ctx];
178
381k
    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
325k
                                           const struct tx_probs *tx_probs) {
175
325k
  switch (max_tx_size) {
176
108k
    case TX_8X8: return tx_probs->p8x8[ctx];
177
108k
    case TX_16X16: return tx_probs->p16x16[ctx];
178
108k
    case TX_32X32: return tx_probs->p32x32[ctx];
179
0
    default: assert(0 && "Invalid max_tx_size."); return NULL;
180
325k
  }
181
325k
}
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.04M
                                           const struct tx_probs *tx_probs) {
175
1.04M
  switch (max_tx_size) {
176
588k
    case TX_8X8: return tx_probs->p8x8[ctx];
177
227k
    case TX_16X16: return tx_probs->p16x16[ctx];
178
232k
    case TX_32X32: return tx_probs->p32x32[ctx];
179
0
    default: assert(0 && "Invalid max_tx_size."); return NULL;
180
1.04M
  }
181
1.04M
}
vp9_bitstream.c:get_tx_probs
Line
Count
Source
174
471k
                                           const struct tx_probs *tx_probs) {
175
471k
  switch (max_tx_size) {
176
374k
    case TX_8X8: return tx_probs->p8x8[ctx];
177
57.0k
    case TX_16X16: return tx_probs->p16x16[ctx];
178
40.2k
    case TX_32X32: return tx_probs->p32x32[ctx];
179
0
    default: assert(0 && "Invalid max_tx_size."); return NULL;
180
471k
  }
181
471k
}
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.28M
                                          struct tx_counts *tx_counts) {
185
1.28M
  switch (max_tx_size) {
186
864k
    case TX_8X8: return tx_counts->p8x8[ctx];
187
236k
    case TX_16X16: return tx_counts->p16x16[ctx];
188
185k
    case TX_32X32: return tx_counts->p32x32[ctx];
189
0
    default: assert(0 && "Invalid max_tx_size."); return NULL;
190
1.28M
  }
191
1.28M
}
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
753k
                                          struct tx_counts *tx_counts) {
185
753k
  switch (max_tx_size) {
186
450k
    case TX_8X8: return tx_counts->p8x8[ctx];
187
173k
    case TX_16X16: return tx_counts->p16x16[ctx];
188
130k
    case TX_32X32: return tx_counts->p32x32[ctx];
189
0
    default: assert(0 && "Invalid max_tx_size."); return NULL;
190
753k
  }
191
753k
}
Unexecuted instantiation: vp9_bitstream.c:get_tx_counts
vp9_encodeframe.c:get_tx_counts
Line
Count
Source
184
533k
                                          struct tx_counts *tx_counts) {
185
533k
  switch (max_tx_size) {
186
414k
    case TX_8X8: return tx_counts->p8x8[ctx];
187
63.6k
    case TX_16X16: return tx_counts->p16x16[ctx];
188
55.5k
    case TX_32X32: return tx_counts->p32x32[ctx];
189
0
    default: assert(0 && "Invalid max_tx_size."); return NULL;
190
533k
  }
191
533k
}
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_