Coverage Report

Created: 2026-04-01 07:49

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/aom/av1/encoder/firstpass.h
Line
Count
Source
1
/*
2
 * Copyright (c) 2016, Alliance for Open Media. All rights reserved.
3
 *
4
 * This source code is subject to the terms of the BSD 2 Clause License and
5
 * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
6
 * was not distributed with this source code in the LICENSE file, you can
7
 * obtain it at www.aomedia.org/license/software. If the Alliance for Open
8
 * Media Patent License 1.0 was not distributed with this source code in the
9
 * PATENTS file, you can obtain it at www.aomedia.org/license/patent.
10
 */
11
12
#ifndef AOM_AV1_ENCODER_FIRSTPASS_H_
13
#define AOM_AV1_ENCODER_FIRSTPASS_H_
14
15
#include <stdbool.h>
16
17
#include "av1/common/av1_common_int.h"
18
#include "av1/common/enums.h"
19
#include "av1/encoder/lookahead.h"
20
#include "av1/encoder/ratectrl.h"
21
22
#ifdef __cplusplus
23
extern "C" {
24
#endif
25
26
0
#define DOUBLE_DIVIDE_CHECK(x) ((x) < 0 ? (x) - 0.000001 : (x) + 0.000001)
27
28
0
#define MIN_ZERO_MOTION 0.95
29
0
#define MAX_SR_CODED_ERROR 40
30
0
#define MAX_RAW_ERR_VAR 2000
31
#define MIN_MV_IN_OUT 0.4
32
33
#define VLOW_MOTION_THRESHOLD 950
34
struct ThreadData;
35
36
/*!
37
 * \brief The stucture of acummulated frame stats in the first pass.
38
 *
39
 * Errors (coded_error, intra_error, etc.) and counters (new_mv_count) are
40
 * normalized to each MB. MV related stats (MVc, MVr, etc.) are normalized to
41
 * the frame width and height. See function normalize_firstpass_stats.
42
 */
43
typedef struct FIRSTPASS_STATS {
44
  /*!
45
   * Frame number in display order, if stats are for a single frame.
46
   * No real meaning for a collection of frames.
47
   */
48
  double frame;
49
  /*!
50
   * Weight assigned to this frame (or total weight for the collection of
51
   * frames) currently based on intra factor and brightness factor. This is used
52
   * to distribute bits betweeen easier and harder frames.
53
   */
54
  double weight;
55
  /*!
56
   * Intra prediction error.
57
   */
58
  double intra_error;
59
  /*!
60
   * Average wavelet energy computed using Discrete Wavelet Transform (DWT).
61
   */
62
  double frame_avg_wavelet_energy;
63
  /*!
64
   * Best of intra pred error and inter pred error using last frame as ref.
65
   */
66
  double coded_error;
67
  /*!
68
   * Best of intra pred error and inter pred error using golden frame as ref.
69
   */
70
  double sr_coded_error;
71
  /*!
72
   * Best of intra pred error and inter pred error using long term frame as ref.
73
   */
74
  double lt_coded_error;
75
  /*!
76
   * Percentage of blocks with inter pred error < intra pred error.
77
   */
78
  double pcnt_inter;
79
  /*!
80
   * Percentage of blocks using (inter prediction and) non-zero motion vectors.
81
   */
82
  double pcnt_motion;
83
  /*!
84
   * Percentage of blocks where golden frame was better than last or intra:
85
   * inter pred error using golden frame < inter pred error using last frame and
86
   * inter pred error using golden frame < intra pred error
87
   */
88
  double pcnt_second_ref;
89
  /*!
90
   * Percentage of blocks where intra and inter prediction errors were very
91
   * close. Note that this is a 'weighted count', that is, the so blocks may be
92
   * weighted by how close the two errors were.
93
   */
94
  double pcnt_neutral;
95
  /*!
96
   * Percentage of blocks that have almost no intra error residual
97
   * (i.e. are in effect completely flat and untextured in the intra
98
   * domain). In natural videos this is uncommon, but it is much more
99
   * common in animations, graphics and screen content, so may be used
100
   * as a signal to detect these types of content.
101
   */
102
  double intra_skip_pct;
103
  /*!
104
   * Image mask rows top and bottom.
105
   */
106
  double inactive_zone_rows;
107
  /*!
108
   * Image mask columns at left and right edges.
109
   */
110
  double inactive_zone_cols;
111
  /*!
112
   * Average of row motion vectors.
113
   */
114
  double MVr;
115
  /*!
116
   * Mean of absolute value of row motion vectors.
117
   */
118
  double mvr_abs;
119
  /*!
120
   * Mean of column motion vectors.
121
   */
122
  double MVc;
123
  /*!
124
   * Mean of absolute value of column motion vectors.
125
   */
126
  double mvc_abs;
127
  /*!
128
   * Variance of row motion vectors.
129
   */
130
  double MVrv;
131
  /*!
132
   * Variance of column motion vectors.
133
   */
134
  double MVcv;
135
  /*!
136
   * Value in range [-1,1] indicating fraction of row and column motion vectors
137
   * that point inwards (negative MV value) or outwards (positive MV value).
138
   * For example, value of 1 indicates, all row/column MVs are inwards.
139
   */
140
  double mv_in_out_count;
141
  /*!
142
   * Count of unique non-zero motion vectors.
143
   */
144
  double new_mv_count;
145
  /*!
146
   * Duration of the frame / collection of frames.
147
   */
148
  double duration;
149
  /*!
150
   * 1.0 if stats are for a single frame, OR
151
   * Number of frames in this collection for which the stats are accumulated.
152
   */
153
  double count;
154
  /*!
155
   * standard deviation for (0, 0) motion prediction error
156
   */
157
  double raw_error_stdev;
158
  /*!
159
   * Whether the frame contains a flash
160
   */
161
  int64_t is_flash;
162
  /*!
163
   * Estimated noise variance
164
   */
165
  double noise_var;
166
  /*!
167
   * Correlation coefficient with the previous frame
168
   */
169
  double cor_coeff;
170
  /*!
171
   * log of intra_error
172
   */
173
  double log_intra_error;
174
  /*!
175
   * log of coded_error
176
   */
177
  double log_coded_error;
178
} FIRSTPASS_STATS;
179
180
// We want to keep one past stats for key frame detection
181
// in test_candidate_kf()
182
0
#define FIRSTPASS_INFO_STATS_PAST_MIN 1
183
184
// The size of static buffer used in FIRSTPASS_INFO.
185
#define FIRSTPASS_INFO_STATIC_BUF_SIZE \
186
  (MAX_LAP_BUFFERS + FIRSTPASS_INFO_STATS_PAST_MIN)
187
188
/*!
189
 * \brief  Data structure used for managing first pass stats
190
 */
191
typedef struct {
192
  /*!
193
   * A static buffer that will be used when no ext_stats_buf is assigned. The
194
   * ext_stats_buf is assigned through av1_firstpass_info_init() when the user
195
   * already has a pre-existing firstpass stats that is stored in an external
196
   * buffer. The ext_stats_buf is usually used in two pass mode. When using one
197
   * pass mode, we generate "firstpass" stats and encode the video in the same
198
   * pass. In this scenario, the stats will be pushed and popped from
199
   * static_stats_buf.
200
   */
201
  FIRSTPASS_STATS static_stats_buf[FIRSTPASS_INFO_STATIC_BUF_SIZE];
202
  /*!
203
   * A pointer to first pass stats.
204
   * Note that this buffer will be used as ring buffer.
205
   */
206
  FIRSTPASS_STATS *stats_buf;
207
  /*!
208
   * size of stats_buf
209
   */
210
  int stats_buf_size;
211
  /*!
212
   * start index of the available frame stats
213
   * Note that start_index doesn't always point to
214
   * current frame's stats because we need to
215
   * keep past stats as well. To access current
216
   * frame's stats, please use cur_index.
217
   */
218
  int start_index;
219
220
  /*!
221
   * count available stats stored in stats_buf
222
   * the following condition should stay true
223
   * stats_count = future_stats_count + past_stats_count
224
   */
225
  int stats_count;
226
227
  /*!
228
   *  index of the current frame's stats
229
   */
230
  int cur_index;
231
232
  /*!
233
   * count available future stats including current stats
234
   */
235
  int future_stats_count;
236
237
  /*!
238
   * count available past stats EXCLUDING current stats
239
   */
240
  int past_stats_count;
241
242
  /*!
243
   * Accumulation of the stats being pushed into firstpass_info
244
   */
245
  FIRSTPASS_STATS total_stats;
246
} FIRSTPASS_INFO;
247
248
/*!\brief Init firstpass_info
249
 *
250
 * If using ext_stats_buf, the buffer needs to stay available during encoding
251
 * process.
252
 *
253
 * \ingroup rate_control
254
 * \param[out]   firstpass_info      struct of firstpass_info.
255
 * \param[in]    ext_stats_buf       external stats buffer. Pass in NULL if
256
 *                                   choose to use internal static_stats_buf.
257
 * \param[in]    ext_stats_buf_size  external stats buffer size. Pass in 0 if
258
 * choose to use internal static_stats_buf. \return status
259
 */
260
aom_codec_err_t av1_firstpass_info_init(FIRSTPASS_INFO *firstpass_info,
261
                                        FIRSTPASS_STATS *ext_stats_buf,
262
                                        int ext_stats_buf_size);
263
264
/*!\brief Move cur_index by 1
265
 *
266
 * \ingroup rate_control
267
 * \param[out]   firstpass_info      struct of firstpass_info.
268
 * \return status
269
 */
270
aom_codec_err_t av1_firstpass_info_move_cur_index(
271
    FIRSTPASS_INFO *firstpass_info);
272
273
/*!\brief Pop a stats from firstpass_info
274
 *
275
 * \ingroup rate_control
276
 * \param[out]   firstpass_info      struct of firstpass_info.
277
 * \return status
278
 */
279
aom_codec_err_t av1_firstpass_info_pop(FIRSTPASS_INFO *firstpass_info);
280
281
/*!\brief Move cur_index by 1 and pop a stats from firstpass_info
282
 *
283
 * \ingroup rate_control
284
 * \param[out]   firstpass_info      struct of firstpass_info.
285
 * \return status
286
 */
287
aom_codec_err_t av1_firstpass_info_move_cur_index_and_pop(
288
    FIRSTPASS_INFO *firstpass_info);
289
290
/*!\brief Push a stats into firstpass_info
291
 *
292
 * Note that the input stats will be copied into firstpass_info.
293
 * \ingroup rate_control
294
 * \param[out]  firstpass_info      struct of firstpass_info.
295
 * \param[in]   input_stats         input stats
296
 * \return status
297
 */
298
aom_codec_err_t av1_firstpass_info_push(FIRSTPASS_INFO *firstpass_info,
299
                                        const FIRSTPASS_STATS *input_stats);
300
301
/*!\brief Peek at a stats from firstpass_info
302
 *
303
 * The target index is as follows.
304
 * (cur_index + offset_from_cur) % firstpass_info->stats_buf_size
305
 *
306
 * \ingroup rate_control
307
 * \param[in]  firstpass_info      struct of firstpass_info.
308
 * \param[in]  offset_from_cur  index offset from cur_index.
309
 * \return pointer to the stats. The pointer will be NULL if
310
 *         stats_index_offset is invalid.
311
 */
312
const FIRSTPASS_STATS *av1_firstpass_info_peek(
313
    const FIRSTPASS_INFO *firstpass_info, int offset_from_cur);
314
315
/*!\brief Count the future stats from the target in firstpass_info
316
 * Note that the target stats will be counted as well.
317
 * The target index is as follows.
318
 * (cur_index + offset_from_cur) % firstpass_info->stats_buf_size
319
 *
320
 * \ingroup rate_control
321
 * \param[in]  firstpass_info    struct of firstpass_info.
322
 * \param[in]  offset_from_cur  target stats's inffset
323
 *                               from cur_index.
324
 * \return Number of stats in the future after the target stats
325
 *         including itself.
326
 */
327
int av1_firstpass_info_future_count(const FIRSTPASS_INFO *firstpass_info,
328
                                    int offset_from_cur);
329
330
/*!\cond */
331
0
#define FC_ANIMATION_THRESH 0.15
332
enum {
333
  FC_NORMAL = 0,
334
  FC_GRAPHICS_ANIMATION = 1,
335
  FRAME_CONTENT_TYPES = 2
336
} UENUM1BYTE(FRAME_CONTENT_TYPE);
337
/*!\endcond */
338
339
/*!
340
 * \brief  Data related to the current GF/ARF group and the
341
 * individual frames within the group
342
 */
343
typedef struct GF_GROUP {
344
  /*!\cond */
345
  // Frame update type, e.g. ARF/GF/LF/Overlay
346
  FRAME_UPDATE_TYPE update_type[MAX_STATIC_GF_GROUP_LENGTH];
347
  unsigned char arf_src_offset[MAX_STATIC_GF_GROUP_LENGTH];
348
  // The number of frames displayed so far within the GOP at a given coding
349
  // frame.
350
  unsigned char cur_frame_idx[MAX_STATIC_GF_GROUP_LENGTH];
351
  int layer_depth[MAX_STATIC_GF_GROUP_LENGTH];
352
  int arf_boost[MAX_STATIC_GF_GROUP_LENGTH];
353
  int max_layer_depth;
354
  int max_layer_depth_allowed;
355
  // This is currently only populated for AOM_Q mode
356
  int q_val[MAX_STATIC_GF_GROUP_LENGTH];
357
  int rdmult_val[MAX_STATIC_GF_GROUP_LENGTH];
358
  int bit_allocation[MAX_STATIC_GF_GROUP_LENGTH];
359
  // The frame coding type - inter/intra frame
360
  FRAME_TYPE frame_type[MAX_STATIC_GF_GROUP_LENGTH];
361
  // The reference frame buffer control - update or reset
362
  REFBUF_STATE refbuf_state[MAX_STATIC_GF_GROUP_LENGTH];
363
  int arf_index;  // the index in the gf group of ARF, if no arf, then -1
364
  int size;       // The total length of a GOP
365
366
  // The offset into lookahead_ctx for choosing
367
  // source of frame parallel encodes.
368
  int src_offset[MAX_STATIC_GF_GROUP_LENGTH];
369
  // Stores the display order hint of each frame in the current GF_GROUP.
370
  int display_idx[MAX_STATIC_GF_GROUP_LENGTH];
371
372
  // The reference frame list maps the reference frame indexes to its
373
  // buffer index in the decoded buffer. A value of -1 means the
374
  // corresponding reference frame index doesn't point towards any
375
  // previously decoded frame.
376
  int8_t ref_frame_list[MAX_STATIC_GF_GROUP_LENGTH][REF_FRAMES];
377
  // Update frame index
378
  int update_ref_idx[MAX_STATIC_GF_GROUP_LENGTH];
379
  // The map_idx of primary reference
380
  int primary_ref_idx[MAX_STATIC_GF_GROUP_LENGTH];
381
382
  // Indicates the level of parallelism in frame parallel encodes.
383
  // 0 : frame is independently encoded (not part of parallel encodes).
384
  // 1 : frame is the first in encode order in a given parallel encode set.
385
  // 2 : frame occurs later in encode order in a given parallel encode set.
386
  int frame_parallel_level[MAX_STATIC_GF_GROUP_LENGTH];
387
  // Indicates whether a frame should act as non-reference frame.
388
  bool is_frame_non_ref[MAX_STATIC_GF_GROUP_LENGTH];
389
  // Indicates whether a frame is dropped.
390
  bool is_frame_dropped[MAX_STATIC_GF_GROUP_LENGTH];
391
392
  // Stores the display order hint of the frames not to be
393
  // refreshed by the current frame.
394
  int skip_frame_refresh[MAX_STATIC_GF_GROUP_LENGTH][REF_FRAMES];
395
  // Stores the display order hint of the frame to be excluded during reference
396
  // assignment.
397
  int skip_frame_as_ref[MAX_STATIC_GF_GROUP_LENGTH];
398
  // Indicates whether a switch frame is due.
399
  bool is_sframe_due;
400
  // Indicates whether the ref frame map is overridden by the external rate
401
  // control.
402
  int use_ext_ref_frame_map[MAX_STATIC_GF_GROUP_LENGTH];
403
  /*!\endcond */
404
} GF_GROUP;
405
/*!\cond */
406
407
typedef struct {
408
  // Track if the last frame in a GOP has higher quality.
409
  int arf_gf_boost_lst;
410
} GF_STATE;
411
412
typedef struct {
413
  FIRSTPASS_STATS *stats_in_start;
414
  FIRSTPASS_STATS *stats_in_end;
415
  FIRSTPASS_STATS *stats_in_buf_end;
416
  FIRSTPASS_STATS *total_stats;
417
  FIRSTPASS_STATS *total_left_stats;
418
} STATS_BUFFER_CTX;
419
420
/*!\endcond */
421
422
/*!
423
 * \brief Two pass status and control data.
424
 */
425
typedef struct {
426
  /*!\cond */
427
  unsigned int section_intra_rating;
428
  // Circular queue of first pass stats stored for most recent frames.
429
  // cpi->output_pkt_list[i].data.twopass_stats.buf points to actual data stored
430
  // here.
431
  FIRSTPASS_STATS *frame_stats_arr[MAX_LAP_BUFFERS + 1];
432
  int frame_stats_next_idx;  // Index to next unused element in frame_stats_arr.
433
  STATS_BUFFER_CTX *stats_buf_ctx;
434
  FIRSTPASS_INFO firstpass_info;  // This is the first pass data structure
435
                                  // intended to replace stats_in
436
  int first_pass_done;
437
  int64_t bits_left;
438
  double modified_error_min;
439
  double modified_error_max;
440
  double modified_error_left;
441
442
  // Projected total bits available for a key frame group of frames
443
  int64_t kf_group_bits;
444
445
  // Error score of frames still to be coded in kf group
446
  double kf_group_error_left;
447
448
  // Over time correction for bits per macro block estimation
449
  double bpm_factor;
450
451
  // Record of target and actual bits spent in current ARF group
452
  int rolling_arf_group_target_bits;
453
  int rolling_arf_group_actual_bits;
454
455
  int sr_update_lag;
456
457
  int kf_zeromotion_pct;
458
  int last_kfgroup_zeromotion_pct;
459
  int extend_minq;
460
  int extend_maxq;
461
  /*!\endcond */
462
} TWO_PASS;
463
464
/*!
465
 * \brief Frame level Two pass status and control data.
466
 */
467
typedef struct {
468
  /*!\cond */
469
  const FIRSTPASS_STATS *stats_in;
470
  // Pointer to the stats of the current frame.
471
  const FIRSTPASS_STATS *this_frame;
472
  double mb_av_energy;
473
  // An indication of the content type of the current frame
474
  FRAME_CONTENT_TYPE fr_content_type;
475
  double frame_avg_haar_energy;
476
  /*!\endcond */
477
} TWO_PASS_FRAME;
478
479
/*!\cond */
480
481
// This structure contains several key parameters to be accumulated for this
482
// frame.
483
typedef struct {
484
  // Intra prediction error.
485
  int64_t intra_error;
486
  // Average wavelet energy computed using Discrete Wavelet Transform (DWT).
487
  int64_t frame_avg_wavelet_energy;
488
  // Best of intra pred error and inter pred error using last frame as ref.
489
  int64_t coded_error;
490
  // Best of intra pred error and inter pred error using golden frame as ref.
491
  int64_t sr_coded_error;
492
  // Best of coded error using long term reference.
493
  int64_t lt_coded_error;
494
495
  // Count of motion vector.
496
  int mv_count;
497
  // Count of blocks that pick inter prediction (inter pred error is smaller
498
  // than intra pred error).
499
  int inter_count;
500
  // Count of blocks that pick second ref (golden frame).
501
  int second_ref_count;
502
  // Count of blocks where the inter and intra are very close and very low.
503
  double neutral_count;
504
  // Count of blocks where intra error is very small.
505
  int intra_skip_count;
506
  // Start row.
507
  int image_data_start_row;
508
  // Count of unique non-zero motion vectors.
509
  int new_mv_count;
510
  // Sum of inward motion vectors.
511
  int sum_in_vectors;
512
  // Sum of motion vector row.
513
  int sum_mvr;
514
  // Sum of motion vector column.
515
  int sum_mvc;
516
  // Sum of absolute value of motion vector row.
517
  int sum_mvr_abs;
518
  // Sum of absolute value of motion vector column.
519
  int sum_mvc_abs;
520
  // Sum of the square of motion vector row.
521
  int64_t sum_mvrs;
522
  // Sum of the square of motion vector column.
523
  int64_t sum_mvcs;
524
  // A factor calculated using intra pred error.
525
  double intra_factor;
526
  // A factor that measures brightness.
527
  double brightness_factor;
528
} FRAME_STATS;
529
530
// This structure contains first pass data.
531
typedef struct {
532
  // Buffer holding frame stats for all MACROBLOCKs.
533
  // mb_stats[i] stores the FRAME_STATS of the ith
534
  // MB in raster scan order.
535
  FRAME_STATS *mb_stats;
536
  // Buffer to store the prediction error of the (0,0) motion
537
  // vector using the last source frame as the reference.
538
  // raw_motion_err_list[i] stores the raw_motion_err of
539
  // the ith MB in raster scan order.
540
  int *raw_motion_err_list;
541
} FirstPassData;
542
543
struct AV1_COMP;
544
struct EncodeFrameParams;
545
struct AV1EncoderConfig;
546
struct TileDataEnc;
547
548
static inline int is_fp_wavelet_energy_invalid(
549
0
    const FIRSTPASS_STATS *fp_stats) {
550
0
  assert(fp_stats != NULL);
551
0
  return (fp_stats->frame_avg_wavelet_energy < 0);
552
0
}
Unexecuted instantiation: av1_cx_iface.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: allintra_vis.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: av1_ext_ratectrl.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: av1_quantize.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: bitstream.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: context_tree.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: encodeframe.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: encodeframe_utils.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: encodemb.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: encodemv.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: encoder.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: encoder_utils.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: encodetxb.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: ethread.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: firstpass.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: global_motion_facade.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: level.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: lookahead.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: mcomp.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: mv_prec.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: palette.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: partition_search.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: partition_strategy.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: pass2_strategy.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: pickcdef.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: picklpf.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: pickrst.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: ratectrl.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: rd.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: rdopt.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: nonrd_pickmode.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: nonrd_opt.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: segmentation.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: speed_features.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: superres_scale.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: svc_layercontext.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: temporal_filter.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: tokenize.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: tpl_model.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: tx_search.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: txb_rdopt.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: intra_mode_search.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: var_based_part.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: av1_noise_estimate.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: aq_complexity.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: aq_cyclicrefresh.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: aq_variance.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: compound_type.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: encode_strategy.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: global_motion.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: gop_structure.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: interp_search.c:is_fp_wavelet_energy_invalid
Unexecuted instantiation: motion_search_facade.c:is_fp_wavelet_energy_invalid
553
554
0
static inline BLOCK_SIZE get_fp_block_size(int is_screen_content_type) {
555
0
  return (is_screen_content_type ? BLOCK_8X8 : BLOCK_16X16);
556
0
}
Unexecuted instantiation: av1_cx_iface.c:get_fp_block_size
Unexecuted instantiation: allintra_vis.c:get_fp_block_size
Unexecuted instantiation: av1_ext_ratectrl.c:get_fp_block_size
Unexecuted instantiation: av1_quantize.c:get_fp_block_size
Unexecuted instantiation: bitstream.c:get_fp_block_size
Unexecuted instantiation: context_tree.c:get_fp_block_size
Unexecuted instantiation: encodeframe.c:get_fp_block_size
Unexecuted instantiation: encodeframe_utils.c:get_fp_block_size
Unexecuted instantiation: encodemb.c:get_fp_block_size
Unexecuted instantiation: encodemv.c:get_fp_block_size
Unexecuted instantiation: encoder.c:get_fp_block_size
Unexecuted instantiation: encoder_utils.c:get_fp_block_size
Unexecuted instantiation: encodetxb.c:get_fp_block_size
Unexecuted instantiation: ethread.c:get_fp_block_size
Unexecuted instantiation: firstpass.c:get_fp_block_size
Unexecuted instantiation: global_motion_facade.c:get_fp_block_size
Unexecuted instantiation: level.c:get_fp_block_size
Unexecuted instantiation: lookahead.c:get_fp_block_size
Unexecuted instantiation: mcomp.c:get_fp_block_size
Unexecuted instantiation: mv_prec.c:get_fp_block_size
Unexecuted instantiation: palette.c:get_fp_block_size
Unexecuted instantiation: partition_search.c:get_fp_block_size
Unexecuted instantiation: partition_strategy.c:get_fp_block_size
Unexecuted instantiation: pass2_strategy.c:get_fp_block_size
Unexecuted instantiation: pickcdef.c:get_fp_block_size
Unexecuted instantiation: picklpf.c:get_fp_block_size
Unexecuted instantiation: pickrst.c:get_fp_block_size
Unexecuted instantiation: ratectrl.c:get_fp_block_size
Unexecuted instantiation: rd.c:get_fp_block_size
Unexecuted instantiation: rdopt.c:get_fp_block_size
Unexecuted instantiation: nonrd_pickmode.c:get_fp_block_size
Unexecuted instantiation: nonrd_opt.c:get_fp_block_size
Unexecuted instantiation: segmentation.c:get_fp_block_size
Unexecuted instantiation: speed_features.c:get_fp_block_size
Unexecuted instantiation: superres_scale.c:get_fp_block_size
Unexecuted instantiation: svc_layercontext.c:get_fp_block_size
Unexecuted instantiation: temporal_filter.c:get_fp_block_size
Unexecuted instantiation: tokenize.c:get_fp_block_size
Unexecuted instantiation: tpl_model.c:get_fp_block_size
Unexecuted instantiation: tx_search.c:get_fp_block_size
Unexecuted instantiation: txb_rdopt.c:get_fp_block_size
Unexecuted instantiation: intra_mode_search.c:get_fp_block_size
Unexecuted instantiation: var_based_part.c:get_fp_block_size
Unexecuted instantiation: av1_noise_estimate.c:get_fp_block_size
Unexecuted instantiation: aq_complexity.c:get_fp_block_size
Unexecuted instantiation: aq_cyclicrefresh.c:get_fp_block_size
Unexecuted instantiation: aq_variance.c:get_fp_block_size
Unexecuted instantiation: compound_type.c:get_fp_block_size
Unexecuted instantiation: encode_strategy.c:get_fp_block_size
Unexecuted instantiation: global_motion.c:get_fp_block_size
Unexecuted instantiation: gop_structure.c:get_fp_block_size
Unexecuted instantiation: interp_search.c:get_fp_block_size
Unexecuted instantiation: motion_search_facade.c:get_fp_block_size
557
558
int av1_get_unit_rows_in_tile(const TileInfo *tile,
559
                              const BLOCK_SIZE fp_block_size);
560
int av1_get_unit_cols_in_tile(const TileInfo *tile,
561
                              const BLOCK_SIZE fp_block_size);
562
563
void av1_first_pass_row(struct AV1_COMP *cpi, struct ThreadData *td,
564
                        struct TileDataEnc *tile_data, const int mb_row,
565
                        const BLOCK_SIZE fp_block_size);
566
void av1_end_first_pass(struct AV1_COMP *cpi);
567
568
void av1_free_firstpass_data(FirstPassData *firstpass_data);
569
570
void av1_twopass_zero_stats(FIRSTPASS_STATS *section);
571
void av1_accumulate_stats(FIRSTPASS_STATS *section,
572
                          const FIRSTPASS_STATS *frame);
573
/*!\endcond */
574
575
/*!\brief AV1 first pass encoding.
576
 *
577
 * \ingroup rate_control
578
 * This function is the first encoding pass for the two pass encoding mode.
579
 * It encodes the whole video and collect essential information.
580
 * Two pass encoding is an encoding mode in the reference software (libaom)
581
 * of AV1 for high performance encoding. The first pass is a fast encoding
582
 * process to collect essential information to help the second pass make
583
 * encoding decisions and improve coding quality. The collected stats is used
584
 * in rate control, for example, to determine frame cut, the position of
585
 * alternative reference frame (ARF), etc.
586
 *
587
 * \param[in]    cpi            Top-level encoder structure
588
 * \param[in]    ts_duration    Duration of the frame / collection of frames
589
 *
590
 * \remark Nothing is returned. Instead, the "TWO_PASS" structure inside "cpi"
591
 * is modified to store information computed in this function.
592
 */
593
void av1_first_pass(struct AV1_COMP *cpi, const int64_t ts_duration);
594
595
void av1_noop_first_pass_frame(struct AV1_COMP *cpi, const int64_t ts_duration);
596
#ifdef __cplusplus
597
}  // extern "C"
598
#endif
599
600
#endif  // AOM_AV1_ENCODER_FIRSTPASS_H_