Coverage Report

Created: 2025-08-03 06:57

/src/libvpx/vp9/common/vp9_onyxc_int.h
Line
Count
Source (jump to first uncovered line)
1
/*
2
 *  Copyright (c) 2010 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_ONYXC_INT_H_
12
#define VPX_VP9_COMMON_VP9_ONYXC_INT_H_
13
14
#include "./vpx_config.h"
15
#include "vpx/internal/vpx_codec_internal.h"
16
#include "./vp9_rtcd.h"
17
#include "vp9/common/vp9_alloccommon.h"
18
#include "vp9/common/vp9_loopfilter.h"
19
#include "vp9/common/vp9_entropymv.h"
20
#include "vp9/common/vp9_entropy.h"
21
#include "vp9/common/vp9_entropymode.h"
22
#include "vp9/common/vp9_frame_buffers.h"
23
#include "vp9/common/vp9_quant_common.h"
24
#include "vp9/common/vp9_tile_common.h"
25
26
#if CONFIG_VP9_POSTPROC
27
#include "vp9/common/vp9_postproc.h"
28
#endif
29
30
#ifdef __cplusplus
31
extern "C" {
32
#endif
33
34
2.89M
#define REFS_PER_FRAME 3
35
36
3.30M
#define REF_FRAMES_LOG2 3
37
3.75M
#define REF_FRAMES (1 << REF_FRAMES_LOG2)
38
39
// 1 scratch frame for the new frame, REFS_PER_FRAME for scaled references on
40
// the encoder.
41
1.40M
#define FRAME_BUFFERS (REF_FRAMES + 1 + REFS_PER_FRAME)
42
43
653k
#define FRAME_CONTEXTS_LOG2 2
44
457k
#define FRAME_CONTEXTS (1 << FRAME_CONTEXTS_LOG2)
45
46
174k
#define NUM_PING_PONG_BUFFERS 2
47
48
extern const struct {
49
  PARTITION_CONTEXT above;
50
  PARTITION_CONTEXT left;
51
} partition_context_lookup[BLOCK_SIZES];
52
53
typedef enum {
54
  SINGLE_REFERENCE = 0,
55
  COMPOUND_REFERENCE = 1,
56
  REFERENCE_MODE_SELECT = 2,
57
  REFERENCE_MODES = 3,
58
} REFERENCE_MODE;
59
60
typedef struct {
61
  int_mv mv[2];
62
  MV_REFERENCE_FRAME ref_frame[2];
63
} MV_REF;
64
65
typedef struct {
66
  int ref_count;
67
  MV_REF *mvs;
68
  int mi_rows;
69
  int mi_cols;
70
  uint8_t released;
71
72
  // Note that frame_index/frame_coding_index are only set by set_frame_index()
73
  // on the encoder side.
74
75
  // TODO(angiebird): Set frame_index/frame_coding_index on the decoder side
76
  // properly.
77
  int frame_index;         // Display order in the video, it's equivalent to the
78
                           // show_idx defined in EncodeFrameInfo.
79
  int frame_coding_index;  // The coding order (starting from zero) of this
80
                           // frame.
81
  vpx_codec_frame_buffer_t raw_frame_buffer;
82
  YV12_BUFFER_CONFIG buf;
83
} RefCntBuffer;
84
85
typedef struct BufferPool {
86
  // Private data associated with the frame buffer callbacks.
87
  void *cb_priv;
88
89
  vpx_get_frame_buffer_cb_fn_t get_fb_cb;
90
  vpx_release_frame_buffer_cb_fn_t release_fb_cb;
91
92
  RefCntBuffer frame_bufs[FRAME_BUFFERS];
93
94
  // Frame buffers allocated internally by the codec.
95
  InternalFrameBufferList int_frame_buffers;
96
} BufferPool;
97
98
typedef struct VP9Common {
99
  struct vpx_internal_error_info error;
100
  vpx_color_space_t color_space;
101
  vpx_color_range_t color_range;
102
  int width;
103
  int height;
104
  int render_width;
105
  int render_height;
106
  int last_width;
107
  int last_height;
108
109
  // TODO(jkoleszar): this implies chroma ss right now, but could vary per
110
  // plane. Revisit as part of the future change to YV12_BUFFER_CONFIG to
111
  // support additional planes.
112
  int subsampling_x;
113
  int subsampling_y;
114
115
#if CONFIG_VP9_HIGHBITDEPTH
116
  int use_highbitdepth;  // Marks if we need to use 16bit frame buffers.
117
#endif
118
119
  YV12_BUFFER_CONFIG *frame_to_show;
120
  RefCntBuffer *prev_frame;
121
122
  // TODO(hkuang): Combine this with cur_buf in macroblockd.
123
  RefCntBuffer *cur_frame;
124
125
  int ref_frame_map[REF_FRAMES]; /* maps fb_idx to reference slot */
126
127
  // Prepare ref_frame_map for the next frame.
128
  // Only used in frame parallel decode.
129
  int next_ref_frame_map[REF_FRAMES];
130
131
  // TODO(jkoleszar): could expand active_ref_idx to 4, with 0 as intra, and
132
  // roll new_fb_idx into it.
133
134
  // Each frame can reference REFS_PER_FRAME buffers
135
  RefBuffer frame_refs[REFS_PER_FRAME];
136
137
  int new_fb_idx;
138
139
  int cur_show_frame_fb_idx;
140
141
#if CONFIG_VP9_POSTPROC
142
  YV12_BUFFER_CONFIG post_proc_buffer;
143
  YV12_BUFFER_CONFIG post_proc_buffer_int;
144
#endif
145
146
  FRAME_TYPE last_frame_type; /* last frame's frame type for motion search.*/
147
  FRAME_TYPE frame_type;
148
149
  int show_frame;
150
  int last_show_frame;
151
  int show_existing_frame;
152
153
  // Flag signaling that the frame is encoded using only INTRA modes.
154
  uint8_t intra_only;
155
  uint8_t last_intra_only;
156
157
  int allow_high_precision_mv;
158
159
  // Flag signaling that the frame context should be reset to default values.
160
  // 0 or 1 implies don't reset, 2 reset just the context specified in the
161
  // frame header, 3 reset all contexts.
162
  int reset_frame_context;
163
164
  // MBs, mb_rows/cols is in 16-pixel units; mi_rows/cols is in
165
  // MODE_INFO (8-pixel) units.
166
  int MBs;
167
  int mb_rows, mi_rows;
168
  int mb_cols, mi_cols;
169
  int mi_stride;
170
171
  /* profile settings */
172
  TX_MODE tx_mode;
173
174
  int base_qindex;
175
  int y_dc_delta_q;
176
  int uv_dc_delta_q;
177
  int uv_ac_delta_q;
178
  int16_t y_dequant[MAX_SEGMENTS][2];
179
  int16_t uv_dequant[MAX_SEGMENTS][2];
180
181
  /* We allocate a MODE_INFO struct for each macroblock, together with
182
     an extra row on top and column on the left to simplify prediction. */
183
  int mi_alloc_size;
184
  MODE_INFO *mip; /* Base of allocated array */
185
  MODE_INFO *mi;  /* Corresponds to upper left visible macroblock */
186
187
  // TODO(agrange): Move prev_mi into encoder structure.
188
  // prev_mip and prev_mi will only be allocated in VP9 encoder.
189
  MODE_INFO *prev_mip; /* MODE_INFO array 'mip' from last decoded frame */
190
  MODE_INFO *prev_mi;  /* 'mi' from last frame (points into prev_mip) */
191
192
  // Separate mi functions between encoder and decoder.
193
  int (*alloc_mi)(struct VP9Common *cm, int mi_size);
194
  void (*free_mi)(struct VP9Common *cm);
195
  void (*setup_mi)(struct VP9Common *cm);
196
197
  // Grid of pointers to 8x8 MODE_INFO structs.  Any 8x8 not in the visible
198
  // area will be NULL.
199
  MODE_INFO **mi_grid_base;
200
  MODE_INFO **mi_grid_visible;
201
  MODE_INFO **prev_mi_grid_base;
202
  MODE_INFO **prev_mi_grid_visible;
203
204
  // Whether to use previous frame's motion vectors for prediction.
205
  int use_prev_frame_mvs;
206
207
  // Persistent mb segment id map used in prediction.
208
  int seg_map_idx;
209
  int prev_seg_map_idx;
210
211
  uint8_t *seg_map_array[NUM_PING_PONG_BUFFERS];
212
  uint8_t *last_frame_seg_map;
213
  uint8_t *current_frame_seg_map;
214
  int seg_map_alloc_size;
215
216
  INTERP_FILTER interp_filter;
217
218
  loop_filter_info_n lf_info;
219
220
  int refresh_frame_context; /* Two state 0 = NO, 1 = YES */
221
222
  int ref_frame_sign_bias[MAX_REF_FRAMES]; /* Two state 0, 1 */
223
224
  struct loopfilter lf;
225
  struct segmentation seg;
226
227
  // Context probabilities for reference frame prediction
228
  MV_REFERENCE_FRAME comp_fixed_ref;
229
  MV_REFERENCE_FRAME comp_var_ref[2];
230
  REFERENCE_MODE reference_mode;
231
232
  FRAME_CONTEXT *fc;              /* this frame entropy */
233
  FRAME_CONTEXT *frame_contexts;  // FRAME_CONTEXTS
234
  unsigned int frame_context_idx; /* Context to use/update */
235
  FRAME_COUNTS counts;
236
237
  // TODO(angiebird): current_video_frame/current_frame_coding_index into a
238
  // structure
239
  unsigned int current_video_frame;
240
  // Each show or no show frame is assigned with a coding index based on its
241
  // coding order (starting from zero).
242
243
  // Current frame's coding index.
244
  int current_frame_coding_index;
245
  BITSTREAM_PROFILE profile;
246
247
  // VPX_BITS_8 in profile 0 or 1, VPX_BITS_10 or VPX_BITS_12 in profile 2 or 3.
248
  vpx_bit_depth_t bit_depth;
249
  vpx_bit_depth_t dequant_bit_depth;  // bit_depth of current dequantizer
250
251
#if CONFIG_VP9_POSTPROC
252
  struct postproc_state postproc_state;
253
#endif
254
255
  int error_resilient_mode;
256
  int frame_parallel_decoding_mode;
257
258
  int log2_tile_cols, log2_tile_rows;
259
  int byte_alignment;
260
  int skip_loop_filter;
261
262
  // External BufferPool passed from outside.
263
  BufferPool *buffer_pool;
264
265
  PARTITION_CONTEXT *above_seg_context;
266
  ENTROPY_CONTEXT *above_context;
267
  int above_context_alloc_cols;
268
269
  int lf_row;
270
} VP9_COMMON;
271
272
17.0k
static INLINE void init_frame_indexes(VP9_COMMON *cm) {
273
17.0k
  cm->current_video_frame = 0;
274
17.0k
  cm->current_frame_coding_index = 0;
275
17.0k
}
Unexecuted instantiation: vp9_dx_iface.c:init_frame_indexes
Unexecuted instantiation: vp9_decodeframe.c:init_frame_indexes
Unexecuted instantiation: vp9_detokenize.c:init_frame_indexes
vp9_decoder.c:init_frame_indexes
Line
Count
Source
272
17.0k
static INLINE void init_frame_indexes(VP9_COMMON *cm) {
273
17.0k
  cm->current_video_frame = 0;
274
17.0k
  cm->current_frame_coding_index = 0;
275
17.0k
}
Unexecuted instantiation: yv12config.c:init_frame_indexes
Unexecuted instantiation: vp9_alloccommon.c:init_frame_indexes
Unexecuted instantiation: vp9_entropy.c:init_frame_indexes
Unexecuted instantiation: vp9_entropymode.c:init_frame_indexes
Unexecuted instantiation: vp9_entropymv.c:init_frame_indexes
Unexecuted instantiation: vp9_pred_common.c:init_frame_indexes
Unexecuted instantiation: vp9_tile_common.c:init_frame_indexes
Unexecuted instantiation: vp9_loopfilter.c:init_frame_indexes
Unexecuted instantiation: vp9_thread_common.c:init_frame_indexes
Unexecuted instantiation: vp9_reconinter.c:init_frame_indexes
Unexecuted instantiation: vp9_reconintra.c:init_frame_indexes
Unexecuted instantiation: vp9_decodemv.c:init_frame_indexes
276
277
0
static INLINE void update_frame_indexes(VP9_COMMON *cm, int show_frame) {
278
0
  if (show_frame) {
279
0
    // Don't increment frame counters if this was an altref buffer
280
0
    // update not a real frame
281
0
    ++cm->current_video_frame;
282
0
  }
283
0
  ++cm->current_frame_coding_index;
284
0
}
Unexecuted instantiation: vp9_dx_iface.c:update_frame_indexes
Unexecuted instantiation: vp9_decodeframe.c:update_frame_indexes
Unexecuted instantiation: vp9_detokenize.c:update_frame_indexes
Unexecuted instantiation: vp9_decoder.c:update_frame_indexes
Unexecuted instantiation: yv12config.c:update_frame_indexes
Unexecuted instantiation: vp9_alloccommon.c:update_frame_indexes
Unexecuted instantiation: vp9_entropy.c:update_frame_indexes
Unexecuted instantiation: vp9_entropymode.c:update_frame_indexes
Unexecuted instantiation: vp9_entropymv.c:update_frame_indexes
Unexecuted instantiation: vp9_pred_common.c:update_frame_indexes
Unexecuted instantiation: vp9_tile_common.c:update_frame_indexes
Unexecuted instantiation: vp9_loopfilter.c:update_frame_indexes
Unexecuted instantiation: vp9_thread_common.c:update_frame_indexes
Unexecuted instantiation: vp9_reconinter.c:update_frame_indexes
Unexecuted instantiation: vp9_reconintra.c:update_frame_indexes
Unexecuted instantiation: vp9_decodemv.c:update_frame_indexes
285
286
typedef struct {
287
  int frame_width;
288
  int frame_height;
289
  int render_frame_width;
290
  int render_frame_height;
291
  int mi_rows;
292
  int mi_cols;
293
  int mb_rows;
294
  int mb_cols;
295
  int num_mbs;
296
  vpx_bit_depth_t bit_depth;
297
} FRAME_INFO;
298
299
static INLINE void init_frame_info(FRAME_INFO *frame_info,
300
0
                                   const VP9_COMMON *cm) {
301
0
  frame_info->frame_width = cm->width;
302
0
  frame_info->frame_height = cm->height;
303
0
  frame_info->render_frame_width = cm->render_width;
304
0
  frame_info->render_frame_height = cm->render_height;
305
0
  frame_info->mi_cols = cm->mi_cols;
306
0
  frame_info->mi_rows = cm->mi_rows;
307
0
  frame_info->mb_cols = cm->mb_cols;
308
0
  frame_info->mb_rows = cm->mb_rows;
309
0
  frame_info->num_mbs = cm->MBs;
310
0
  frame_info->bit_depth = cm->bit_depth;
311
0
  // TODO(angiebird): Figure out how to get subsampling_x/y here
312
0
}
Unexecuted instantiation: vp9_dx_iface.c:init_frame_info
Unexecuted instantiation: vp9_decodeframe.c:init_frame_info
Unexecuted instantiation: vp9_detokenize.c:init_frame_info
Unexecuted instantiation: vp9_decoder.c:init_frame_info
Unexecuted instantiation: yv12config.c:init_frame_info
Unexecuted instantiation: vp9_alloccommon.c:init_frame_info
Unexecuted instantiation: vp9_entropy.c:init_frame_info
Unexecuted instantiation: vp9_entropymode.c:init_frame_info
Unexecuted instantiation: vp9_entropymv.c:init_frame_info
Unexecuted instantiation: vp9_pred_common.c:init_frame_info
Unexecuted instantiation: vp9_tile_common.c:init_frame_info
Unexecuted instantiation: vp9_loopfilter.c:init_frame_info
Unexecuted instantiation: vp9_thread_common.c:init_frame_info
Unexecuted instantiation: vp9_reconinter.c:init_frame_info
Unexecuted instantiation: vp9_reconintra.c:init_frame_info
Unexecuted instantiation: vp9_decodemv.c:init_frame_info
313
314
0
static INLINE YV12_BUFFER_CONFIG *get_buf_frame(VP9_COMMON *cm, int index) {
315
0
  if (index < 0 || index >= FRAME_BUFFERS) return NULL;
316
0
  if (cm->error.error_code != VPX_CODEC_OK) return NULL;
317
0
  return &cm->buffer_pool->frame_bufs[index].buf;
318
0
}
Unexecuted instantiation: vp9_dx_iface.c:get_buf_frame
Unexecuted instantiation: vp9_decodeframe.c:get_buf_frame
Unexecuted instantiation: vp9_detokenize.c:get_buf_frame
Unexecuted instantiation: vp9_decoder.c:get_buf_frame
Unexecuted instantiation: yv12config.c:get_buf_frame
Unexecuted instantiation: vp9_alloccommon.c:get_buf_frame
Unexecuted instantiation: vp9_entropy.c:get_buf_frame
Unexecuted instantiation: vp9_entropymode.c:get_buf_frame
Unexecuted instantiation: vp9_entropymv.c:get_buf_frame
Unexecuted instantiation: vp9_pred_common.c:get_buf_frame
Unexecuted instantiation: vp9_tile_common.c:get_buf_frame
Unexecuted instantiation: vp9_loopfilter.c:get_buf_frame
Unexecuted instantiation: vp9_thread_common.c:get_buf_frame
Unexecuted instantiation: vp9_reconinter.c:get_buf_frame
Unexecuted instantiation: vp9_reconintra.c:get_buf_frame
Unexecuted instantiation: vp9_decodemv.c:get_buf_frame
319
320
0
static INLINE YV12_BUFFER_CONFIG *get_ref_frame(VP9_COMMON *cm, int index) {
321
0
  if (index < 0 || index >= REF_FRAMES) return NULL;
322
0
  if (cm->ref_frame_map[index] < 0) return NULL;
323
0
  assert(cm->ref_frame_map[index] < FRAME_BUFFERS);
324
0
  return &cm->buffer_pool->frame_bufs[cm->ref_frame_map[index]].buf;
325
0
}
Unexecuted instantiation: vp9_dx_iface.c:get_ref_frame
Unexecuted instantiation: vp9_decodeframe.c:get_ref_frame
Unexecuted instantiation: vp9_detokenize.c:get_ref_frame
Unexecuted instantiation: vp9_decoder.c:get_ref_frame
Unexecuted instantiation: yv12config.c:get_ref_frame
Unexecuted instantiation: vp9_alloccommon.c:get_ref_frame
Unexecuted instantiation: vp9_entropy.c:get_ref_frame
Unexecuted instantiation: vp9_entropymode.c:get_ref_frame
Unexecuted instantiation: vp9_entropymv.c:get_ref_frame
Unexecuted instantiation: vp9_pred_common.c:get_ref_frame
Unexecuted instantiation: vp9_tile_common.c:get_ref_frame
Unexecuted instantiation: vp9_loopfilter.c:get_ref_frame
Unexecuted instantiation: vp9_thread_common.c:get_ref_frame
Unexecuted instantiation: vp9_reconinter.c:get_ref_frame
Unexecuted instantiation: vp9_reconintra.c:get_ref_frame
Unexecuted instantiation: vp9_decodemv.c:get_ref_frame
326
327
17.7M
static INLINE YV12_BUFFER_CONFIG *get_frame_new_buffer(VP9_COMMON *cm) {
328
17.7M
  return &cm->buffer_pool->frame_bufs[cm->new_fb_idx].buf;
329
17.7M
}
Unexecuted instantiation: vp9_dx_iface.c:get_frame_new_buffer
vp9_decodeframe.c:get_frame_new_buffer
Line
Count
Source
327
17.6M
static INLINE YV12_BUFFER_CONFIG *get_frame_new_buffer(VP9_COMMON *cm) {
328
17.6M
  return &cm->buffer_pool->frame_bufs[cm->new_fb_idx].buf;
329
17.6M
}
Unexecuted instantiation: vp9_detokenize.c:get_frame_new_buffer
vp9_decoder.c:get_frame_new_buffer
Line
Count
Source
327
86.5k
static INLINE YV12_BUFFER_CONFIG *get_frame_new_buffer(VP9_COMMON *cm) {
328
86.5k
  return &cm->buffer_pool->frame_bufs[cm->new_fb_idx].buf;
329
86.5k
}
Unexecuted instantiation: yv12config.c:get_frame_new_buffer
Unexecuted instantiation: vp9_alloccommon.c:get_frame_new_buffer
Unexecuted instantiation: vp9_entropy.c:get_frame_new_buffer
Unexecuted instantiation: vp9_entropymode.c:get_frame_new_buffer
Unexecuted instantiation: vp9_entropymv.c:get_frame_new_buffer
Unexecuted instantiation: vp9_pred_common.c:get_frame_new_buffer
Unexecuted instantiation: vp9_tile_common.c:get_frame_new_buffer
Unexecuted instantiation: vp9_loopfilter.c:get_frame_new_buffer
Unexecuted instantiation: vp9_thread_common.c:get_frame_new_buffer
Unexecuted instantiation: vp9_reconinter.c:get_frame_new_buffer
Unexecuted instantiation: vp9_reconintra.c:get_frame_new_buffer
Unexecuted instantiation: vp9_decodemv.c:get_frame_new_buffer
330
331
203k
static INLINE int get_free_fb(VP9_COMMON *cm) {
332
203k
  RefCntBuffer *const frame_bufs = cm->buffer_pool->frame_bufs;
333
203k
  int i;
334
335
706k
  for (i = 0; i < FRAME_BUFFERS; ++i)
336
705k
    if (frame_bufs[i].ref_count == 0) break;
337
338
203k
  if (i != FRAME_BUFFERS) {
339
203k
    frame_bufs[i].ref_count = 1;
340
203k
  } else {
341
    // Reset i to be INVALID_IDX to indicate no free buffer found.
342
291
    i = INVALID_IDX;
343
291
  }
344
345
203k
  return i;
346
203k
}
Unexecuted instantiation: vp9_dx_iface.c:get_free_fb
Unexecuted instantiation: vp9_decodeframe.c:get_free_fb
Unexecuted instantiation: vp9_detokenize.c:get_free_fb
vp9_decoder.c:get_free_fb
Line
Count
Source
331
203k
static INLINE int get_free_fb(VP9_COMMON *cm) {
332
203k
  RefCntBuffer *const frame_bufs = cm->buffer_pool->frame_bufs;
333
203k
  int i;
334
335
706k
  for (i = 0; i < FRAME_BUFFERS; ++i)
336
705k
    if (frame_bufs[i].ref_count == 0) break;
337
338
203k
  if (i != FRAME_BUFFERS) {
339
203k
    frame_bufs[i].ref_count = 1;
340
203k
  } else {
341
    // Reset i to be INVALID_IDX to indicate no free buffer found.
342
291
    i = INVALID_IDX;
343
291
  }
344
345
203k
  return i;
346
203k
}
Unexecuted instantiation: yv12config.c:get_free_fb
Unexecuted instantiation: vp9_alloccommon.c:get_free_fb
Unexecuted instantiation: vp9_entropy.c:get_free_fb
Unexecuted instantiation: vp9_entropymode.c:get_free_fb
Unexecuted instantiation: vp9_entropymv.c:get_free_fb
Unexecuted instantiation: vp9_pred_common.c:get_free_fb
Unexecuted instantiation: vp9_tile_common.c:get_free_fb
Unexecuted instantiation: vp9_loopfilter.c:get_free_fb
Unexecuted instantiation: vp9_thread_common.c:get_free_fb
Unexecuted instantiation: vp9_reconinter.c:get_free_fb
Unexecuted instantiation: vp9_reconintra.c:get_free_fb
Unexecuted instantiation: vp9_decodemv.c:get_free_fb
347
348
7.08k
static INLINE void ref_cnt_fb(RefCntBuffer *bufs, int *idx, int new_idx) {
349
7.08k
  const int ref_index = *idx;
350
351
7.08k
  if (ref_index >= 0 && bufs[ref_index].ref_count > 0)
352
7.08k
    bufs[ref_index].ref_count--;
353
354
7.08k
  *idx = new_idx;
355
356
7.08k
  bufs[new_idx].ref_count++;
357
7.08k
}
Unexecuted instantiation: vp9_dx_iface.c:ref_cnt_fb
vp9_decodeframe.c:ref_cnt_fb
Line
Count
Source
348
7.08k
static INLINE void ref_cnt_fb(RefCntBuffer *bufs, int *idx, int new_idx) {
349
7.08k
  const int ref_index = *idx;
350
351
7.08k
  if (ref_index >= 0 && bufs[ref_index].ref_count > 0)
352
7.08k
    bufs[ref_index].ref_count--;
353
354
7.08k
  *idx = new_idx;
355
356
7.08k
  bufs[new_idx].ref_count++;
357
7.08k
}
Unexecuted instantiation: vp9_detokenize.c:ref_cnt_fb
Unexecuted instantiation: vp9_decoder.c:ref_cnt_fb
Unexecuted instantiation: yv12config.c:ref_cnt_fb
Unexecuted instantiation: vp9_alloccommon.c:ref_cnt_fb
Unexecuted instantiation: vp9_entropy.c:ref_cnt_fb
Unexecuted instantiation: vp9_entropymode.c:ref_cnt_fb
Unexecuted instantiation: vp9_entropymv.c:ref_cnt_fb
Unexecuted instantiation: vp9_pred_common.c:ref_cnt_fb
Unexecuted instantiation: vp9_tile_common.c:ref_cnt_fb
Unexecuted instantiation: vp9_loopfilter.c:ref_cnt_fb
Unexecuted instantiation: vp9_thread_common.c:ref_cnt_fb
Unexecuted instantiation: vp9_reconinter.c:ref_cnt_fb
Unexecuted instantiation: vp9_reconintra.c:ref_cnt_fb
Unexecuted instantiation: vp9_decodemv.c:ref_cnt_fb
358
359
2.13M
static INLINE int mi_cols_aligned_to_sb(int n_mis) {
360
2.13M
  return ALIGN_POWER_OF_TWO(n_mis, MI_BLOCK_SIZE_LOG2);
361
2.13M
}
Unexecuted instantiation: vp9_dx_iface.c:mi_cols_aligned_to_sb
vp9_decodeframe.c:mi_cols_aligned_to_sb
Line
Count
Source
359
526k
static INLINE int mi_cols_aligned_to_sb(int n_mis) {
360
526k
  return ALIGN_POWER_OF_TWO(n_mis, MI_BLOCK_SIZE_LOG2);
361
526k
}
Unexecuted instantiation: vp9_detokenize.c:mi_cols_aligned_to_sb
Unexecuted instantiation: vp9_decoder.c:mi_cols_aligned_to_sb
Unexecuted instantiation: yv12config.c:mi_cols_aligned_to_sb
vp9_alloccommon.c:mi_cols_aligned_to_sb
Line
Count
Source
359
38.5k
static INLINE int mi_cols_aligned_to_sb(int n_mis) {
360
38.5k
  return ALIGN_POWER_OF_TWO(n_mis, MI_BLOCK_SIZE_LOG2);
361
38.5k
}
Unexecuted instantiation: vp9_entropy.c:mi_cols_aligned_to_sb
Unexecuted instantiation: vp9_entropymode.c:mi_cols_aligned_to_sb
Unexecuted instantiation: vp9_entropymv.c:mi_cols_aligned_to_sb
Unexecuted instantiation: vp9_pred_common.c:mi_cols_aligned_to_sb
vp9_tile_common.c:mi_cols_aligned_to_sb
Line
Count
Source
359
1.52M
static INLINE int mi_cols_aligned_to_sb(int n_mis) {
360
1.52M
  return ALIGN_POWER_OF_TWO(n_mis, MI_BLOCK_SIZE_LOG2);
361
1.52M
}
Unexecuted instantiation: vp9_loopfilter.c:mi_cols_aligned_to_sb
vp9_thread_common.c:mi_cols_aligned_to_sb
Line
Count
Source
359
51.7k
static INLINE int mi_cols_aligned_to_sb(int n_mis) {
360
51.7k
  return ALIGN_POWER_OF_TWO(n_mis, MI_BLOCK_SIZE_LOG2);
361
51.7k
}
Unexecuted instantiation: vp9_reconinter.c:mi_cols_aligned_to_sb
Unexecuted instantiation: vp9_reconintra.c:mi_cols_aligned_to_sb
Unexecuted instantiation: vp9_decodemv.c:mi_cols_aligned_to_sb
362
363
16.9M
static INLINE int frame_is_intra_only(const VP9_COMMON *const cm) {
364
16.9M
  return cm->frame_type == KEY_FRAME || cm->intra_only;
365
16.9M
}
Unexecuted instantiation: vp9_dx_iface.c:frame_is_intra_only
vp9_decodeframe.c:frame_is_intra_only
Line
Count
Source
363
417k
static INLINE int frame_is_intra_only(const VP9_COMMON *const cm) {
364
417k
  return cm->frame_type == KEY_FRAME || cm->intra_only;
365
417k
}
Unexecuted instantiation: vp9_detokenize.c:frame_is_intra_only
Unexecuted instantiation: vp9_decoder.c:frame_is_intra_only
Unexecuted instantiation: yv12config.c:frame_is_intra_only
Unexecuted instantiation: vp9_alloccommon.c:frame_is_intra_only
vp9_entropy.c:frame_is_intra_only
Line
Count
Source
363
48.8k
static INLINE int frame_is_intra_only(const VP9_COMMON *const cm) {
364
48.8k
  return cm->frame_type == KEY_FRAME || cm->intra_only;
365
48.8k
}
vp9_entropymode.c:frame_is_intra_only
Line
Count
Source
363
91.6k
static INLINE int frame_is_intra_only(const VP9_COMMON *const cm) {
364
91.6k
  return cm->frame_type == KEY_FRAME || cm->intra_only;
365
91.6k
}
Unexecuted instantiation: vp9_entropymv.c:frame_is_intra_only
Unexecuted instantiation: vp9_pred_common.c:frame_is_intra_only
Unexecuted instantiation: vp9_tile_common.c:frame_is_intra_only
Unexecuted instantiation: vp9_loopfilter.c:frame_is_intra_only
Unexecuted instantiation: vp9_thread_common.c:frame_is_intra_only
Unexecuted instantiation: vp9_reconinter.c:frame_is_intra_only
Unexecuted instantiation: vp9_reconintra.c:frame_is_intra_only
vp9_decodemv.c:frame_is_intra_only
Line
Count
Source
363
16.4M
static INLINE int frame_is_intra_only(const VP9_COMMON *const cm) {
364
16.4M
  return cm->frame_type == KEY_FRAME || cm->intra_only;
365
16.4M
}
366
367
static INLINE void set_partition_probs(const VP9_COMMON *const cm,
368
109k
                                       MACROBLOCKD *const xd) {
369
109k
  xd->partition_probs =
370
109k
      frame_is_intra_only(cm)
371
109k
          ? &vp9_kf_partition_probs[0]
372
109k
          : (const vpx_prob(*)[PARTITION_TYPES - 1]) cm->fc->partition_prob;
373
109k
}
Unexecuted instantiation: vp9_dx_iface.c:set_partition_probs
vp9_decodeframe.c:set_partition_probs
Line
Count
Source
368
109k
                                       MACROBLOCKD *const xd) {
369
109k
  xd->partition_probs =
370
109k
      frame_is_intra_only(cm)
371
109k
          ? &vp9_kf_partition_probs[0]
372
109k
          : (const vpx_prob(*)[PARTITION_TYPES - 1]) cm->fc->partition_prob;
373
109k
}
Unexecuted instantiation: vp9_detokenize.c:set_partition_probs
Unexecuted instantiation: vp9_decoder.c:set_partition_probs
Unexecuted instantiation: yv12config.c:set_partition_probs
Unexecuted instantiation: vp9_alloccommon.c:set_partition_probs
Unexecuted instantiation: vp9_entropy.c:set_partition_probs
Unexecuted instantiation: vp9_entropymode.c:set_partition_probs
Unexecuted instantiation: vp9_entropymv.c:set_partition_probs
Unexecuted instantiation: vp9_pred_common.c:set_partition_probs
Unexecuted instantiation: vp9_tile_common.c:set_partition_probs
Unexecuted instantiation: vp9_loopfilter.c:set_partition_probs
Unexecuted instantiation: vp9_thread_common.c:set_partition_probs
Unexecuted instantiation: vp9_reconinter.c:set_partition_probs
Unexecuted instantiation: vp9_reconintra.c:set_partition_probs
Unexecuted instantiation: vp9_decodemv.c:set_partition_probs
374
375
static INLINE void vp9_init_macroblockd(VP9_COMMON *cm, MACROBLOCKD *xd,
376
109k
                                        tran_low_t *dqcoeff) {
377
109k
  int i;
378
379
437k
  for (i = 0; i < MAX_MB_PLANE; ++i) {
380
328k
    xd->plane[i].dqcoeff = dqcoeff;
381
328k
    xd->above_context[i] =
382
328k
        cm->above_context +
383
328k
        i * sizeof(*cm->above_context) * 2 * mi_cols_aligned_to_sb(cm->mi_cols);
384
385
328k
    if (get_plane_type(i) == PLANE_TYPE_Y) {
386
109k
      memcpy(xd->plane[i].seg_dequant, cm->y_dequant, sizeof(cm->y_dequant));
387
218k
    } else {
388
218k
      memcpy(xd->plane[i].seg_dequant, cm->uv_dequant, sizeof(cm->uv_dequant));
389
218k
    }
390
328k
    xd->fc = cm->fc;
391
328k
  }
392
393
109k
  xd->above_seg_context = cm->above_seg_context;
394
109k
  xd->mi_stride = cm->mi_stride;
395
109k
  xd->error_info = &cm->error;
396
397
109k
  set_partition_probs(cm, xd);
398
109k
}
Unexecuted instantiation: vp9_dx_iface.c:vp9_init_macroblockd
vp9_decodeframe.c:vp9_init_macroblockd
Line
Count
Source
376
109k
                                        tran_low_t *dqcoeff) {
377
109k
  int i;
378
379
437k
  for (i = 0; i < MAX_MB_PLANE; ++i) {
380
328k
    xd->plane[i].dqcoeff = dqcoeff;
381
328k
    xd->above_context[i] =
382
328k
        cm->above_context +
383
328k
        i * sizeof(*cm->above_context) * 2 * mi_cols_aligned_to_sb(cm->mi_cols);
384
385
328k
    if (get_plane_type(i) == PLANE_TYPE_Y) {
386
109k
      memcpy(xd->plane[i].seg_dequant, cm->y_dequant, sizeof(cm->y_dequant));
387
218k
    } else {
388
218k
      memcpy(xd->plane[i].seg_dequant, cm->uv_dequant, sizeof(cm->uv_dequant));
389
218k
    }
390
328k
    xd->fc = cm->fc;
391
328k
  }
392
393
109k
  xd->above_seg_context = cm->above_seg_context;
394
109k
  xd->mi_stride = cm->mi_stride;
395
109k
  xd->error_info = &cm->error;
396
397
109k
  set_partition_probs(cm, xd);
398
109k
}
Unexecuted instantiation: vp9_detokenize.c:vp9_init_macroblockd
Unexecuted instantiation: vp9_decoder.c:vp9_init_macroblockd
Unexecuted instantiation: yv12config.c:vp9_init_macroblockd
Unexecuted instantiation: vp9_alloccommon.c:vp9_init_macroblockd
Unexecuted instantiation: vp9_entropy.c:vp9_init_macroblockd
Unexecuted instantiation: vp9_entropymode.c:vp9_init_macroblockd
Unexecuted instantiation: vp9_entropymv.c:vp9_init_macroblockd
Unexecuted instantiation: vp9_pred_common.c:vp9_init_macroblockd
Unexecuted instantiation: vp9_tile_common.c:vp9_init_macroblockd
Unexecuted instantiation: vp9_loopfilter.c:vp9_init_macroblockd
Unexecuted instantiation: vp9_thread_common.c:vp9_init_macroblockd
Unexecuted instantiation: vp9_reconinter.c:vp9_init_macroblockd
Unexecuted instantiation: vp9_reconintra.c:vp9_init_macroblockd
Unexecuted instantiation: vp9_decodemv.c:vp9_init_macroblockd
399
400
static INLINE const vpx_prob *get_partition_probs(const MACROBLOCKD *xd,
401
0
                                                  int ctx) {
402
0
  return xd->partition_probs[ctx];
403
0
}
Unexecuted instantiation: vp9_dx_iface.c:get_partition_probs
Unexecuted instantiation: vp9_decodeframe.c:get_partition_probs
Unexecuted instantiation: vp9_detokenize.c:get_partition_probs
Unexecuted instantiation: vp9_decoder.c:get_partition_probs
Unexecuted instantiation: yv12config.c:get_partition_probs
Unexecuted instantiation: vp9_alloccommon.c:get_partition_probs
Unexecuted instantiation: vp9_entropy.c:get_partition_probs
Unexecuted instantiation: vp9_entropymode.c:get_partition_probs
Unexecuted instantiation: vp9_entropymv.c:get_partition_probs
Unexecuted instantiation: vp9_pred_common.c:get_partition_probs
Unexecuted instantiation: vp9_tile_common.c:get_partition_probs
Unexecuted instantiation: vp9_loopfilter.c:get_partition_probs
Unexecuted instantiation: vp9_thread_common.c:get_partition_probs
Unexecuted instantiation: vp9_reconinter.c:get_partition_probs
Unexecuted instantiation: vp9_reconintra.c:get_partition_probs
Unexecuted instantiation: vp9_decodemv.c:get_partition_probs
404
405
16.4M
static INLINE void set_skip_context(MACROBLOCKD *xd, int mi_row, int mi_col) {
406
16.4M
  const int above_idx = mi_col * 2;
407
16.4M
  const int left_idx = (mi_row * 2) & 15;
408
16.4M
  int i;
409
65.6M
  for (i = 0; i < MAX_MB_PLANE; ++i) {
410
49.2M
    struct macroblockd_plane *const pd = &xd->plane[i];
411
49.2M
    pd->above_context = &xd->above_context[i][above_idx >> pd->subsampling_x];
412
49.2M
    pd->left_context = &xd->left_context[i][left_idx >> pd->subsampling_y];
413
49.2M
  }
414
16.4M
}
Unexecuted instantiation: vp9_dx_iface.c:set_skip_context
vp9_decodeframe.c:set_skip_context
Line
Count
Source
405
16.4M
static INLINE void set_skip_context(MACROBLOCKD *xd, int mi_row, int mi_col) {
406
16.4M
  const int above_idx = mi_col * 2;
407
16.4M
  const int left_idx = (mi_row * 2) & 15;
408
16.4M
  int i;
409
65.6M
  for (i = 0; i < MAX_MB_PLANE; ++i) {
410
49.2M
    struct macroblockd_plane *const pd = &xd->plane[i];
411
49.2M
    pd->above_context = &xd->above_context[i][above_idx >> pd->subsampling_x];
412
49.2M
    pd->left_context = &xd->left_context[i][left_idx >> pd->subsampling_y];
413
49.2M
  }
414
16.4M
}
Unexecuted instantiation: vp9_detokenize.c:set_skip_context
Unexecuted instantiation: vp9_decoder.c:set_skip_context
Unexecuted instantiation: yv12config.c:set_skip_context
Unexecuted instantiation: vp9_alloccommon.c:set_skip_context
Unexecuted instantiation: vp9_entropy.c:set_skip_context
Unexecuted instantiation: vp9_entropymode.c:set_skip_context
Unexecuted instantiation: vp9_entropymv.c:set_skip_context
Unexecuted instantiation: vp9_pred_common.c:set_skip_context
Unexecuted instantiation: vp9_tile_common.c:set_skip_context
Unexecuted instantiation: vp9_loopfilter.c:set_skip_context
Unexecuted instantiation: vp9_thread_common.c:set_skip_context
Unexecuted instantiation: vp9_reconinter.c:set_skip_context
Unexecuted instantiation: vp9_reconintra.c:set_skip_context
Unexecuted instantiation: vp9_decodemv.c:set_skip_context
415
416
150k
static INLINE int calc_mi_size(int len) {
417
  // len is in mi units.
418
150k
  return len + MI_BLOCK_SIZE;
419
150k
}
Unexecuted instantiation: vp9_dx_iface.c:calc_mi_size
Unexecuted instantiation: vp9_decodeframe.c:calc_mi_size
Unexecuted instantiation: vp9_detokenize.c:calc_mi_size
Unexecuted instantiation: vp9_decoder.c:calc_mi_size
Unexecuted instantiation: yv12config.c:calc_mi_size
vp9_alloccommon.c:calc_mi_size
Line
Count
Source
416
150k
static INLINE int calc_mi_size(int len) {
417
  // len is in mi units.
418
150k
  return len + MI_BLOCK_SIZE;
419
150k
}
Unexecuted instantiation: vp9_entropy.c:calc_mi_size
Unexecuted instantiation: vp9_entropymode.c:calc_mi_size
Unexecuted instantiation: vp9_entropymv.c:calc_mi_size
Unexecuted instantiation: vp9_pred_common.c:calc_mi_size
Unexecuted instantiation: vp9_tile_common.c:calc_mi_size
Unexecuted instantiation: vp9_loopfilter.c:calc_mi_size
Unexecuted instantiation: vp9_thread_common.c:calc_mi_size
Unexecuted instantiation: vp9_reconinter.c:calc_mi_size
Unexecuted instantiation: vp9_reconintra.c:calc_mi_size
Unexecuted instantiation: vp9_decodemv.c:calc_mi_size
420
421
static INLINE void set_mi_row_col(MACROBLOCKD *xd, const TileInfo *const tile,
422
                                  int mi_row, int bh, int mi_col, int bw,
423
16.4M
                                  int mi_rows, int mi_cols) {
424
16.4M
  xd->mb_to_top_edge = -((mi_row * MI_SIZE) * 8);
425
16.4M
  xd->mb_to_bottom_edge = ((mi_rows - bh - mi_row) * MI_SIZE) * 8;
426
16.4M
  xd->mb_to_left_edge = -((mi_col * MI_SIZE) * 8);
427
16.4M
  xd->mb_to_right_edge = ((mi_cols - bw - mi_col) * MI_SIZE) * 8;
428
429
  // Are edges available for intra prediction?
430
16.4M
  xd->above_mi = (mi_row != 0) ? xd->mi[-xd->mi_stride] : NULL;
431
16.4M
  xd->left_mi = (mi_col > tile->mi_col_start) ? xd->mi[-1] : NULL;
432
16.4M
}
Unexecuted instantiation: vp9_dx_iface.c:set_mi_row_col
vp9_decodeframe.c:set_mi_row_col
Line
Count
Source
423
16.4M
                                  int mi_rows, int mi_cols) {
424
16.4M
  xd->mb_to_top_edge = -((mi_row * MI_SIZE) * 8);
425
16.4M
  xd->mb_to_bottom_edge = ((mi_rows - bh - mi_row) * MI_SIZE) * 8;
426
16.4M
  xd->mb_to_left_edge = -((mi_col * MI_SIZE) * 8);
427
16.4M
  xd->mb_to_right_edge = ((mi_cols - bw - mi_col) * MI_SIZE) * 8;
428
429
  // Are edges available for intra prediction?
430
16.4M
  xd->above_mi = (mi_row != 0) ? xd->mi[-xd->mi_stride] : NULL;
431
16.4M
  xd->left_mi = (mi_col > tile->mi_col_start) ? xd->mi[-1] : NULL;
432
16.4M
}
Unexecuted instantiation: vp9_detokenize.c:set_mi_row_col
Unexecuted instantiation: vp9_decoder.c:set_mi_row_col
Unexecuted instantiation: yv12config.c:set_mi_row_col
Unexecuted instantiation: vp9_alloccommon.c:set_mi_row_col
Unexecuted instantiation: vp9_entropy.c:set_mi_row_col
Unexecuted instantiation: vp9_entropymode.c:set_mi_row_col
Unexecuted instantiation: vp9_entropymv.c:set_mi_row_col
Unexecuted instantiation: vp9_pred_common.c:set_mi_row_col
Unexecuted instantiation: vp9_tile_common.c:set_mi_row_col
Unexecuted instantiation: vp9_loopfilter.c:set_mi_row_col
Unexecuted instantiation: vp9_thread_common.c:set_mi_row_col
Unexecuted instantiation: vp9_reconinter.c:set_mi_row_col
Unexecuted instantiation: vp9_reconintra.c:set_mi_row_col
Unexecuted instantiation: vp9_decodemv.c:set_mi_row_col
433
434
static INLINE void update_partition_context(MACROBLOCKD *xd, int mi_row,
435
                                            int mi_col, BLOCK_SIZE subsize,
436
0
                                            BLOCK_SIZE bsize) {
437
0
  PARTITION_CONTEXT *const above_ctx = xd->above_seg_context + mi_col;
438
0
  PARTITION_CONTEXT *const left_ctx = xd->left_seg_context + (mi_row & MI_MASK);
439
0
440
0
  // num_4x4_blocks_wide_lookup[bsize] / 2
441
0
  const int bs = num_8x8_blocks_wide_lookup[bsize];
442
0
443
0
  // update the partition context at the end notes. set partition bits
444
0
  // of block sizes larger than the current one to be one, and partition
445
0
  // bits of smaller block sizes to be zero.
446
0
  memset(above_ctx, partition_context_lookup[subsize].above, bs);
447
0
  memset(left_ctx, partition_context_lookup[subsize].left, bs);
448
0
}
Unexecuted instantiation: vp9_dx_iface.c:update_partition_context
Unexecuted instantiation: vp9_decodeframe.c:update_partition_context
Unexecuted instantiation: vp9_detokenize.c:update_partition_context
Unexecuted instantiation: vp9_decoder.c:update_partition_context
Unexecuted instantiation: yv12config.c:update_partition_context
Unexecuted instantiation: vp9_alloccommon.c:update_partition_context
Unexecuted instantiation: vp9_entropy.c:update_partition_context
Unexecuted instantiation: vp9_entropymode.c:update_partition_context
Unexecuted instantiation: vp9_entropymv.c:update_partition_context
Unexecuted instantiation: vp9_pred_common.c:update_partition_context
Unexecuted instantiation: vp9_tile_common.c:update_partition_context
Unexecuted instantiation: vp9_loopfilter.c:update_partition_context
Unexecuted instantiation: vp9_thread_common.c:update_partition_context
Unexecuted instantiation: vp9_reconinter.c:update_partition_context
Unexecuted instantiation: vp9_reconintra.c:update_partition_context
Unexecuted instantiation: vp9_decodemv.c:update_partition_context
449
450
static INLINE int partition_plane_context(const MACROBLOCKD *xd, int mi_row,
451
0
                                          int mi_col, BLOCK_SIZE bsize) {
452
0
  const PARTITION_CONTEXT *above_ctx = xd->above_seg_context + mi_col;
453
0
  const PARTITION_CONTEXT *left_ctx = xd->left_seg_context + (mi_row & MI_MASK);
454
0
  const int bsl = mi_width_log2_lookup[bsize];
455
0
  int above = (*above_ctx >> bsl) & 1, left = (*left_ctx >> bsl) & 1;
456
0
457
0
  assert(b_width_log2_lookup[bsize] == b_height_log2_lookup[bsize]);
458
0
  assert(bsl >= 0);
459
0
460
0
  return (left * 2 + above) + bsl * PARTITION_PLOFFSET;
461
0
}
Unexecuted instantiation: vp9_dx_iface.c:partition_plane_context
Unexecuted instantiation: vp9_decodeframe.c:partition_plane_context
Unexecuted instantiation: vp9_detokenize.c:partition_plane_context
Unexecuted instantiation: vp9_decoder.c:partition_plane_context
Unexecuted instantiation: yv12config.c:partition_plane_context
Unexecuted instantiation: vp9_alloccommon.c:partition_plane_context
Unexecuted instantiation: vp9_entropy.c:partition_plane_context
Unexecuted instantiation: vp9_entropymode.c:partition_plane_context
Unexecuted instantiation: vp9_entropymv.c:partition_plane_context
Unexecuted instantiation: vp9_pred_common.c:partition_plane_context
Unexecuted instantiation: vp9_tile_common.c:partition_plane_context
Unexecuted instantiation: vp9_loopfilter.c:partition_plane_context
Unexecuted instantiation: vp9_thread_common.c:partition_plane_context
Unexecuted instantiation: vp9_reconinter.c:partition_plane_context
Unexecuted instantiation: vp9_reconintra.c:partition_plane_context
Unexecuted instantiation: vp9_decodemv.c:partition_plane_context
462
463
#ifdef __cplusplus
464
}  // extern "C"
465
#endif
466
467
#endif  // VPX_VP9_COMMON_VP9_ONYXC_INT_H_