Coverage Report

Created: 2026-05-24 07:45

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/aom/av1/av1_cx_iface.c
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
#include <assert.h>
13
#include <limits.h>
14
#include <math.h>
15
#include <setjmp.h>
16
#include <stdbool.h>
17
#include <stdint.h>
18
#include <stdlib.h>
19
#include <string.h>
20
21
#include "config/aom_config.h"
22
#include "config/aom_version.h"
23
24
#include "aom/aomcx.h"
25
#include "aom/aom_encoder.h"
26
#include "aom/aom_external_partition.h"
27
#include "aom/aom_image.h"
28
#include "aom/internal/aom_codec_internal.h"
29
#include "aom_dsp/flow_estimation/flow_estimation.h"
30
#include "aom_mem/aom_mem.h"
31
#include "aom_scale/yv12config.h"
32
#include "aom_util/aom_pthread.h"
33
34
#include "av1/av1_cx_iface.h"
35
#include "av1/av1_iface_common.h"
36
#include "av1/common/av1_common_int.h"
37
#include "av1/common/enums.h"
38
#include "av1/common/quant_common.h"
39
#include "av1/common/scale.h"
40
#include "av1/encoder/av1_ext_ratectrl.h"
41
#include "av1/encoder/bitstream.h"
42
#include "av1/encoder/enc_enums.h"
43
#include "av1/encoder/encoder.h"
44
#include "av1/encoder/encoder_alloc.h"
45
#include "av1/encoder/encoder_utils.h"
46
#include "av1/encoder/ethread.h"
47
#include "av1/encoder/external_partition.h"
48
#include "av1/encoder/firstpass.h"
49
#include "av1/encoder/lookahead.h"
50
#include "av1/encoder/rc_utils.h"
51
#include "av1/arg_defs.h"
52
53
#include "common/args_helper.h"
54
55
// Creates a setjmp target using `CPI->common.error->jmp` and sets
56
// `CPI->common.error->setjmp = 1`. Returns `CPI->common.error->error_code` on
57
// longjmp. This macro expects `aom_codec_alg_priv_t *ctx` to be available.
58
// This should be accompanied by a call to DISABLE_SETJMP using the same CPI
59
// before going out of scope.
60
#define ENABLE_SETJMP(CPI)                                      \
61
0
  do {                                                          \
62
0
    struct aom_internal_error_info *const enable_setjmp_error = \
63
0
        (CPI)->common.error;                                    \
64
0
    if (setjmp(enable_setjmp_error->jmp)) {                     \
65
0
      enable_setjmp_error->setjmp = 0;                          \
66
0
      ctx->base.err_detail = enable_setjmp_error->has_detail    \
67
0
                                 ? enable_setjmp_error->detail  \
68
0
                                 : NULL;                        \
69
0
      return enable_setjmp_error->error_code;                   \
70
0
    }                                                           \
71
0
    enable_setjmp_error->setjmp = 1;                            \
72
0
  } while (0)
73
74
// Sets CPI->common.error->setjmp = 0.
75
#define DISABLE_SETJMP(CPI)                                     \
76
0
  do {                                                          \
77
0
    struct aom_internal_error_info *const enable_setjmp_error = \
78
0
        (CPI)->common.error;                                    \
79
0
    enable_setjmp_error->setjmp = 0;                            \
80
0
  } while (0)
81
82
struct av1_extracfg {
83
  int cpu_used;
84
  unsigned int enable_auto_alt_ref;
85
  unsigned int enable_auto_bwd_ref;
86
  unsigned int noise_sensitivity;
87
  unsigned int sharpness;
88
  unsigned int enable_adaptive_sharpness;
89
  unsigned int static_thresh;
90
  unsigned int row_mt;
91
  unsigned int fp_mt;
92
  unsigned int tile_columns;  // log2 number of tile columns
93
  unsigned int tile_rows;     // log2 number of tile rows
94
  unsigned int auto_tiles;
95
  unsigned int enable_tpl_model;
96
  unsigned int enable_keyframe_filtering;
97
  unsigned int arnr_max_frames;
98
  unsigned int arnr_strength;
99
  unsigned int min_gf_interval;
100
  unsigned int max_gf_interval;
101
  unsigned int gf_min_pyr_height;
102
  unsigned int gf_max_pyr_height;
103
  aom_tune_metric tuning;
104
  const char *vmaf_model_path;
105
  const char *partition_info_path;
106
  unsigned int enable_rate_guide_deltaq;
107
  const char *rate_distribution_info;
108
  aom_dist_metric dist_metric;
109
  unsigned int cq_level;  // constrained quality level
110
  unsigned int rc_max_intra_bitrate_pct;
111
  unsigned int rc_max_inter_bitrate_pct;
112
  unsigned int gf_cbr_boost_pct;
113
  unsigned int lossless;
114
  unsigned int enable_cdef;
115
  unsigned int enable_restoration;
116
  unsigned int force_video_mode;
117
  unsigned int enable_obmc;
118
  unsigned int disable_trellis_quant;
119
  unsigned int enable_qm;
120
  unsigned int qm_y;
121
  unsigned int qm_u;
122
  unsigned int qm_v;
123
  unsigned int qm_min;
124
  unsigned int qm_max;
125
  unsigned int num_tg;
126
  unsigned int mtu_size;
127
128
  aom_timing_info_type_t timing_info_type;
129
  unsigned int frame_parallel_decoding_mode;
130
  int enable_dual_filter;
131
  unsigned int enable_chroma_deltaq;
132
  AQ_MODE aq_mode;
133
  DELTAQ_MODE deltaq_mode;
134
  unsigned int deltaq_strength;
135
  int deltalf_mode;
136
  unsigned int frame_periodic_boost;
137
  aom_tune_content content;
138
  aom_color_primaries_t color_primaries;
139
  aom_transfer_characteristics_t transfer_characteristics;
140
  aom_matrix_coefficients_t matrix_coefficients;
141
  aom_chroma_sample_position_t chroma_sample_position;
142
  int color_range;
143
  int render_width;
144
  int render_height;
145
  aom_superblock_size_t superblock_size;
146
  unsigned int single_tile_decoding;
147
  int error_resilient_mode;
148
  int s_frame_mode;
149
150
  int film_grain_test_vector;
151
  const char *film_grain_table_filename;
152
  unsigned int motion_vector_unit_test;
153
#if CONFIG_FPMT_TEST
154
  unsigned int fpmt_unit_test;
155
#endif
156
  unsigned int cdf_update_mode;
157
  int enable_rect_partitions;    // enable rectangular partitions for sequence
158
  int enable_ab_partitions;      // enable AB partitions for sequence
159
  int enable_1to4_partitions;    // enable 1:4 and 4:1 partitions for sequence
160
  int min_partition_size;        // min partition size [4,8,16,32,64,128]
161
  int max_partition_size;        // max partition size [4,8,16,32,64,128]
162
  int enable_intra_edge_filter;  // enable intra-edge filter for sequence
163
  int enable_order_hint;         // enable order hint for sequence
164
  int enable_tx64;               // enable 64-pt transform usage for sequence
165
  int enable_flip_idtx;          // enable flip and identity transform types
166
  int enable_rect_tx;        // enable rectangular transform usage for sequence
167
  int enable_dist_wtd_comp;  // enable dist wtd compound for sequence
168
  int max_reference_frames;  // maximum number of references per frame
169
  int enable_reduced_reference_set;  // enable reduced set of references
170
  int enable_ref_frame_mvs;          // sequence level
171
  int allow_ref_frame_mvs;           // frame level
172
  int enable_masked_comp;            // enable masked compound for sequence
173
  int enable_onesided_comp;          // enable one sided compound for sequence
174
  int enable_interintra_comp;        // enable interintra compound for sequence
175
  int enable_smooth_interintra;      // enable smooth interintra mode usage
176
  int enable_diff_wtd_comp;          // enable diff-wtd compound usage
177
  int enable_interinter_wedge;       // enable interinter-wedge compound usage
178
  int enable_interintra_wedge;       // enable interintra-wedge compound usage
179
  int enable_global_motion;          // enable global motion usage for sequence
180
  int enable_warped_motion;          // sequence level
181
  int allow_warped_motion;           // frame level
182
  int enable_filter_intra;           // enable filter intra for sequence
183
  int enable_smooth_intra;           // enable smooth intra modes for sequence
184
  int enable_paeth_intra;            // enable Paeth intra mode for sequence
185
  int enable_cfl_intra;              // enable CFL uv intra mode for sequence
186
  int enable_directional_intra;      // enable directional modes for sequence
187
  int enable_diagonal_intra;  // enable D45 to D203 intra modes for sequence
188
  int enable_superres;
189
  int enable_overlay;  // enable overlay for filtered arf frames
190
  int enable_palette;
191
  int enable_intrabc;
192
  int enable_angle_delta;
193
#if CONFIG_DENOISE
194
  float noise_level;
195
  int noise_block_size;
196
  int enable_dnl_denoising;
197
#endif
198
199
  unsigned int enable_low_complexity_decode;
200
  unsigned int chroma_subsampling_x;
201
  unsigned int chroma_subsampling_y;
202
  int reduced_tx_type_set;
203
  int use_intra_dct_only;
204
  int use_inter_dct_only;
205
  int use_intra_default_tx_only;
206
  int enable_tx_size_search;
207
  int quant_b_adapt;
208
  unsigned int vbr_corpus_complexity_lap;
209
  AV1_LEVEL target_seq_level_idx[MAX_NUM_OPERATING_POINTS];
210
  // Bit mask to specify which tier each of the 32 possible operating points
211
  // conforms to.
212
  unsigned int tier_mask;
213
  // min_cr / 100 is the target minimum compression ratio for each frame.
214
  unsigned int min_cr;
215
  COST_UPDATE_TYPE coeff_cost_upd_freq;
216
  COST_UPDATE_TYPE mode_cost_upd_freq;
217
  COST_UPDATE_TYPE mv_cost_upd_freq;
218
  COST_UPDATE_TYPE dv_cost_upd_freq;
219
  unsigned int ext_tile_debug;
220
  unsigned int sb_multipass_unit_test;
221
  // Total number of passes. If this number is -1, then we assume passes = 1 or
222
  // 2 (passes = 1 if pass == AOM_RC_ONE_PASS and passes = 2 otherwise).
223
  int passes;
224
  int fwd_kf_dist;
225
226
  LOOPFILTER_CONTROL loopfilter_control;
227
  // Indicates if the application of post-processing filters should be skipped
228
  // on reconstructed frame.
229
  unsigned int skip_postproc_filtering;
230
  // the name of the second pass output file when passes > 2
231
  const char *two_pass_output;
232
  const char *second_pass_log;
233
  // Automatically determine whether to disable several intra tools
234
  // when "--deltaq-mode=3" is true.
235
  // Default as 0.
236
  // When set to 1, the encoder will analyze the reconstruction quality
237
  // as compared to the source image in the preprocessing pass.
238
  // If the recontruction quality is considered high enough, we disable
239
  // the following intra coding tools, for better encoding speed:
240
  // "--enable_smooth_intra",
241
  // "--enable_paeth_intra",
242
  // "--enable_cfl_intra",
243
  // "--enable_diagonal_intra".
244
  int auto_intra_tools_off;
245
  int strict_level_conformance;
246
  int kf_max_pyr_height;
247
  int sb_qp_sweep;
248
  aom_screen_detection_mode screen_detection_mode;
249
  unsigned int validate_hbd_input;
250
};
251
252
#if !CONFIG_REALTIME_ONLY
253
static const struct av1_extracfg default_extra_cfg = {
254
  0,              // cpu_used
255
  1,              // enable_auto_alt_ref
256
  0,              // enable_auto_bwd_ref
257
  0,              // noise_sensitivity
258
  0,              // sharpness
259
  0,              // enable_adaptive_sharpness
260
  0,              // static_thresh
261
  1,              // row_mt
262
  0,              // fp_mt
263
  0,              // tile_columns
264
  0,              // tile_rows
265
  0,              // auto_tiles
266
  1,              // enable_tpl_model
267
  1,              // enable_keyframe_filtering
268
  7,              // arnr_max_frames
269
  5,              // arnr_strength
270
  0,              // min_gf_interval; 0 -> default decision
271
  0,              // max_gf_interval; 0 -> default decision
272
  0,              // gf_min_pyr_height
273
  5,              // gf_max_pyr_height
274
  AOM_TUNE_PSNR,  // tuning
275
  "/usr/local/share/model/vmaf_v0.6.1.json",  // VMAF model path
276
  ".",                                        // partition info path
277
  0,                                          // enable rate guide deltaq
278
  "./rate_map.txt",                           // rate distribution input
279
  AOM_DIST_METRIC_PSNR,                       // dist_metric
280
  10,                                         // cq_level
281
  0,                                          // rc_max_intra_bitrate_pct
282
  0,                                          // rc_max_inter_bitrate_pct
283
  0,                                          // gf_cbr_boost_pct
284
  0,                                          // lossless
285
  1,                                          // enable_cdef
286
  1,                                          // enable_restoration
287
  0,                                          // force_video_mode
288
  1,                                          // enable_obmc
289
  3,                                          // disable_trellis_quant
290
  0,                                          // enable_qm
291
  DEFAULT_QM_Y,                               // qm_y
292
  DEFAULT_QM_U,                               // qm_u
293
  DEFAULT_QM_V,                               // qm_v
294
  DEFAULT_QM_FIRST,                           // qm_min
295
  DEFAULT_QM_LAST,                            // qm_max
296
  1,                                          // max number of tile groups
297
  0,                                          // mtu_size
298
  AOM_TIMING_UNSPECIFIED,       // No picture timing signaling in bitstream
299
  0,                            // frame_parallel_decoding_mode
300
  1,                            // enable dual filter
301
  0,                            // enable delta quant in chroma planes
302
  NO_AQ,                        // aq_mode
303
  DELTA_Q_OBJECTIVE,            // deltaq_mode
304
  100,                          // deltaq_strength
305
  0,                            // delta lf mode
306
  0,                            // frame_periodic_boost
307
  AOM_CONTENT_DEFAULT,          // content
308
  AOM_CICP_CP_UNSPECIFIED,      // CICP color primaries
309
  AOM_CICP_TC_UNSPECIFIED,      // CICP transfer characteristics
310
  AOM_CICP_MC_UNSPECIFIED,      // CICP matrix coefficients
311
  AOM_CSP_UNKNOWN,              // chroma sample position
312
  0,                            // color range
313
  0,                            // render width
314
  0,                            // render height
315
  AOM_SUPERBLOCK_SIZE_DYNAMIC,  // superblock_size
316
  1,                            // this depends on large_scale_tile.
317
  0,                            // error_resilient_mode off by default.
318
  0,                            // s_frame_mode off by default.
319
  0,                            // film_grain_test_vector
320
  NULL,                         // film_grain_table_filename
321
  0,                            // motion_vector_unit_test
322
#if CONFIG_FPMT_TEST
323
  0,  // fpmt_unit_test
324
#endif
325
  1,    // CDF update mode
326
  1,    // enable rectangular partitions
327
  1,    // enable ab shape partitions
328
  1,    // enable 1:4 and 4:1 partitions
329
  4,    // min_partition_size
330
  128,  // max_partition_size
331
  1,    // enable intra edge filter
332
  1,    // frame order hint
333
  1,    // enable 64-pt transform usage
334
  1,    // enable flip and identity transform
335
  1,    // enable rectangular transform usage
336
  1,    // dist-wtd compound
337
  7,    // max_reference_frames
338
  0,    // enable_reduced_reference_set
339
  1,    // enable_ref_frame_mvs sequence level
340
  1,    // allow ref_frame_mvs frame level
341
  1,    // enable masked compound at sequence level
342
  1,    // enable one sided compound at sequence level
343
  1,    // enable interintra compound at sequence level
344
  1,    // enable smooth interintra mode
345
  1,    // enable difference-weighted compound
346
  1,    // enable interinter wedge compound
347
  1,    // enable interintra wedge compound
348
  1,    // enable_global_motion usage
349
  1,    // enable_warped_motion at sequence level
350
  1,    // allow_warped_motion at frame level
351
  1,    // enable filter intra at sequence level
352
  1,    // enable smooth intra modes usage for sequence
353
  1,    // enable Paeth intra mode usage for sequence
354
  1,    // enable CFL uv intra mode usage for sequence
355
  1,    // enable directional intra mode usage for sequence
356
  1,    // enable D45 to D203 intra mode usage for sequence
357
  1,    // superres
358
  1,    // enable overlay
359
  1,    // enable palette
360
  1,    // enable intrabc
361
  1,    // enable angle delta
362
#if CONFIG_DENOISE
363
  0,   // noise_level
364
  32,  // noise_block_size
365
  1,   // enable_dnl_denoising
366
#endif
367
368
  0,  // enable_low_complexity_decode
369
  0,  // chroma_subsampling_x
370
  0,  // chroma_subsampling_y
371
  0,  // reduced_tx_type_set
372
  0,  // use_intra_dct_only
373
  0,  // use_inter_dct_only
374
  0,  // use_intra_default_tx_only
375
  1,  // enable_tx_size_search
376
  0,  // quant_b_adapt
377
  0,  // vbr_corpus_complexity_lap
378
  {
379
      SEQ_LEVEL_MAX, SEQ_LEVEL_MAX, SEQ_LEVEL_MAX, SEQ_LEVEL_MAX, SEQ_LEVEL_MAX,
380
      SEQ_LEVEL_MAX, SEQ_LEVEL_MAX, SEQ_LEVEL_MAX, SEQ_LEVEL_MAX, SEQ_LEVEL_MAX,
381
      SEQ_LEVEL_MAX, SEQ_LEVEL_MAX, SEQ_LEVEL_MAX, SEQ_LEVEL_MAX, SEQ_LEVEL_MAX,
382
      SEQ_LEVEL_MAX, SEQ_LEVEL_MAX, SEQ_LEVEL_MAX, SEQ_LEVEL_MAX, SEQ_LEVEL_MAX,
383
      SEQ_LEVEL_MAX, SEQ_LEVEL_MAX, SEQ_LEVEL_MAX, SEQ_LEVEL_MAX, SEQ_LEVEL_MAX,
384
      SEQ_LEVEL_MAX, SEQ_LEVEL_MAX, SEQ_LEVEL_MAX, SEQ_LEVEL_MAX, SEQ_LEVEL_MAX,
385
      SEQ_LEVEL_MAX, SEQ_LEVEL_MAX,
386
  },               // target_seq_level_idx
387
  0,               // tier_mask
388
  0,               // min_cr
389
  COST_UPD_SB,     // coeff_cost_upd_freq
390
  COST_UPD_SB,     // mode_cost_upd_freq
391
  COST_UPD_SB,     // mv_cost_upd_freq
392
  COST_UPD_SB,     // dv_cost_upd_freq
393
  0,               // ext_tile_debug
394
  0,               // sb_multipass_unit_test
395
  -1,              // passes
396
  -1,              // fwd_kf_dist
397
  LOOPFILTER_ALL,  // loopfilter_control
398
  0,               // skip_postproc_filtering
399
  NULL,            // two_pass_output
400
  NULL,            // second_pass_log
401
  0,               // auto_intra_tools_off
402
  0,               // strict_level_conformance
403
  -1,              // kf_max_pyr_height
404
  0,               // sb_qp_sweep
405
  AOM_SCREEN_DETECTION_STANDARD,
406
  1,  // validate_hbd_input
407
};
408
#else
409
// Some settings are changed for realtime only build.
410
static const struct av1_extracfg default_extra_cfg = {
411
  10,             // cpu_used
412
  1,              // enable_auto_alt_ref
413
  0,              // enable_auto_bwd_ref
414
  0,              // noise_sensitivity
415
  0,              // sharpness
416
  0,              // enable_adaptive_sharpness
417
  0,              // static_thresh
418
  1,              // row_mt
419
  0,              // fp_mt
420
  0,              // tile_columns
421
  0,              // tile_rows
422
  0,              // auto_tiles
423
  0,              // enable_tpl_model
424
  0,              // enable_keyframe_filtering
425
  7,              // arnr_max_frames
426
  5,              // arnr_strength
427
  0,              // min_gf_interval; 0 -> default decision
428
  0,              // max_gf_interval; 0 -> default decision
429
  0,              // gf_min_pyr_height
430
  5,              // gf_max_pyr_height
431
  AOM_TUNE_PSNR,  // tuning
432
  "/usr/local/share/model/vmaf_v0.6.1.json",  // VMAF model path
433
  ".",                                        // partition info path
434
  0,                                          // enable rate guide deltaq
435
  "./rate_map.txt",                           // rate distribution input
436
  AOM_DIST_METRIC_PSNR,                       // dist_metric
437
  10,                                         // cq_level
438
  300,                                        // rc_max_intra_bitrate_pct
439
  0,                                          // rc_max_inter_bitrate_pct
440
  0,                                          // gf_cbr_boost_pct
441
  0,                                          // lossless
442
  1,                                          // enable_cdef
443
  0,                                          // enable_restoration
444
  0,                                          // force_video_mode
445
  0,                                          // enable_obmc
446
  3,                                          // disable_trellis_quant
447
  0,                                          // enable_qm
448
  DEFAULT_QM_Y,                               // qm_y
449
  DEFAULT_QM_U,                               // qm_u
450
  DEFAULT_QM_V,                               // qm_v
451
  DEFAULT_QM_FIRST,                           // qm_min
452
  DEFAULT_QM_LAST,                            // qm_max
453
  1,                                          // max number of tile groups
454
  0,                                          // mtu_size
455
  AOM_TIMING_UNSPECIFIED,       // No picture timing signaling in bitstream
456
  0,                            // frame_parallel_decoding_mode
457
  0,                            // enable dual filter
458
  0,                            // enable delta quant in chroma planes
459
  CYCLIC_REFRESH_AQ,            // aq_mode
460
  NO_DELTA_Q,                   // deltaq_mode
461
  100,                          // deltaq_strength
462
  0,                            // delta lf mode
463
  0,                            // frame_periodic_boost
464
  AOM_CONTENT_DEFAULT,          // content
465
  AOM_CICP_CP_UNSPECIFIED,      // CICP color primaries
466
  AOM_CICP_TC_UNSPECIFIED,      // CICP transfer characteristics
467
  AOM_CICP_MC_UNSPECIFIED,      // CICP matrix coefficients
468
  AOM_CSP_UNKNOWN,              // chroma sample position
469
  0,                            // color range
470
  0,                            // render width
471
  0,                            // render height
472
  AOM_SUPERBLOCK_SIZE_DYNAMIC,  // superblock_size
473
  1,                            // this depends on large_scale_tile.
474
  0,                            // error_resilient_mode off by default.
475
  0,                            // s_frame_mode off by default.
476
  0,                            // film_grain_test_vector
477
  NULL,                         // film_grain_table_filename
478
  0,                            // motion_vector_unit_test
479
#if CONFIG_FPMT_TEST
480
  0,  // fpmt_unit_test
481
#endif
482
  1,    // CDF update mode
483
  0,    // enable rectangular partitions
484
  0,    // enable ab shape partitions
485
  0,    // enable 1:4 and 4:1 partitions
486
  4,    // min_partition_size
487
  128,  // max_partition_size
488
  0,    // enable intra edge filter
489
  0,    // frame order hint
490
  0,    // enable 64-pt transform usage
491
  1,    // enable flip and identity transform
492
  1,    // enable rectangular transform usage
493
  0,    // dist-wtd compound
494
  3,    // max_reference_frames
495
  0,    // enable_reduced_reference_set
496
  0,    // enable_ref_frame_mvs sequence level
497
  0,    // allow ref_frame_mvs frame level
498
  0,    // enable masked compound at sequence level
499
  0,    // enable one sided compound at sequence level
500
  0,    // enable interintra compound at sequence level
501
  0,    // enable smooth interintra mode
502
  0,    // enable difference-weighted compound
503
  0,    // enable interinter wedge compound
504
  0,    // enable interintra wedge compound
505
  0,    // enable_global_motion usage
506
  0,    // enable_warped_motion at sequence level
507
  0,    // allow_warped_motion at frame level
508
  0,    // enable filter intra at sequence level
509
  0,    // enable smooth intra modes usage for sequence
510
  0,    // enable Paeth intra mode usage for sequence
511
  0,    // enable CFL uv intra mode usage for sequence
512
  1,    // enable directional intra mode usage for sequence
513
  1,    // enable D45 to D203 intra mode usage for sequence
514
  0,    // superres
515
  0,    // enable overlay
516
  1,    // enable palette
517
  0,    // enable intrabc
518
  0,    // enable angle delta
519
#if CONFIG_DENOISE
520
  0,   // noise_level
521
  32,  // noise_block_size
522
  1,   // enable_dnl_denoising
523
#endif
524
525
  0,  // enable_low_complexity_decode
526
  0,  // chroma_subsampling_x
527
  0,  // chroma_subsampling_y
528
  0,  // reduced_tx_type_set
529
  0,  // use_intra_dct_only
530
  0,  // use_inter_dct_only
531
  1,  // use_intra_default_tx_only
532
  1,  // enable_tx_size_search
533
  0,  // quant_b_adapt
534
  0,  // vbr_corpus_complexity_lap
535
  {
536
      SEQ_LEVEL_MAX, SEQ_LEVEL_MAX, SEQ_LEVEL_MAX, SEQ_LEVEL_MAX, SEQ_LEVEL_MAX,
537
      SEQ_LEVEL_MAX, SEQ_LEVEL_MAX, SEQ_LEVEL_MAX, SEQ_LEVEL_MAX, SEQ_LEVEL_MAX,
538
      SEQ_LEVEL_MAX, SEQ_LEVEL_MAX, SEQ_LEVEL_MAX, SEQ_LEVEL_MAX, SEQ_LEVEL_MAX,
539
      SEQ_LEVEL_MAX, SEQ_LEVEL_MAX, SEQ_LEVEL_MAX, SEQ_LEVEL_MAX, SEQ_LEVEL_MAX,
540
      SEQ_LEVEL_MAX, SEQ_LEVEL_MAX, SEQ_LEVEL_MAX, SEQ_LEVEL_MAX, SEQ_LEVEL_MAX,
541
      SEQ_LEVEL_MAX, SEQ_LEVEL_MAX, SEQ_LEVEL_MAX, SEQ_LEVEL_MAX, SEQ_LEVEL_MAX,
542
      SEQ_LEVEL_MAX, SEQ_LEVEL_MAX,
543
  },               // target_seq_level_idx
544
  0,               // tier_mask
545
  0,               // min_cr
546
  COST_UPD_OFF,    // coeff_cost_upd_freq
547
  COST_UPD_OFF,    // mode_cost_upd_freq
548
  COST_UPD_OFF,    // mv_cost_upd_freq
549
  COST_UPD_OFF,    // dv_cost_upd_freq
550
  0,               // ext_tile_debug
551
  0,               // sb_multipass_unit_test
552
  -1,              // passes
553
  -1,              // fwd_kf_dist
554
  LOOPFILTER_ALL,  // loopfilter_control
555
  0,               // skip_postproc_filtering
556
  NULL,            // two_pass_output
557
  NULL,            // second_pass_log
558
  0,               // auto_intra_tools_off
559
  0,               // strict_level_conformance
560
  -1,              // kf_max_pyr_height
561
  0,               // sb_qp_sweep
562
  AOM_SCREEN_DETECTION_STANDARD,
563
  1,  // validate_hbd_input
564
};
565
#endif
566
567
struct aom_codec_alg_priv {
568
  aom_codec_priv_t base;
569
  aom_codec_enc_cfg_t cfg;
570
  struct av1_extracfg extra_cfg;
571
  aom_rational64_t timestamp_ratio;
572
  aom_codec_pts_t pts_offset;
573
  unsigned char pts_offset_initialized;
574
  AV1EncoderConfig oxcf;
575
  AV1_PRIMARY *ppi;
576
  unsigned char *cx_data;
577
  size_t cx_data_sz;
578
  size_t pending_cx_data_sz;
579
  aom_image_t preview_img;
580
  aom_enc_frame_flags_t next_frame_flags;
581
  aom_codec_pkt_list_decl(256) pkt_list;
582
  unsigned int fixed_kf_cntr;
583
  // BufferPool that holds all reference frames.
584
  BufferPool *buffer_pool;
585
586
  // lookahead instance variables
587
  BufferPool *buffer_pool_lap;
588
  FIRSTPASS_STATS *frame_stats_buffer;
589
  // Number of stats buffers required for look ahead
590
  int num_lap_buffers;
591
  STATS_BUFFER_CTX stats_buf_context;
592
  bool monochrome_on_init;
593
};
594
595
0
static inline int gcd(int64_t a, int b) {
596
0
  int remainder;
597
0
  while (b > 0) {
598
0
    remainder = (int)(a % b);
599
0
    a = b;
600
0
    b = remainder;
601
0
  }
602
603
0
  return (int)a;
604
0
}
605
606
0
static void reduce_ratio(aom_rational64_t *ratio) {
607
0
  const int denom = gcd(ratio->num, ratio->den);
608
0
  ratio->num /= denom;
609
0
  ratio->den /= denom;
610
0
}
611
612
// Called by encoder_encode() only. Must not be called by encoder_init()
613
// because the `error` paramerer will be destroyed by aom_codec_enc_init_ver()
614
// after encoder_init() returns an error. See the "IMPORTANT" comment in
615
// aom_codec_enc_init_ver().
616
static aom_codec_err_t update_error_state(
617
0
    aom_codec_alg_priv_t *ctx, const struct aom_internal_error_info *error) {
618
0
  const aom_codec_err_t res = error->error_code;
619
620
0
  if (res != AOM_CODEC_OK)
621
0
    ctx->base.err_detail = error->has_detail ? error->detail : NULL;
622
623
0
  return res;
624
0
}
625
626
// This function deep copies a string src to *dst. For default string we will
627
// use a string literal, and otherwise we will allocate memory for the string.
628
static aom_codec_err_t allocate_and_set_string(const char *src,
629
                                               const char *default_src,
630
                                               const char **dst,
631
0
                                               char *err_detail) {
632
0
  if (!src) {
633
0
    snprintf(err_detail, ARG_ERR_MSG_MAX_LEN,
634
0
             "Null pointer given to a string parameter.");
635
0
    return AOM_CODEC_INVALID_PARAM;
636
0
  }
637
0
  if (*dst && strcmp(src, *dst) == 0) return AOM_CODEC_OK;
638
  // If the input is exactly the same as default, we will use the string
639
  // literal, so do not free here.
640
0
  if (*dst != default_src) {
641
0
    aom_free((void *)*dst);
642
0
  }
643
644
0
  if (default_src && strcmp(src, default_src) == 0) {
645
    // default_src should be a string literal
646
0
    *dst = default_src;
647
0
  } else {
648
0
    size_t len = strlen(src) + 1;
649
0
    char *tmp = aom_malloc(len * sizeof(*tmp));
650
0
    if (!tmp) {
651
0
      snprintf(err_detail, ARG_ERR_MSG_MAX_LEN,
652
0
               "Failed to allocate memory for copying parameters.");
653
0
      return AOM_CODEC_MEM_ERROR;
654
0
    }
655
0
    memcpy(tmp, src, len);
656
0
    *dst = tmp;
657
0
  }
658
0
  return 0;
659
0
}
660
661
#undef ERROR
662
#define ERROR(str)                  \
663
0
  do {                              \
664
0
    ctx->base.err_detail = str;     \
665
0
    return AOM_CODEC_INVALID_PARAM; \
666
0
  } while (0)
667
668
#define RANGE_CHECK(p, memb, lo, hi)                   \
669
0
  do {                                                 \
670
0
    if (!((p)->memb >= (lo) && (p)->memb <= (hi)))     \
671
0
      ERROR(#memb " out of range [" #lo ".." #hi "]"); \
672
0
  } while (0)
673
674
#define RANGE_CHECK_HI(p, memb, hi)                                     \
675
0
  do {                                                                  \
676
0
    if (!((p)->memb <= (hi))) ERROR(#memb " out of range [.." #hi "]"); \
677
0
  } while (0)
678
679
#define RANGE_CHECK_BOOL(p, memb)                                     \
680
0
  do {                                                                \
681
0
    if (!!((p)->memb) != (p)->memb) ERROR(#memb " expected boolean"); \
682
0
  } while (0)
683
684
static aom_codec_err_t validate_config(aom_codec_alg_priv_t *ctx,
685
                                       const aom_codec_enc_cfg_t *cfg,
686
0
                                       const struct av1_extracfg *extra_cfg) {
687
0
  RANGE_CHECK(cfg, g_w, 1, 65536);                        // 16 bits available
688
0
  RANGE_CHECK(cfg, g_h, 1, 65536);                        // 16 bits available
689
0
  RANGE_CHECK_HI(cfg, g_forced_max_frame_width, 65536);   // 16 bits available
690
0
  RANGE_CHECK_HI(cfg, g_forced_max_frame_height, 65536);  // 16 bits available
691
0
  if (cfg->g_forced_max_frame_width) {
692
0
    RANGE_CHECK_HI(cfg, g_w, cfg->g_forced_max_frame_width);
693
0
  }
694
0
  if (cfg->g_forced_max_frame_height) {
695
0
    RANGE_CHECK_HI(cfg, g_h, cfg->g_forced_max_frame_height);
696
0
  }
697
  // To avoid integer overflows when multiplying width by height (or values
698
  // derived from width and height) using the int type, impose a maximum frame
699
  // area (width * height) of 2^30.
700
0
  const unsigned int max_frame_width =
701
0
      cfg->g_forced_max_frame_width ? cfg->g_forced_max_frame_width : cfg->g_w;
702
0
  const unsigned int max_frame_height = cfg->g_forced_max_frame_height
703
0
                                            ? cfg->g_forced_max_frame_height
704
0
                                            : cfg->g_h;
705
0
  const int64_t max_frame_area = (int64_t)max_frame_width * max_frame_height;
706
0
  if (max_frame_area > (1 << 30)) {
707
0
    ERROR("max_frame_area out of range [..2^30]");
708
0
  }
709
0
  RANGE_CHECK(cfg, g_timebase.den, 1, 1000000000);
710
0
  RANGE_CHECK(cfg, g_timebase.num, 1, 1000000000);
711
0
  RANGE_CHECK_HI(cfg, g_profile, MAX_PROFILES - 1);
712
713
0
  RANGE_CHECK_HI(cfg, rc_target_bitrate, 2000000);
714
0
  RANGE_CHECK_HI(cfg, rc_max_quantizer, 63);
715
0
  RANGE_CHECK_HI(cfg, rc_min_quantizer, cfg->rc_max_quantizer);
716
0
  RANGE_CHECK_BOOL(extra_cfg, lossless);
717
0
  RANGE_CHECK_HI(extra_cfg, aq_mode, AQ_MODE_COUNT - 1);
718
0
  RANGE_CHECK_HI(extra_cfg, deltaq_mode, DELTA_Q_MODE_COUNT - 1);
719
0
  RANGE_CHECK_HI(extra_cfg, deltalf_mode, 1);
720
0
  RANGE_CHECK_HI(extra_cfg, frame_periodic_boost, 1);
721
#if CONFIG_REALTIME_ONLY
722
  RANGE_CHECK(cfg, g_usage, AOM_USAGE_REALTIME, AOM_USAGE_REALTIME);
723
#else
724
0
  RANGE_CHECK_HI(cfg, g_usage, AOM_USAGE_ALL_INTRA);
725
0
#endif
726
0
  RANGE_CHECK_HI(cfg, g_threads, MAX_NUM_THREADS);
727
0
  RANGE_CHECK(cfg, rc_end_usage, AOM_VBR, AOM_Q);
728
0
  RANGE_CHECK_HI(cfg, rc_undershoot_pct, 100);
729
0
  RANGE_CHECK_HI(cfg, rc_overshoot_pct, 100);
730
0
  RANGE_CHECK_HI(cfg, rc_2pass_vbr_bias_pct, 100);
731
0
  RANGE_CHECK(cfg, kf_mode, AOM_KF_DISABLED, AOM_KF_AUTO);
732
0
  RANGE_CHECK_HI(cfg, rc_dropframe_thresh, 100);
733
0
  RANGE_CHECK(cfg, g_pass, AOM_RC_ONE_PASS, AOM_RC_THIRD_PASS);
734
0
  RANGE_CHECK_HI(cfg, g_lag_in_frames, MAX_LAG_BUFFERS);
735
0
  if (cfg->g_usage == AOM_USAGE_ALL_INTRA) {
736
0
    RANGE_CHECK_HI(cfg, g_lag_in_frames, 0);
737
0
    RANGE_CHECK_HI(cfg, kf_max_dist, 0);
738
0
  }
739
0
  RANGE_CHECK_HI(extra_cfg, min_gf_interval, MAX_LAG_BUFFERS - 1);
740
0
  RANGE_CHECK_HI(extra_cfg, max_gf_interval, MAX_LAG_BUFFERS - 1);
741
0
  if (extra_cfg->max_gf_interval > 0) {
742
0
    RANGE_CHECK(extra_cfg, max_gf_interval,
743
0
                AOMMAX(2, extra_cfg->min_gf_interval), (MAX_LAG_BUFFERS - 1));
744
0
  }
745
0
  RANGE_CHECK_HI(extra_cfg, gf_min_pyr_height, 5);
746
0
  RANGE_CHECK_HI(extra_cfg, gf_max_pyr_height, 5);
747
0
  if (extra_cfg->gf_min_pyr_height > extra_cfg->gf_max_pyr_height) {
748
0
    ERROR(
749
0
        "gf_min_pyr_height must be less than or equal to "
750
0
        "gf_max_pyramid_height");
751
0
  }
752
753
0
  RANGE_CHECK_HI(cfg, rc_resize_mode, RESIZE_MODES - 1);
754
0
  RANGE_CHECK(cfg, rc_resize_denominator, SCALE_NUMERATOR,
755
0
              SCALE_NUMERATOR << 1);
756
0
  RANGE_CHECK(cfg, rc_resize_kf_denominator, SCALE_NUMERATOR,
757
0
              SCALE_NUMERATOR << 1);
758
0
  RANGE_CHECK_HI(cfg, rc_superres_mode, AOM_SUPERRES_AUTO);
759
0
  RANGE_CHECK(cfg, rc_superres_denominator, SCALE_NUMERATOR,
760
0
              SCALE_NUMERATOR << 1);
761
0
  RANGE_CHECK(cfg, rc_superres_kf_denominator, SCALE_NUMERATOR,
762
0
              SCALE_NUMERATOR << 1);
763
0
  RANGE_CHECK(cfg, rc_superres_qthresh, 1, 63);
764
0
  RANGE_CHECK(cfg, rc_superres_kf_qthresh, 1, 63);
765
0
  RANGE_CHECK_HI(extra_cfg, cdf_update_mode, 2);
766
767
0
  RANGE_CHECK_HI(extra_cfg, motion_vector_unit_test, 2);
768
#if CONFIG_FPMT_TEST
769
  RANGE_CHECK_HI(extra_cfg, fpmt_unit_test, 1);
770
#endif
771
0
  RANGE_CHECK_HI(extra_cfg, sb_multipass_unit_test, 1);
772
0
  RANGE_CHECK_HI(extra_cfg, ext_tile_debug, 1);
773
0
  RANGE_CHECK_HI(extra_cfg, enable_auto_alt_ref, 1);
774
0
  RANGE_CHECK_HI(extra_cfg, enable_auto_bwd_ref, 2);
775
0
  RANGE_CHECK(extra_cfg, cpu_used, 0,
776
0
              (cfg->g_usage == AOM_USAGE_REALTIME) ? 12 : 9);
777
0
  RANGE_CHECK_HI(extra_cfg, noise_sensitivity, 6);
778
0
  RANGE_CHECK(extra_cfg, superblock_size, AOM_SUPERBLOCK_SIZE_64X64,
779
0
              AOM_SUPERBLOCK_SIZE_DYNAMIC);
780
0
  RANGE_CHECK_HI(cfg, large_scale_tile, 1);
781
0
  RANGE_CHECK_HI(extra_cfg, single_tile_decoding, 1);
782
0
  RANGE_CHECK_HI(extra_cfg, enable_rate_guide_deltaq, 1);
783
784
0
  RANGE_CHECK_HI(extra_cfg, row_mt, 1);
785
0
  RANGE_CHECK_HI(extra_cfg, fp_mt, 1);
786
787
0
  RANGE_CHECK_HI(extra_cfg, tile_columns, 6);
788
0
  RANGE_CHECK_HI(extra_cfg, tile_rows, 6);
789
0
  RANGE_CHECK_HI(extra_cfg, auto_tiles, 1);
790
791
0
  RANGE_CHECK_HI(cfg, monochrome, 1);
792
793
0
  if (cfg->large_scale_tile && extra_cfg->aq_mode)
794
0
    ERROR(
795
0
        "Adaptive quantization are not supported in large scale tile "
796
0
        "coding.");
797
798
0
  RANGE_CHECK_HI(extra_cfg, sharpness, 7);
799
0
  RANGE_CHECK_HI(extra_cfg, enable_adaptive_sharpness, 1);
800
0
  RANGE_CHECK_HI(extra_cfg, arnr_max_frames, 15);
801
0
  RANGE_CHECK_HI(extra_cfg, arnr_strength, 6);
802
0
  RANGE_CHECK_HI(extra_cfg, cq_level, 63);
803
0
  RANGE_CHECK(cfg, g_bit_depth, AOM_BITS_8, AOM_BITS_12);
804
0
  RANGE_CHECK(cfg, g_input_bit_depth, 8, 12);
805
0
  if (cfg->g_input_bit_depth > (unsigned int)cfg->g_bit_depth)
806
0
    ERROR("Input bit-depth must not exceed codec bit-depth");
807
0
  RANGE_CHECK(extra_cfg, content, AOM_CONTENT_DEFAULT, AOM_CONTENT_INVALID - 1);
808
809
0
  if (cfg->g_pass >= AOM_RC_SECOND_PASS) {
810
0
    const size_t packet_sz = sizeof(FIRSTPASS_STATS);
811
0
    const int n_packets = (int)(cfg->rc_twopass_stats_in.sz / packet_sz);
812
0
    const FIRSTPASS_STATS *stats;
813
814
0
    if (cfg->rc_twopass_stats_in.buf == NULL)
815
0
      ERROR("rc_twopass_stats_in.buf not set.");
816
817
0
    if (cfg->rc_twopass_stats_in.sz % packet_sz)
818
0
      ERROR("rc_twopass_stats_in.sz indicates truncated packet.");
819
820
0
    if (cfg->rc_twopass_stats_in.sz < 2 * packet_sz)
821
0
      ERROR("rc_twopass_stats_in requires at least two packets.");
822
823
0
    stats =
824
0
        (const FIRSTPASS_STATS *)cfg->rc_twopass_stats_in.buf + n_packets - 1;
825
826
0
    if ((int)(stats->count + 0.5) != n_packets - 1)
827
0
      ERROR("rc_twopass_stats_in missing EOS stats packet");
828
0
  }
829
830
0
  if (extra_cfg->passes != -1 && cfg->g_pass == AOM_RC_ONE_PASS &&
831
0
      extra_cfg->passes != 1) {
832
0
    ERROR("One pass encoding but passes != 1.");
833
0
  }
834
835
0
  if (extra_cfg->passes != -1 && (int)cfg->g_pass > extra_cfg->passes) {
836
0
    ERROR("Current pass is larger than total number of passes.");
837
0
  }
838
839
0
  if (cfg->g_profile == (unsigned int)PROFILE_1 && cfg->monochrome) {
840
0
    ERROR("Monochrome is not supported in profile 1");
841
0
  }
842
843
0
  if (cfg->g_profile <= (unsigned int)PROFILE_1 &&
844
0
      cfg->g_bit_depth > AOM_BITS_10) {
845
0
    ERROR("Codec bit-depth 12 not supported in profile < 2");
846
0
  }
847
848
0
  if (cfg->rc_end_usage == AOM_Q) {
849
0
    RANGE_CHECK_HI(cfg, use_fixed_qp_offsets, 2);
850
0
  } else {
851
0
    if (cfg->use_fixed_qp_offsets > 0) {
852
0
      ERROR("--use_fixed_qp_offsets can only be used with --end-usage=q");
853
0
    }
854
0
  }
855
856
0
  RANGE_CHECK(extra_cfg, color_primaries, AOM_CICP_CP_BT_709,
857
0
              AOM_CICP_CP_EBU_3213);  // Need to check range more precisely to
858
                                      // check for reserved values?
859
0
  RANGE_CHECK(extra_cfg, transfer_characteristics, AOM_CICP_TC_BT_709,
860
0
              AOM_CICP_TC_HLG);
861
0
  RANGE_CHECK(extra_cfg, matrix_coefficients, AOM_CICP_MC_IDENTITY,
862
0
              AOM_CICP_MC_YCGCO_RO);
863
0
  RANGE_CHECK(extra_cfg, color_range, 0, 1);
864
865
  /* Average corpus complexity is supported only in the case of single pass
866
   * VBR*/
867
0
  if (cfg->g_pass == AOM_RC_ONE_PASS && cfg->rc_end_usage == AOM_VBR)
868
0
    RANGE_CHECK_HI(extra_cfg, vbr_corpus_complexity_lap,
869
0
                   MAX_VBR_CORPUS_COMPLEXITY);
870
0
  else if (extra_cfg->vbr_corpus_complexity_lap != 0)
871
0
    ERROR(
872
0
        "VBR corpus complexity is supported only in the case of single pass "
873
0
        "VBR mode.");
874
875
0
#if !CONFIG_TUNE_BUTTERAUGLI
876
0
  if (extra_cfg->tuning == AOM_TUNE_BUTTERAUGLI) {
877
0
    ERROR(
878
0
        "This error may be related to the wrong configuration options: try to "
879
0
        "set -DCONFIG_TUNE_BUTTERAUGLI=1 at the time CMake is run.");
880
0
  }
881
0
#endif
882
883
0
#if !CONFIG_TUNE_VMAF
884
0
  if (extra_cfg->tuning >= AOM_TUNE_VMAF_WITH_PREPROCESSING &&
885
0
      extra_cfg->tuning <= AOM_TUNE_VMAF_NEG_MAX_GAIN) {
886
0
    ERROR(
887
0
        "This error may be related to the wrong configuration options: try to "
888
0
        "set -DCONFIG_TUNE_VMAF=1 at the time CMake is run.");
889
0
  }
890
0
#endif
891
892
0
  RANGE_CHECK(extra_cfg, tuning, AOM_TUNE_PSNR, AOM_TUNE_SSIMULACRA2);
893
894
0
  RANGE_CHECK(extra_cfg, dist_metric, AOM_DIST_METRIC_PSNR,
895
0
              AOM_DIST_METRIC_QM_PSNR);
896
897
0
  RANGE_CHECK(extra_cfg, timing_info_type, AOM_TIMING_UNSPECIFIED,
898
0
              AOM_TIMING_DEC_MODEL);
899
900
0
  RANGE_CHECK(extra_cfg, film_grain_test_vector, 0, 16);
901
902
0
  if (extra_cfg->lossless) {
903
0
    if (extra_cfg->aq_mode != 0)
904
0
      ERROR("Only --aq_mode=0 can be used with --lossless=1.");
905
0
    if (extra_cfg->enable_chroma_deltaq)
906
0
      ERROR("Only --enable_chroma_deltaq=0 can be used with --lossless=1.");
907
0
  }
908
909
0
  RANGE_CHECK(extra_cfg, max_reference_frames, 3, 7);
910
0
  RANGE_CHECK(extra_cfg, enable_reduced_reference_set, 0, 1);
911
912
0
  RANGE_CHECK_HI(extra_cfg, enable_low_complexity_decode, 1);
913
0
  RANGE_CHECK_HI(extra_cfg, chroma_subsampling_x, 1);
914
0
  RANGE_CHECK_HI(extra_cfg, chroma_subsampling_y, 1);
915
  // 6.4.2 Color config semantics
916
  // If matrix_coefficients is equal to MC_IDENTITY, it is a requirement of
917
  // bitstream conformance that subsampling_x is equal to 0 and subsampling_y
918
  // is equal to 0.
919
0
  if (extra_cfg->matrix_coefficients == AOM_CICP_MC_IDENTITY &&
920
0
      (extra_cfg->chroma_subsampling_x != 0 ||
921
0
       extra_cfg->chroma_subsampling_y != 0)) {
922
0
    ERROR("Subsampling must be 0 with AOM_CICP_MC_IDENTITY.");
923
0
  }
924
925
0
  RANGE_CHECK_HI(extra_cfg, disable_trellis_quant, 3);
926
0
  RANGE_CHECK(extra_cfg, coeff_cost_upd_freq, 0, 3);
927
0
  RANGE_CHECK(extra_cfg, mode_cost_upd_freq, 0, 3);
928
0
  RANGE_CHECK(extra_cfg, mv_cost_upd_freq, 0, 3);
929
0
  RANGE_CHECK(extra_cfg, dv_cost_upd_freq, 0, 3);
930
931
0
  RANGE_CHECK(extra_cfg, min_partition_size, 4, 128);
932
0
  RANGE_CHECK(extra_cfg, max_partition_size, 4, 128);
933
0
  RANGE_CHECK_HI(extra_cfg, min_partition_size, extra_cfg->max_partition_size);
934
935
0
  for (int i = 0; i < MAX_NUM_OPERATING_POINTS; ++i) {
936
0
    const int level_idx = extra_cfg->target_seq_level_idx[i];
937
0
    if (!is_valid_seq_level_idx(level_idx) &&
938
0
        level_idx != SEQ_LEVEL_KEEP_STATS) {
939
0
      ERROR("Target sequence level index is invalid");
940
0
    }
941
0
  }
942
943
0
  RANGE_CHECK_HI(extra_cfg, deltaq_strength, 1000);
944
0
  RANGE_CHECK_HI(extra_cfg, loopfilter_control, 3);
945
0
  RANGE_CHECK_BOOL(extra_cfg, skip_postproc_filtering);
946
0
  RANGE_CHECK_HI(extra_cfg, enable_cdef, 3);
947
0
  RANGE_CHECK_BOOL(extra_cfg, auto_intra_tools_off);
948
0
  RANGE_CHECK_BOOL(extra_cfg, strict_level_conformance);
949
0
  RANGE_CHECK_BOOL(extra_cfg, sb_qp_sweep);
950
951
0
  RANGE_CHECK(extra_cfg, kf_max_pyr_height, -1, 5);
952
0
  if (extra_cfg->kf_max_pyr_height != -1 &&
953
0
      extra_cfg->kf_max_pyr_height < (int)extra_cfg->gf_min_pyr_height) {
954
0
    ERROR(
955
0
        "The value of kf-max-pyr-height should not be smaller than "
956
0
        "gf-min-pyr-height");
957
0
  }
958
959
0
  RANGE_CHECK(extra_cfg, screen_detection_mode, 1, 2);
960
0
  return AOM_CODEC_OK;
961
0
}
962
963
static aom_codec_err_t validate_img(aom_codec_alg_priv_t *ctx,
964
0
                                    const aom_image_t *img) {
965
0
  switch (img->fmt) {
966
0
    case AOM_IMG_FMT_YV12:
967
0
    case AOM_IMG_FMT_NV12:
968
0
    case AOM_IMG_FMT_I420:
969
0
    case AOM_IMG_FMT_YV1216:
970
0
    case AOM_IMG_FMT_I42016: break;
971
0
    case AOM_IMG_FMT_I444:
972
0
    case AOM_IMG_FMT_I44416:
973
0
      if (ctx->cfg.g_profile == (unsigned int)PROFILE_0 &&
974
0
          !ctx->cfg.monochrome) {
975
0
        ERROR("Invalid image format. I444 images not supported in profile.");
976
0
      }
977
0
      break;
978
0
    case AOM_IMG_FMT_I422:
979
0
    case AOM_IMG_FMT_I42216:
980
0
      if (ctx->cfg.g_profile != (unsigned int)PROFILE_2) {
981
0
        ERROR("Invalid image format. I422 images not supported in profile.");
982
0
      }
983
0
      break;
984
0
    default:
985
0
      ERROR(
986
0
          "Invalid image format. Only YV12, NV12, I420, I422, I444 images are "
987
0
          "supported.");
988
0
      break;
989
0
  }
990
991
0
  if (img->d_w != ctx->cfg.g_w || img->d_h != ctx->cfg.g_h)
992
0
    ERROR("Image size must match encoder init configuration size");
993
0
  assert(img->fmt & AOM_IMG_FMT_PLANAR);
994
0
  if (!ctx->cfg.monochrome && img->fmt != AOM_IMG_FMT_NV12 &&
995
0
      img->stride[AOM_PLANE_U] != img->stride[AOM_PLANE_V])
996
0
    ERROR("Image U/V strides must match");
997
998
  // 6.4.2 Color config semantics
999
  // If matrix_coefficients is equal to MC_IDENTITY, it is a requirement of
1000
  // bitstream conformance that subsampling_x is equal to 0 and subsampling_y
1001
  // is equal to 0.
1002
0
  const aom_matrix_coefficients_t matrix_coefficients =
1003
0
      ctx->extra_cfg.matrix_coefficients;
1004
0
  if (matrix_coefficients == AOM_CICP_MC_IDENTITY &&
1005
0
      (img->x_chroma_shift != 0 || img->y_chroma_shift != 0)) {
1006
0
    ERROR("Subsampling must be 0 with AOM_CICP_MC_IDENTITY.");
1007
0
  }
1008
1009
#if CONFIG_TUNE_BUTTERAUGLI
1010
  if (ctx->extra_cfg.tuning == AOM_TUNE_BUTTERAUGLI) {
1011
    if (img->bit_depth > 8) {
1012
      ERROR("Only 8 bit depth images supported in tune=butteraugli mode.");
1013
    }
1014
    if (matrix_coefficients != AOM_CICP_MC_IDENTITY &&
1015
        matrix_coefficients != AOM_CICP_MC_BT_709 &&
1016
        matrix_coefficients != AOM_CICP_MC_BT_601 &&
1017
        matrix_coefficients != AOM_CICP_MC_BT_470_B_G) {
1018
      ERROR(
1019
          "Only BT.709 and BT.601 matrix coefficients supported in "
1020
          "tune=butteraugli mode. Identity matrix is treated as BT.601.");
1021
    }
1022
  }
1023
#endif
1024
1025
0
#if CONFIG_AV1_HIGHBITDEPTH
1026
0
  if (ctx->extra_cfg.validate_hbd_input &&
1027
0
      (img->fmt & AOM_IMG_FMT_HIGHBITDEPTH)) {
1028
0
    const unsigned int bit_depth = ctx->cfg.g_bit_depth;
1029
0
    const int max_val = 1 << bit_depth;
1030
    // Note there is no high bitdepth version of NV12 defined. If one is
1031
    // added, `num_planes` should be 2 in that case.
1032
0
    const int num_planes = ctx->cfg.monochrome ? 1 : 3;
1033
0
    for (int plane = 0; plane < num_planes; ++plane) {
1034
0
      const unsigned short *src = (const unsigned short *)img->planes[plane];
1035
0
      if (!src) return AOM_CODEC_INVALID_PARAM;
1036
0
      const unsigned int stride = img->stride[plane] / 2;
1037
0
      const unsigned int ph = aom_img_plane_height(img, plane);
1038
0
      const unsigned int pw = aom_img_plane_width(img, plane);
1039
0
      for (unsigned int i = 0; i < ph; ++i) {
1040
0
        for (unsigned int j = 0; j < pw; ++j) {
1041
0
          if (src[j] >= max_val) {
1042
0
            ERROR("Input pixel value out of range for encoder bit depth");
1043
0
          }
1044
0
        }
1045
0
        src += stride;
1046
0
      }
1047
0
    }
1048
0
  }
1049
0
#endif  // CONFIG_AV1_HIGHBITDEPTH
1050
1051
0
  return AOM_CODEC_OK;
1052
0
}
1053
1054
0
static int get_image_bps(const aom_image_t *img) {
1055
0
  switch (img->fmt) {
1056
0
    case AOM_IMG_FMT_YV12:
1057
0
    case AOM_IMG_FMT_NV12:
1058
0
    case AOM_IMG_FMT_I420: return 12;
1059
0
    case AOM_IMG_FMT_I422: return 16;
1060
0
    case AOM_IMG_FMT_I444: return 24;
1061
0
    case AOM_IMG_FMT_YV1216:
1062
0
    case AOM_IMG_FMT_I42016: return 24;
1063
0
    case AOM_IMG_FMT_I42216: return 32;
1064
0
    case AOM_IMG_FMT_I44416: return 48;
1065
0
    default: assert(0 && "Invalid image format"); break;
1066
0
  }
1067
0
  return 0;
1068
0
}
1069
1070
// Set appropriate options to disable frame super-resolution.
1071
0
static void disable_superres(SuperResCfg *const superres_cfg) {
1072
0
  superres_cfg->superres_mode = AOM_SUPERRES_NONE;
1073
0
  superres_cfg->superres_scale_denominator = SCALE_NUMERATOR;
1074
0
  superres_cfg->superres_kf_scale_denominator = SCALE_NUMERATOR;
1075
0
  superres_cfg->superres_qthresh = 255;
1076
0
  superres_cfg->superres_kf_qthresh = 255;
1077
0
}
1078
1079
static void set_auto_tiles(TileConfig *const tile_cfg, unsigned int width,
1080
0
                           unsigned int height, unsigned int threads) {
1081
0
  int tile_cols_log2 = 0;
1082
0
  int tile_rows_log2 = 0;
1083
0
  if (threads < 2) return;
1084
  // Avoid small tiles because they are particularly bad for coding.
1085
  // Use no more tiles than the number of threads. Aim for one tile per
1086
  // thread. Using more than one thread inside one tile could be less
1087
  // efficient. Using more tiles than the number of threads would result
1088
  // in a compression penalty without much benefit.
1089
0
  const uint32_t kMinTileArea = 128 * 128;
1090
0
  const uint32_t kMaxTiles = 32;
1091
0
  uint32_t frame_area = width * height;
1092
0
  uint32_t tiles = (frame_area + kMinTileArea - 1) / kMinTileArea;
1093
0
  if (tiles > kMaxTiles) {
1094
0
    tiles = kMaxTiles;
1095
0
  }
1096
0
  if (tiles > threads) {
1097
0
    tiles = threads;
1098
0
  }
1099
0
  int tiles_log2 = (int)log2(tiles);
1100
  // If the frame width is equal or greater than the height, use more tile
1101
  // columns than tile rows.
1102
0
  if (width >= height) {
1103
0
    tile_cols_log2 = (tiles_log2 + 1) / 2;
1104
0
    tile_rows_log2 = tiles_log2 - tile_cols_log2;
1105
0
  } else {
1106
0
    tile_rows_log2 = (tiles_log2 + 1) / 2;
1107
0
    tile_cols_log2 = tiles_log2 - tile_rows_log2;
1108
0
  }
1109
0
  tile_cfg->tile_columns = tile_cols_log2;
1110
0
  tile_cfg->tile_rows = tile_rows_log2;
1111
0
}
1112
1113
static void update_default_encoder_config(const cfg_options_t *cfg,
1114
0
                                          struct av1_extracfg *extra_cfg) {
1115
0
  extra_cfg->enable_cdef = (cfg->disable_cdef == 0) ? 1 : 0;
1116
0
  extra_cfg->enable_restoration = (cfg->disable_lr == 0);
1117
0
  extra_cfg->superblock_size =
1118
0
      (cfg->super_block_size == 64)    ? AOM_SUPERBLOCK_SIZE_64X64
1119
0
      : (cfg->super_block_size == 128) ? AOM_SUPERBLOCK_SIZE_128X128
1120
0
                                       : AOM_SUPERBLOCK_SIZE_DYNAMIC;
1121
0
  extra_cfg->enable_warped_motion = (cfg->disable_warp_motion == 0);
1122
0
  extra_cfg->enable_dist_wtd_comp = (cfg->disable_dist_wtd_comp == 0);
1123
0
  extra_cfg->enable_diff_wtd_comp = (cfg->disable_diff_wtd_comp == 0);
1124
0
  extra_cfg->enable_dual_filter = (cfg->disable_dual_filter == 0);
1125
0
  extra_cfg->enable_angle_delta = (cfg->disable_intra_angle_delta == 0);
1126
0
  extra_cfg->enable_rect_partitions = (cfg->disable_rect_partition_type == 0);
1127
0
  extra_cfg->enable_ab_partitions = (cfg->disable_ab_partition_type == 0);
1128
0
  extra_cfg->enable_1to4_partitions = (cfg->disable_1to4_partition_type == 0);
1129
0
  extra_cfg->max_partition_size = cfg->max_partition_size;
1130
0
  extra_cfg->min_partition_size = cfg->min_partition_size;
1131
0
  extra_cfg->enable_intra_edge_filter = (cfg->disable_intra_edge_filter == 0);
1132
0
  extra_cfg->enable_tx64 = (cfg->disable_tx_64x64 == 0);
1133
0
  extra_cfg->enable_flip_idtx = (cfg->disable_flip_idtx == 0);
1134
0
  extra_cfg->enable_masked_comp = (cfg->disable_masked_comp == 0);
1135
0
  extra_cfg->enable_interintra_comp = (cfg->disable_inter_intra_comp == 0);
1136
0
  extra_cfg->enable_smooth_interintra = (cfg->disable_smooth_inter_intra == 0);
1137
0
  extra_cfg->enable_interinter_wedge = (cfg->disable_inter_inter_wedge == 0);
1138
0
  extra_cfg->enable_interintra_wedge = (cfg->disable_inter_intra_wedge == 0);
1139
0
  extra_cfg->enable_global_motion = (cfg->disable_global_motion == 0);
1140
0
  extra_cfg->enable_filter_intra = (cfg->disable_filter_intra == 0);
1141
0
  extra_cfg->enable_smooth_intra = (cfg->disable_smooth_intra == 0);
1142
0
  extra_cfg->enable_paeth_intra = (cfg->disable_paeth_intra == 0);
1143
0
  extra_cfg->enable_cfl_intra = (cfg->disable_cfl == 0);
1144
0
  extra_cfg->enable_obmc = (cfg->disable_obmc == 0);
1145
0
  extra_cfg->enable_palette = (cfg->disable_palette == 0);
1146
0
  extra_cfg->enable_intrabc = (cfg->disable_intrabc == 0);
1147
0
  extra_cfg->disable_trellis_quant = cfg->disable_trellis_quant;
1148
0
  extra_cfg->allow_ref_frame_mvs = (cfg->disable_ref_frame_mv == 0);
1149
0
  extra_cfg->enable_ref_frame_mvs = (cfg->disable_ref_frame_mv == 0);
1150
0
  extra_cfg->enable_onesided_comp = (cfg->disable_one_sided_comp == 0);
1151
0
  extra_cfg->enable_reduced_reference_set = cfg->reduced_reference_set;
1152
0
  extra_cfg->reduced_tx_type_set = cfg->reduced_tx_type_set;
1153
0
}
1154
1155
static void set_encoder_config(AV1EncoderConfig *oxcf,
1156
                               const aom_codec_enc_cfg_t *cfg,
1157
0
                               struct av1_extracfg *extra_cfg) {
1158
0
  if (cfg->encoder_cfg.init_by_cfg_file) {
1159
0
    update_default_encoder_config(&cfg->encoder_cfg, extra_cfg);
1160
0
  }
1161
1162
0
  TuneCfg *const tune_cfg = &oxcf->tune_cfg;
1163
0
  FrameDimensionCfg *const frm_dim_cfg = &oxcf->frm_dim_cfg;
1164
0
  TileConfig *const tile_cfg = &oxcf->tile_cfg;
1165
0
  ResizeCfg *const resize_cfg = &oxcf->resize_cfg;
1166
0
  GFConfig *const gf_cfg = &oxcf->gf_cfg;
1167
0
  PartitionCfg *const part_cfg = &oxcf->part_cfg;
1168
0
  IntraModeCfg *const intra_mode_cfg = &oxcf->intra_mode_cfg;
1169
0
  TxfmSizeTypeCfg *const txfm_cfg = &oxcf->txfm_cfg;
1170
0
  CompoundTypeCfg *const comp_type_cfg = &oxcf->comp_type_cfg;
1171
0
  SuperResCfg *const superres_cfg = &oxcf->superres_cfg;
1172
0
  KeyFrameCfg *const kf_cfg = &oxcf->kf_cfg;
1173
0
  DecoderModelCfg *const dec_model_cfg = &oxcf->dec_model_cfg;
1174
0
  RateControlCfg *const rc_cfg = &oxcf->rc_cfg;
1175
0
  QuantizationCfg *const q_cfg = &oxcf->q_cfg;
1176
0
  ColorCfg *const color_cfg = &oxcf->color_cfg;
1177
0
  InputCfg *const input_cfg = &oxcf->input_cfg;
1178
0
  AlgoCfg *const algo_cfg = &oxcf->algo_cfg;
1179
0
  ToolCfg *const tool_cfg = &oxcf->tool_cfg;
1180
1181
0
  oxcf->profile = cfg->g_profile;
1182
0
  oxcf->max_threads = (int)cfg->g_threads;
1183
1184
0
  switch (cfg->g_usage) {
1185
0
    case AOM_USAGE_REALTIME: oxcf->mode = REALTIME; break;
1186
0
    case AOM_USAGE_ALL_INTRA: oxcf->mode = ALLINTRA; break;
1187
0
    default: oxcf->mode = GOOD; break;
1188
0
  }
1189
1190
  // Set frame-dimension related configuration.
1191
0
  frm_dim_cfg->width = cfg->g_w;
1192
0
  frm_dim_cfg->height = cfg->g_h;
1193
0
  frm_dim_cfg->forced_max_frame_width = cfg->g_forced_max_frame_width;
1194
0
  frm_dim_cfg->forced_max_frame_height = cfg->g_forced_max_frame_height;
1195
0
  frm_dim_cfg->render_width = extra_cfg->render_width;
1196
0
  frm_dim_cfg->render_height = extra_cfg->render_height;
1197
1198
  // Set input video related configuration.
1199
0
  input_cfg->input_bit_depth = cfg->g_input_bit_depth;
1200
  // guess a frame rate if out of whack, use 30
1201
0
  input_cfg->init_framerate = (double)cfg->g_timebase.den / cfg->g_timebase.num;
1202
0
  if (cfg->g_pass >= AOM_RC_SECOND_PASS) {
1203
0
    const size_t packet_sz = sizeof(FIRSTPASS_STATS);
1204
0
    const int n_packets = (int)(cfg->rc_twopass_stats_in.sz / packet_sz);
1205
0
    input_cfg->limit = n_packets - 1;
1206
0
  } else {
1207
0
    input_cfg->limit = cfg->g_limit;
1208
0
  }
1209
0
  input_cfg->chroma_subsampling_x = extra_cfg->chroma_subsampling_x;
1210
0
  input_cfg->chroma_subsampling_y = extra_cfg->chroma_subsampling_y;
1211
0
  if (input_cfg->init_framerate > 180) {
1212
0
    input_cfg->init_framerate = 30;
1213
0
    dec_model_cfg->timing_info_present = 0;
1214
0
  }
1215
1216
  // Set Decoder model configuration.
1217
0
  if (extra_cfg->timing_info_type == AOM_TIMING_EQUAL ||
1218
0
      extra_cfg->timing_info_type == AOM_TIMING_DEC_MODEL) {
1219
0
    dec_model_cfg->timing_info_present = 1;
1220
0
    dec_model_cfg->timing_info.num_units_in_display_tick = cfg->g_timebase.num;
1221
0
    dec_model_cfg->timing_info.time_scale = cfg->g_timebase.den;
1222
0
    dec_model_cfg->timing_info.num_ticks_per_picture = 1;
1223
0
  } else {
1224
0
    dec_model_cfg->timing_info_present = 0;
1225
0
  }
1226
0
  if (extra_cfg->timing_info_type == AOM_TIMING_EQUAL) {
1227
0
    dec_model_cfg->timing_info.equal_picture_interval = 1;
1228
0
    dec_model_cfg->decoder_model_info_present_flag = 0;
1229
0
    dec_model_cfg->display_model_info_present_flag = 1;
1230
0
  } else if (extra_cfg->timing_info_type == AOM_TIMING_DEC_MODEL) {
1231
0
    dec_model_cfg->num_units_in_decoding_tick = cfg->g_timebase.num;
1232
0
    dec_model_cfg->timing_info.equal_picture_interval = 0;
1233
0
    dec_model_cfg->decoder_model_info_present_flag = 1;
1234
0
    dec_model_cfg->display_model_info_present_flag = 1;
1235
0
  }
1236
1237
0
  oxcf->pass = cfg->g_pass;
1238
  // For backward compatibility, assume that if extra_cfg->passes==-1, then
1239
  // passes = 1 or 2.
1240
0
  if (extra_cfg->passes == -1) {
1241
0
    if (cfg->g_pass == AOM_RC_ONE_PASS) {
1242
0
      oxcf->passes = 1;
1243
0
    } else {
1244
0
      oxcf->passes = 2;
1245
0
    }
1246
0
  } else {
1247
0
    oxcf->passes = extra_cfg->passes;
1248
0
  }
1249
1250
  // Set Rate Control configuration.
1251
0
  rc_cfg->max_intra_bitrate_pct = extra_cfg->rc_max_intra_bitrate_pct;
1252
0
  rc_cfg->max_inter_bitrate_pct = extra_cfg->rc_max_inter_bitrate_pct;
1253
0
  rc_cfg->gf_cbr_boost_pct = extra_cfg->gf_cbr_boost_pct;
1254
0
  rc_cfg->mode = cfg->rc_end_usage;
1255
0
  rc_cfg->min_cr = extra_cfg->min_cr;
1256
0
  rc_cfg->best_allowed_q =
1257
0
      extra_cfg->lossless ? 0 : av1_quantizer_to_qindex(cfg->rc_min_quantizer);
1258
0
  rc_cfg->worst_allowed_q =
1259
0
      extra_cfg->lossless ? 0 : av1_quantizer_to_qindex(cfg->rc_max_quantizer);
1260
0
  rc_cfg->cq_level = av1_quantizer_to_qindex(extra_cfg->cq_level);
1261
0
  rc_cfg->under_shoot_pct = cfg->rc_undershoot_pct;
1262
0
  rc_cfg->over_shoot_pct = cfg->rc_overshoot_pct;
1263
0
  rc_cfg->maximum_buffer_size_ms = cfg->rc_buf_sz;
1264
0
  rc_cfg->starting_buffer_level_ms = cfg->rc_buf_initial_sz;
1265
0
  rc_cfg->optimal_buffer_level_ms = cfg->rc_buf_optimal_sz;
1266
  // Convert target bandwidth from Kbit/s to Bit/s
1267
0
  rc_cfg->target_bandwidth = 1000 * cfg->rc_target_bitrate;
1268
0
  rc_cfg->drop_frames_water_mark = cfg->rc_dropframe_thresh;
1269
0
  rc_cfg->vbr_corpus_complexity_lap = extra_cfg->vbr_corpus_complexity_lap;
1270
0
  rc_cfg->vbrbias = cfg->rc_2pass_vbr_bias_pct;
1271
0
  rc_cfg->vbrmin_section = cfg->rc_2pass_vbr_minsection_pct;
1272
0
  rc_cfg->vbrmax_section = cfg->rc_2pass_vbr_maxsection_pct;
1273
1274
  // Set Toolset related configuration.
1275
0
  tool_cfg->bit_depth = cfg->g_bit_depth;
1276
0
  tool_cfg->cdef_control = (CDEF_CONTROL)extra_cfg->enable_cdef;
1277
0
  tool_cfg->enable_restoration =
1278
0
      (cfg->g_usage == AOM_USAGE_REALTIME) ? 0 : extra_cfg->enable_restoration;
1279
0
  tool_cfg->force_video_mode = extra_cfg->force_video_mode;
1280
0
  tool_cfg->enable_palette = extra_cfg->enable_palette;
1281
  // FIXME(debargha): Should this be:
1282
  // tool_cfg->enable_ref_frame_mvs  = extra_cfg->allow_ref_frame_mvs &
1283
  //                                         extra_cfg->enable_order_hint ?
1284
  // Disallow using temporal MVs while large_scale_tile = 1.
1285
0
  tool_cfg->enable_ref_frame_mvs =
1286
0
      extra_cfg->allow_ref_frame_mvs && !cfg->large_scale_tile;
1287
0
  tool_cfg->superblock_size = extra_cfg->superblock_size;
1288
0
  tool_cfg->enable_monochrome = cfg->monochrome;
1289
0
  tool_cfg->full_still_picture_hdr = cfg->full_still_picture_hdr != 0;
1290
0
  tool_cfg->enable_dual_filter = extra_cfg->enable_dual_filter;
1291
0
  tool_cfg->enable_order_hint = extra_cfg->enable_order_hint;
1292
0
  tool_cfg->enable_interintra_comp = extra_cfg->enable_interintra_comp;
1293
0
  tool_cfg->ref_frame_mvs_present =
1294
0
      extra_cfg->enable_ref_frame_mvs & extra_cfg->enable_order_hint;
1295
1296
  // Explicitly disable global motion in a few cases:
1297
  // * For realtime mode, we never search global motion, and disabling
1298
  //   it here prevents later code from allocating buffers we don't need
1299
  // * For large scale tile mode, some of the intended use cases expect
1300
  //   all frame headers to be identical. This breaks if global motion is
1301
  //   used, since global motion data is stored in the frame header.
1302
  //   eg, see test/lightfield_test.sh, which checks that all frame headers
1303
  //   are the same.
1304
0
  tool_cfg->enable_global_motion = extra_cfg->enable_global_motion &&
1305
0
                                   cfg->g_usage != AOM_USAGE_REALTIME &&
1306
0
                                   !cfg->large_scale_tile;
1307
1308
0
  tool_cfg->error_resilient_mode =
1309
0
      cfg->g_error_resilient | extra_cfg->error_resilient_mode;
1310
0
  tool_cfg->frame_parallel_decoding_mode =
1311
0
      extra_cfg->frame_parallel_decoding_mode;
1312
1313
  // Set Quantization related configuration.
1314
0
  q_cfg->using_qm = extra_cfg->enable_qm;
1315
0
  q_cfg->qm_minlevel = extra_cfg->qm_min;
1316
0
  q_cfg->qm_maxlevel = extra_cfg->qm_max;
1317
0
  q_cfg->quant_b_adapt = extra_cfg->quant_b_adapt;
1318
0
  q_cfg->enable_chroma_deltaq = extra_cfg->enable_chroma_deltaq;
1319
0
  q_cfg->aq_mode = extra_cfg->aq_mode;
1320
0
  q_cfg->deltaq_mode = extra_cfg->deltaq_mode;
1321
0
  q_cfg->deltaq_strength = extra_cfg->deltaq_strength;
1322
0
  q_cfg->use_fixed_qp_offsets =
1323
0
      (rc_cfg->mode == AOM_Q) ? cfg->use_fixed_qp_offsets : 0;
1324
1325
0
  q_cfg->enable_hdr_deltaq =
1326
0
      (q_cfg->deltaq_mode == DELTA_Q_HDR) &&
1327
0
      (cfg->g_bit_depth == AOM_BITS_10) &&
1328
0
      (extra_cfg->color_primaries == AOM_CICP_CP_BT_2020);
1329
1330
0
  tool_cfg->enable_deltalf_mode =
1331
0
      (q_cfg->deltaq_mode != NO_DELTA_Q) && extra_cfg->deltalf_mode;
1332
1333
  // Set cost update frequency configuration.
1334
0
  oxcf->cost_upd_freq.coeff = (COST_UPDATE_TYPE)extra_cfg->coeff_cost_upd_freq;
1335
0
  oxcf->cost_upd_freq.mode = (COST_UPDATE_TYPE)extra_cfg->mode_cost_upd_freq;
1336
  // Avoid MV cost update for allintra encoding mode.
1337
0
  oxcf->cost_upd_freq.mv = (cfg->kf_max_dist != 0)
1338
0
                               ? (COST_UPDATE_TYPE)extra_cfg->mv_cost_upd_freq
1339
0
                               : COST_UPD_OFF;
1340
0
  oxcf->cost_upd_freq.dv = (COST_UPDATE_TYPE)extra_cfg->dv_cost_upd_freq;
1341
1342
  // Set frame resize mode configuration.
1343
0
  resize_cfg->resize_mode = (RESIZE_MODE)cfg->rc_resize_mode;
1344
0
  resize_cfg->resize_scale_denominator = (uint8_t)cfg->rc_resize_denominator;
1345
0
  resize_cfg->resize_kf_scale_denominator =
1346
0
      (uint8_t)cfg->rc_resize_kf_denominator;
1347
0
  if (resize_cfg->resize_mode == RESIZE_FIXED &&
1348
0
      resize_cfg->resize_scale_denominator == SCALE_NUMERATOR &&
1349
0
      resize_cfg->resize_kf_scale_denominator == SCALE_NUMERATOR)
1350
0
    resize_cfg->resize_mode = RESIZE_NONE;
1351
1352
  // Set encoder algorithm related configuration.
1353
0
  algo_cfg->enable_overlay = extra_cfg->enable_overlay;
1354
0
  algo_cfg->disable_trellis_quant = extra_cfg->disable_trellis_quant;
1355
0
  algo_cfg->sharpness = extra_cfg->sharpness;
1356
0
  algo_cfg->enable_adaptive_sharpness = extra_cfg->enable_adaptive_sharpness;
1357
0
  algo_cfg->arnr_max_frames = extra_cfg->arnr_max_frames;
1358
0
  algo_cfg->arnr_strength = extra_cfg->arnr_strength;
1359
0
  algo_cfg->cdf_update_mode = (uint8_t)extra_cfg->cdf_update_mode;
1360
  // TODO(any): Fix and Enable TPL for resize-mode > 0
1361
0
  algo_cfg->enable_tpl_model =
1362
0
      resize_cfg->resize_mode ? 0 : extra_cfg->enable_tpl_model;
1363
0
  algo_cfg->loopfilter_control = extra_cfg->loopfilter_control;
1364
0
  algo_cfg->skip_postproc_filtering = extra_cfg->skip_postproc_filtering;
1365
0
  algo_cfg->screen_detection_mode = extra_cfg->screen_detection_mode;
1366
1367
  // Set two-pass stats configuration.
1368
0
  oxcf->twopass_stats_in = cfg->rc_twopass_stats_in;
1369
1370
0
  if (extra_cfg->two_pass_output)
1371
0
    oxcf->two_pass_output = extra_cfg->two_pass_output;
1372
1373
0
  oxcf->second_pass_log = extra_cfg->second_pass_log;
1374
1375
  // Set Key frame configuration.
1376
0
  kf_cfg->fwd_kf_enabled = cfg->fwd_kf_enabled;
1377
0
  kf_cfg->auto_key =
1378
0
      cfg->kf_mode == AOM_KF_AUTO && cfg->kf_min_dist != cfg->kf_max_dist;
1379
0
  kf_cfg->key_freq_min = cfg->kf_min_dist;
1380
0
  kf_cfg->key_freq_max = cfg->kf_max_dist;
1381
0
  kf_cfg->sframe_dist = cfg->sframe_dist;
1382
0
  kf_cfg->sframe_mode = cfg->sframe_mode;
1383
0
  kf_cfg->enable_sframe = extra_cfg->s_frame_mode;
1384
0
  kf_cfg->enable_keyframe_filtering = extra_cfg->enable_keyframe_filtering;
1385
0
  kf_cfg->fwd_kf_dist = extra_cfg->fwd_kf_dist;
1386
  // Disable key frame filtering in all intra mode.
1387
0
  if (cfg->kf_max_dist == 0) {
1388
0
    kf_cfg->enable_keyframe_filtering = 0;
1389
0
  }
1390
0
  kf_cfg->enable_intrabc = extra_cfg->enable_intrabc;
1391
1392
0
  oxcf->speed = extra_cfg->cpu_used;
1393
0
  if (oxcf->mode == REALTIME) {
1394
#if CONFIG_REALTIME_ONLY
1395
    oxcf->speed = AOMMAX(oxcf->speed, 5);
1396
#endif
1397
    // TODO(yunqingwang, any) In REALTIME mode, 1080p performance at speed 5 & 6
1398
    // is quite bad. Force to use speed 7 for now. Will investigate it when we
1399
    // work on rd path optimization later.
1400
0
    if (AOMMIN(cfg->g_w, cfg->g_h) >= 1080 && oxcf->speed < 7) oxcf->speed = 7;
1401
0
  }
1402
1403
  // Now, low complexity decode mode supports good-quality encoding (speed 1 to
1404
  // 3) for vertical videos (608p to 1080p) and horizontal videos (720p to
1405
  // 1080p). This can be further modified if needed.
1406
0
  const int is_low_complexity_decode_mode_supported =
1407
0
      (cfg->g_usage == AOM_USAGE_GOOD_QUALITY) &&
1408
0
      (oxcf->speed >= 1 && oxcf->speed <= 3) &&
1409
0
      (AOMMIN(cfg->g_w, cfg->g_h) >= 608 && AOMMIN(cfg->g_w, cfg->g_h) <= 1080);
1410
0
  oxcf->enable_low_complexity_decode =
1411
0
      extra_cfg->enable_low_complexity_decode &&
1412
0
      is_low_complexity_decode_mode_supported;
1413
1414
  // Set Color related configuration.
1415
0
  color_cfg->color_primaries = extra_cfg->color_primaries;
1416
0
  color_cfg->transfer_characteristics = extra_cfg->transfer_characteristics;
1417
0
  color_cfg->matrix_coefficients = extra_cfg->matrix_coefficients;
1418
0
  color_cfg->color_range = extra_cfg->color_range;
1419
0
  color_cfg->chroma_sample_position = extra_cfg->chroma_sample_position;
1420
1421
  // Set Group of frames configuration.
1422
#if CONFIG_REALTIME_ONLY
1423
  // When CONFIG_REALTIME_ONLY=1 and mode=REALTIME, then force lag_in_frames
1424
  // = 0.
1425
  gf_cfg->lag_in_frames = (oxcf->mode == REALTIME)
1426
                              ? 0
1427
                              : clamp(cfg->g_lag_in_frames, 0, MAX_LAG_BUFFERS);
1428
#else
1429
0
  gf_cfg->lag_in_frames = clamp(cfg->g_lag_in_frames, 0, MAX_LAG_BUFFERS);
1430
0
#endif
1431
1432
  // Modify lag_in_frames slightly for better coding performance (e.g. better
1433
  // temporal filtering result).
1434
0
  if (oxcf->mode == GOOD && gf_cfg->lag_in_frames >= 32 &&
1435
0
      gf_cfg->lag_in_frames < 39)
1436
0
    gf_cfg->lag_in_frames = AOMMIN(39, MAX_LAG_BUFFERS);
1437
1438
0
  gf_cfg->enable_auto_arf = extra_cfg->enable_auto_alt_ref;
1439
0
  gf_cfg->enable_auto_brf = extra_cfg->enable_auto_bwd_ref;
1440
0
  gf_cfg->min_gf_interval = extra_cfg->min_gf_interval;
1441
0
  gf_cfg->max_gf_interval = extra_cfg->max_gf_interval;
1442
0
  gf_cfg->gf_min_pyr_height = extra_cfg->gf_min_pyr_height;
1443
0
  gf_cfg->gf_max_pyr_height = extra_cfg->gf_max_pyr_height;
1444
1445
  // Set tune related configuration.
1446
0
  tune_cfg->tuning = extra_cfg->tuning;
1447
0
  tune_cfg->vmaf_model_path = extra_cfg->vmaf_model_path;
1448
0
  tune_cfg->content = extra_cfg->content;
1449
0
  if (cfg->large_scale_tile) {
1450
0
    tune_cfg->film_grain_test_vector = 0;
1451
0
    tune_cfg->film_grain_table_filename = NULL;
1452
0
  } else {
1453
0
    tune_cfg->film_grain_test_vector = extra_cfg->film_grain_test_vector;
1454
0
    tune_cfg->film_grain_table_filename = extra_cfg->film_grain_table_filename;
1455
0
  }
1456
0
  tune_cfg->dist_metric = extra_cfg->dist_metric;
1457
0
#if CONFIG_DENOISE
1458
0
  oxcf->noise_level = extra_cfg->noise_level;
1459
0
  oxcf->noise_block_size = extra_cfg->noise_block_size;
1460
0
  oxcf->enable_dnl_denoising = extra_cfg->enable_dnl_denoising;
1461
0
#endif
1462
1463
#if CONFIG_AV1_TEMPORAL_DENOISING
1464
  // Temporal denoiser is for nonrd pickmode so disable it for speed < 7.
1465
  // Also disable it for speed 7 for now since it needs to be modified for
1466
  // the check_partition_merge_mode feature.
1467
  if (cfg->g_bit_depth == AOM_BITS_8 && oxcf->speed > 7) {
1468
    oxcf->noise_sensitivity = extra_cfg->noise_sensitivity;
1469
  } else {
1470
    oxcf->noise_sensitivity = 0;
1471
  }
1472
#endif
1473
  // Set Tile related configuration.
1474
0
  tile_cfg->num_tile_groups = extra_cfg->num_tg;
1475
  // In large-scale tile encoding mode, num_tile_groups is always 1.
1476
0
  if (cfg->large_scale_tile) tile_cfg->num_tile_groups = 1;
1477
0
  tile_cfg->mtu = extra_cfg->mtu_size;
1478
0
  tile_cfg->enable_large_scale_tile = cfg->large_scale_tile;
1479
0
  tile_cfg->enable_single_tile_decoding =
1480
0
      (tile_cfg->enable_large_scale_tile) ? extra_cfg->single_tile_decoding : 0;
1481
0
  if (extra_cfg->auto_tiles) {
1482
0
    set_auto_tiles(tile_cfg, cfg->g_w, cfg->g_h, cfg->g_threads);
1483
0
    extra_cfg->tile_columns = tile_cfg->tile_columns;
1484
0
    extra_cfg->tile_rows = tile_cfg->tile_rows;
1485
0
  } else {
1486
0
    tile_cfg->tile_columns = extra_cfg->tile_columns;
1487
0
    tile_cfg->tile_rows = extra_cfg->tile_rows;
1488
0
  }
1489
0
  tile_cfg->tile_width_count = AOMMIN(cfg->tile_width_count, MAX_TILE_COLS);
1490
0
  tile_cfg->tile_height_count = AOMMIN(cfg->tile_height_count, MAX_TILE_ROWS);
1491
0
  for (int i = 0; i < tile_cfg->tile_width_count; i++) {
1492
0
    tile_cfg->tile_widths[i] = cfg->tile_widths[i];
1493
0
  }
1494
0
  for (int i = 0; i < tile_cfg->tile_height_count; i++) {
1495
0
    tile_cfg->tile_heights[i] = cfg->tile_heights[i];
1496
0
  }
1497
0
  tile_cfg->enable_ext_tile_debug = extra_cfg->ext_tile_debug;
1498
1499
0
  if (tile_cfg->enable_large_scale_tile) {
1500
    // The superblock_size can only be AOM_SUPERBLOCK_SIZE_64X64 or
1501
    // AOM_SUPERBLOCK_SIZE_128X128 while tile_cfg->enable_large_scale_tile = 1.
1502
    // If superblock_size = AOM_SUPERBLOCK_SIZE_DYNAMIC, hard set it to
1503
    // AOM_SUPERBLOCK_SIZE_64X64(default value in large_scale_tile).
1504
0
    if (extra_cfg->superblock_size != AOM_SUPERBLOCK_SIZE_64X64 &&
1505
0
        extra_cfg->superblock_size != AOM_SUPERBLOCK_SIZE_128X128)
1506
0
      tool_cfg->superblock_size = AOM_SUPERBLOCK_SIZE_64X64;
1507
0
  }
1508
1509
  // Set reference frame related configuration.
1510
0
  oxcf->ref_frm_cfg.max_reference_frames = extra_cfg->max_reference_frames;
1511
0
  oxcf->ref_frm_cfg.enable_reduced_reference_set =
1512
0
      extra_cfg->enable_reduced_reference_set;
1513
0
  oxcf->ref_frm_cfg.enable_onesided_comp = extra_cfg->enable_onesided_comp;
1514
1515
0
  oxcf->row_mt = extra_cfg->row_mt;
1516
0
  oxcf->fp_mt = extra_cfg->fp_mt;
1517
1518
  // Set motion mode related configuration.
1519
0
  oxcf->motion_mode_cfg.enable_obmc = extra_cfg->enable_obmc;
1520
0
  oxcf->motion_mode_cfg.enable_warped_motion = extra_cfg->enable_warped_motion;
1521
0
#if !CONFIG_REALTIME_ONLY
1522
0
  if (cfg->g_usage == AOM_USAGE_REALTIME && oxcf->speed >= 7 &&
1523
0
      oxcf->tune_cfg.content == AOM_CONTENT_SCREEN) {
1524
    // TODO(marpan): warped motion is causing a crash for RT mode with screen
1525
    // in nonrd (speed >= 7), for non-realtime build.
1526
    // Re-enable/allow when the issue is fixed.
1527
0
    oxcf->motion_mode_cfg.enable_warped_motion = 0;
1528
0
    oxcf->motion_mode_cfg.allow_warped_motion = 0;
1529
0
  } else {
1530
0
    oxcf->motion_mode_cfg.allow_warped_motion =
1531
0
        (extra_cfg->allow_warped_motion & extra_cfg->enable_warped_motion);
1532
0
  }
1533
#else
1534
  oxcf->motion_mode_cfg.allow_warped_motion =
1535
      (cfg->g_usage == AOM_USAGE_REALTIME && oxcf->speed >= 7)
1536
          ? false
1537
          : (extra_cfg->allow_warped_motion & extra_cfg->enable_warped_motion);
1538
#endif
1539
1540
  // Set partition related configuration.
1541
0
  part_cfg->enable_rect_partitions = extra_cfg->enable_rect_partitions;
1542
0
  part_cfg->enable_ab_partitions = extra_cfg->enable_ab_partitions;
1543
0
  part_cfg->enable_1to4_partitions = extra_cfg->enable_1to4_partitions;
1544
0
  part_cfg->min_partition_size = extra_cfg->min_partition_size;
1545
0
  part_cfg->max_partition_size = extra_cfg->max_partition_size;
1546
1547
  // Set intra mode configuration.
1548
0
  intra_mode_cfg->enable_angle_delta = extra_cfg->enable_angle_delta;
1549
0
  intra_mode_cfg->enable_intra_edge_filter =
1550
0
      extra_cfg->enable_intra_edge_filter;
1551
0
  intra_mode_cfg->enable_filter_intra = extra_cfg->enable_filter_intra;
1552
0
  intra_mode_cfg->enable_smooth_intra = extra_cfg->enable_smooth_intra;
1553
0
  intra_mode_cfg->enable_paeth_intra = extra_cfg->enable_paeth_intra;
1554
0
  intra_mode_cfg->enable_cfl_intra = extra_cfg->enable_cfl_intra;
1555
0
  intra_mode_cfg->enable_directional_intra =
1556
0
      extra_cfg->enable_directional_intra;
1557
0
  intra_mode_cfg->enable_diagonal_intra = extra_cfg->enable_diagonal_intra;
1558
0
  intra_mode_cfg->auto_intra_tools_off = extra_cfg->auto_intra_tools_off;
1559
1560
  // Set transform size/type configuration.
1561
0
  txfm_cfg->enable_tx64 = extra_cfg->enable_tx64;
1562
0
  txfm_cfg->enable_flip_idtx = extra_cfg->enable_flip_idtx;
1563
0
  txfm_cfg->enable_rect_tx = extra_cfg->enable_rect_tx;
1564
0
  txfm_cfg->reduced_tx_type_set = extra_cfg->reduced_tx_type_set;
1565
0
  txfm_cfg->use_intra_dct_only = extra_cfg->use_intra_dct_only;
1566
0
  txfm_cfg->use_inter_dct_only = extra_cfg->use_inter_dct_only;
1567
0
  txfm_cfg->use_intra_default_tx_only = extra_cfg->use_intra_default_tx_only;
1568
0
  txfm_cfg->enable_tx_size_search = extra_cfg->enable_tx_size_search;
1569
1570
  // Set compound type configuration.
1571
0
  comp_type_cfg->enable_dist_wtd_comp =
1572
0
      extra_cfg->enable_dist_wtd_comp & extra_cfg->enable_order_hint;
1573
0
  comp_type_cfg->enable_masked_comp = extra_cfg->enable_masked_comp;
1574
0
  comp_type_cfg->enable_diff_wtd_comp =
1575
0
      extra_cfg->enable_masked_comp & extra_cfg->enable_diff_wtd_comp;
1576
0
  comp_type_cfg->enable_interinter_wedge =
1577
0
      extra_cfg->enable_masked_comp & extra_cfg->enable_interinter_wedge;
1578
0
  comp_type_cfg->enable_smooth_interintra =
1579
0
      extra_cfg->enable_interintra_comp && extra_cfg->enable_smooth_interintra;
1580
0
  comp_type_cfg->enable_interintra_wedge =
1581
0
      extra_cfg->enable_interintra_comp & extra_cfg->enable_interintra_wedge;
1582
1583
  // Set Super-resolution mode configuration.
1584
0
  if (extra_cfg->lossless || cfg->large_scale_tile) {
1585
0
    disable_superres(superres_cfg);
1586
0
  } else {
1587
0
    superres_cfg->superres_mode = cfg->rc_superres_mode;
1588
0
    superres_cfg->superres_scale_denominator =
1589
0
        (uint8_t)cfg->rc_superres_denominator;
1590
0
    superres_cfg->superres_kf_scale_denominator =
1591
0
        (uint8_t)cfg->rc_superres_kf_denominator;
1592
0
    superres_cfg->superres_qthresh =
1593
0
        av1_quantizer_to_qindex(cfg->rc_superres_qthresh);
1594
0
    superres_cfg->superres_kf_qthresh =
1595
0
        av1_quantizer_to_qindex(cfg->rc_superres_kf_qthresh);
1596
0
    if (superres_cfg->superres_mode == AOM_SUPERRES_FIXED &&
1597
0
        superres_cfg->superres_scale_denominator == SCALE_NUMERATOR &&
1598
0
        superres_cfg->superres_kf_scale_denominator == SCALE_NUMERATOR) {
1599
0
      disable_superres(superres_cfg);
1600
0
    }
1601
0
    if (superres_cfg->superres_mode == AOM_SUPERRES_QTHRESH &&
1602
0
        superres_cfg->superres_qthresh == 255 &&
1603
0
        superres_cfg->superres_kf_qthresh == 255) {
1604
0
      disable_superres(superres_cfg);
1605
0
    }
1606
0
  }
1607
1608
0
  superres_cfg->enable_superres =
1609
0
      (superres_cfg->superres_mode != AOM_SUPERRES_NONE) &&
1610
0
      extra_cfg->enable_superres;
1611
0
  if (!superres_cfg->enable_superres) {
1612
0
    disable_superres(superres_cfg);
1613
0
  }
1614
1615
0
  if (input_cfg->limit == 1) {
1616
    // still picture mode, display model and timing is meaningless
1617
0
    dec_model_cfg->display_model_info_present_flag = 0;
1618
0
    dec_model_cfg->timing_info_present = 0;
1619
0
  }
1620
1621
0
  oxcf->save_as_annexb = cfg->save_as_annexb;
1622
1623
  // Set unit test related configuration.
1624
0
  oxcf->unit_test_cfg.motion_vector_unit_test =
1625
0
      extra_cfg->motion_vector_unit_test;
1626
0
  oxcf->unit_test_cfg.sb_multipass_unit_test =
1627
0
      extra_cfg->sb_multipass_unit_test;
1628
1629
0
  oxcf->border_in_pixels =
1630
0
      av1_get_enc_border_size(av1_is_resize_needed(oxcf),
1631
0
                              (oxcf->kf_cfg.key_freq_max == 0), BLOCK_128X128);
1632
0
  memcpy(oxcf->target_seq_level_idx, extra_cfg->target_seq_level_idx,
1633
0
         sizeof(oxcf->target_seq_level_idx));
1634
0
  oxcf->tier_mask = extra_cfg->tier_mask;
1635
1636
0
  oxcf->partition_info_path = extra_cfg->partition_info_path;
1637
1638
0
  oxcf->enable_rate_guide_deltaq = extra_cfg->enable_rate_guide_deltaq;
1639
0
  oxcf->rate_distribution_info = extra_cfg->rate_distribution_info;
1640
1641
0
  oxcf->strict_level_conformance = extra_cfg->strict_level_conformance;
1642
1643
0
  oxcf->kf_max_pyr_height = extra_cfg->kf_max_pyr_height;
1644
1645
0
  oxcf->sb_qp_sweep = extra_cfg->sb_qp_sweep;
1646
0
}
1647
1648
0
AV1EncoderConfig av1_get_encoder_config(const aom_codec_enc_cfg_t *cfg) {
1649
0
  AV1EncoderConfig oxcf;
1650
0
  struct av1_extracfg extra_cfg = default_extra_cfg;
1651
0
  set_encoder_config(&oxcf, cfg, &extra_cfg);
1652
0
  return oxcf;
1653
0
}
1654
1655
static aom_codec_err_t encoder_set_config(aom_codec_alg_priv_t *ctx,
1656
0
                                          const aom_codec_enc_cfg_t *cfg) {
1657
0
  aom_codec_err_t res;
1658
0
  volatile int force_key = 0;
1659
1660
0
  if (cfg->g_w != ctx->cfg.g_w || cfg->g_h != ctx->cfg.g_h) {
1661
0
    if (cfg->g_lag_in_frames > 1 || cfg->g_pass != AOM_RC_ONE_PASS)
1662
0
      ERROR("Cannot change width or height after initialization");
1663
    // Note: function encoder_set_config() is allowed to be called multiple
1664
    // times. However, when the original frame width or height is less than two
1665
    // times of the new frame width or height, a forced key frame should be
1666
    // used (for the case of single spatial layer, since otherwise a previous
1667
    // encoded frame at a lower layer may be the desired reference). To make
1668
    // sure the correct detection of a forced key frame, we need
1669
    // to update the frame width and height only when the actual encoding is
1670
    // performed. cpi->last_coded_width and cpi->last_coded_height are used to
1671
    // track the actual coded frame size.
1672
0
    if (ctx->ppi->cpi->svc.number_spatial_layers == 1 &&
1673
0
        ctx->ppi->cpi->last_coded_width && ctx->ppi->cpi->last_coded_height &&
1674
0
        (!valid_ref_frame_size(ctx->ppi->cpi->last_coded_width,
1675
0
                               ctx->ppi->cpi->last_coded_height, cfg->g_w,
1676
0
                               cfg->g_h) ||
1677
0
         ((int)cfg->g_w > ctx->ppi->cpi->last_coded_width) ||
1678
0
         ((int)cfg->g_h > ctx->ppi->cpi->last_coded_height))) {
1679
0
      force_key = 1;
1680
0
    }
1681
0
  }
1682
1683
0
  if (ctx->monochrome_on_init && cfg->monochrome == 0) {
1684
    // TODO(aomedia:3465): Allow this case to work without requiring re-init
1685
    // of encoder.
1686
0
    ERROR("Cannot change to monochrome = 0 after init with monochrome");
1687
0
  }
1688
1689
  // Prevent increasing lag_in_frames. This check is stricter than it needs
1690
  // to be -- the limit is not increasing past the first lag_in_frames
1691
  // value, but we don't track the initial config, only the last successful
1692
  // config.
1693
0
  if (cfg->g_lag_in_frames > ctx->cfg.g_lag_in_frames)
1694
0
    ERROR("Cannot increase lag_in_frames");
1695
  // Prevent changing lag_in_frames if Lookahead Processing is enabled
1696
0
  if (cfg->g_lag_in_frames != ctx->cfg.g_lag_in_frames &&
1697
0
      ctx->num_lap_buffers > 0)
1698
0
    ERROR("Cannot change lag_in_frames if LAP is enabled");
1699
1700
0
  res = validate_config(ctx, cfg, &ctx->extra_cfg);
1701
1702
0
  if (res == AOM_CODEC_OK) {
1703
0
    ctx->cfg = *cfg;
1704
0
    set_encoder_config(&ctx->oxcf, &ctx->cfg, &ctx->extra_cfg);
1705
    // On profile change, request a key frame
1706
0
    force_key |= ctx->ppi->seq_params.profile != ctx->oxcf.profile;
1707
0
    bool is_sb_size_changed = false;
1708
0
    av1_change_config_seq(ctx->ppi, &ctx->oxcf, &is_sb_size_changed);
1709
0
    for (int i = 0; i < ctx->ppi->num_fp_contexts; i++) {
1710
0
      AV1_COMP *const cpi = ctx->ppi->parallel_cpi[i];
1711
0
      ENABLE_SETJMP(cpi);
1712
0
      av1_change_config(cpi, &ctx->oxcf, is_sb_size_changed);
1713
0
      DISABLE_SETJMP(cpi);
1714
0
    }
1715
0
    if (ctx->ppi->cpi_lap != NULL) {
1716
0
      AV1_COMP *const cpi = ctx->ppi->cpi_lap;
1717
0
      ENABLE_SETJMP(cpi);
1718
0
      av1_change_config(cpi, &ctx->oxcf, is_sb_size_changed);
1719
0
      DISABLE_SETJMP(cpi);
1720
0
    }
1721
0
  }
1722
1723
0
  if (force_key) ctx->next_frame_flags |= AOM_EFLAG_FORCE_KF;
1724
1725
0
  return res;
1726
0
}
1727
1728
0
static aom_fixed_buf_t *encoder_get_global_headers(aom_codec_alg_priv_t *ctx) {
1729
0
  return av1_get_global_headers(ctx->ppi);
1730
0
}
1731
1732
static aom_codec_err_t ctrl_get_quantizer(aom_codec_alg_priv_t *ctx,
1733
0
                                          va_list args) {
1734
0
  int *const arg = va_arg(args, int *);
1735
0
  if (arg == NULL) return AOM_CODEC_INVALID_PARAM;
1736
0
  *arg = av1_get_quantizer(ctx->ppi->cpi);
1737
0
  return AOM_CODEC_OK;
1738
0
}
1739
1740
static aom_codec_err_t ctrl_get_quantizer64(aom_codec_alg_priv_t *ctx,
1741
0
                                            va_list args) {
1742
0
  int *const arg = va_arg(args, int *);
1743
0
  if (arg == NULL) return AOM_CODEC_INVALID_PARAM;
1744
0
  *arg = av1_qindex_to_quantizer(av1_get_quantizer(ctx->ppi->cpi));
1745
0
  return AOM_CODEC_OK;
1746
0
}
1747
1748
static aom_codec_err_t ctrl_get_loopfilter_level(aom_codec_alg_priv_t *ctx,
1749
0
                                                 va_list args) {
1750
0
  int *const arg = va_arg(args, int *);
1751
0
  if (arg == NULL) return AOM_CODEC_INVALID_PARAM;
1752
0
  *arg = ctx->ppi->cpi->common.lf.filter_level[0];
1753
0
  return AOM_CODEC_OK;
1754
0
}
1755
1756
static aom_codec_err_t ctrl_get_baseline_gf_interval(aom_codec_alg_priv_t *ctx,
1757
0
                                                     va_list args) {
1758
0
  int *const arg = va_arg(args, int *);
1759
0
  if (arg == NULL) return AOM_CODEC_INVALID_PARAM;
1760
0
  *arg = ctx->ppi->p_rc.baseline_gf_interval;
1761
0
  return AOM_CODEC_OK;
1762
0
}
1763
1764
0
static aom_codec_err_t update_encoder_cfg(aom_codec_alg_priv_t *ctx) {
1765
  // Disable denoiser for spatial layers. Bug: 485332522.
1766
  // TODO: bug 485332522 - Disable denoiser for spatial layers until
1767
  // more testing is done
1768
0
  if (ctx->ppi->cpi->svc.number_spatial_layers > 1)
1769
0
    ctx->extra_cfg.noise_sensitivity = 0;
1770
0
  set_encoder_config(&ctx->oxcf, &ctx->cfg, &ctx->extra_cfg);
1771
0
  av1_check_fpmt_config(ctx->ppi, &ctx->oxcf);
1772
0
  bool is_sb_size_changed = false;
1773
0
  av1_change_config_seq(ctx->ppi, &ctx->oxcf, &is_sb_size_changed);
1774
0
  for (int i = 0; i < ctx->ppi->num_fp_contexts; i++) {
1775
0
    AV1_COMP *const cpi = ctx->ppi->parallel_cpi[i];
1776
0
    ENABLE_SETJMP(cpi);
1777
0
    av1_change_config(cpi, &ctx->oxcf, is_sb_size_changed);
1778
0
    DISABLE_SETJMP(cpi);
1779
0
  }
1780
0
  if (ctx->ppi->cpi_lap != NULL) {
1781
0
    AV1_COMP *const cpi_lap = ctx->ppi->cpi_lap;
1782
0
    ENABLE_SETJMP(cpi_lap);
1783
0
    av1_change_config(cpi_lap, &ctx->oxcf, is_sb_size_changed);
1784
0
    DISABLE_SETJMP(cpi_lap);
1785
0
  }
1786
0
  return AOM_CODEC_OK;
1787
0
}
1788
1789
static aom_codec_err_t update_extra_cfg(aom_codec_alg_priv_t *ctx,
1790
0
                                        const struct av1_extracfg *extra_cfg) {
1791
0
  const aom_codec_err_t res = validate_config(ctx, &ctx->cfg, extra_cfg);
1792
0
  if (res == AOM_CODEC_OK) {
1793
0
    ctx->extra_cfg = *extra_cfg;
1794
0
    return update_encoder_cfg(ctx);
1795
0
  }
1796
0
  return res;
1797
0
}
1798
1799
static aom_codec_err_t ctrl_get_gop_info(aom_codec_alg_priv_t *ctx,
1800
0
                                         va_list args) {
1801
0
  aom_gop_info_t *const gop_info = va_arg(args, aom_gop_info_t *);
1802
0
  if (gop_info == NULL) return AOM_CODEC_INVALID_PARAM;
1803
0
  const GF_GROUP *const gf_group = &ctx->ppi->gf_group;
1804
0
  gop_info->gop_size = gf_group->size;
1805
0
  for (int i = 0; i < gf_group->size; ++i) {
1806
0
    gop_info->coding_index[i] = i;
1807
0
    gop_info->display_index[i] = gf_group->display_idx[i];
1808
0
    gop_info->layer_depth[i] = gf_group->layer_depth[i];
1809
0
  }
1810
0
  return AOM_CODEC_OK;
1811
0
}
1812
1813
static aom_codec_err_t ctrl_set_cpuused(aom_codec_alg_priv_t *ctx,
1814
0
                                        va_list args) {
1815
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
1816
0
  extra_cfg.cpu_used = CAST(AOME_SET_CPUUSED, args);
1817
0
  return update_extra_cfg(ctx, &extra_cfg);
1818
0
}
1819
1820
static aom_codec_err_t ctrl_set_enable_auto_alt_ref(aom_codec_alg_priv_t *ctx,
1821
0
                                                    va_list args) {
1822
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
1823
0
  extra_cfg.enable_auto_alt_ref = CAST(AOME_SET_ENABLEAUTOALTREF, args);
1824
0
  return update_extra_cfg(ctx, &extra_cfg);
1825
0
}
1826
1827
static aom_codec_err_t ctrl_set_enable_auto_bwd_ref(aom_codec_alg_priv_t *ctx,
1828
0
                                                    va_list args) {
1829
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
1830
0
  extra_cfg.enable_auto_bwd_ref = CAST(AOME_SET_ENABLEAUTOBWDREF, args);
1831
0
  return update_extra_cfg(ctx, &extra_cfg);
1832
0
}
1833
1834
static aom_codec_err_t ctrl_set_noise_sensitivity(aom_codec_alg_priv_t *ctx,
1835
0
                                                  va_list args) {
1836
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
1837
0
  extra_cfg.noise_sensitivity = CAST(AV1E_SET_NOISE_SENSITIVITY, args);
1838
0
  return update_extra_cfg(ctx, &extra_cfg);
1839
0
}
1840
1841
static aom_codec_err_t ctrl_set_sharpness(aom_codec_alg_priv_t *ctx,
1842
0
                                          va_list args) {
1843
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
1844
0
  extra_cfg.sharpness = CAST(AOME_SET_SHARPNESS, args);
1845
0
  return update_extra_cfg(ctx, &extra_cfg);
1846
0
}
1847
1848
static aom_codec_err_t ctrl_set_enable_adaptive_sharpness(
1849
0
    aom_codec_alg_priv_t *ctx, va_list args) {
1850
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
1851
0
  extra_cfg.enable_adaptive_sharpness =
1852
0
      CAST(AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS, args);
1853
0
  return update_extra_cfg(ctx, &extra_cfg);
1854
0
}
1855
1856
static aom_codec_err_t ctrl_set_static_thresh(aom_codec_alg_priv_t *ctx,
1857
0
                                              va_list args) {
1858
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
1859
0
  extra_cfg.static_thresh = CAST(AOME_SET_STATIC_THRESHOLD, args);
1860
0
  return update_extra_cfg(ctx, &extra_cfg);
1861
0
}
1862
1863
static aom_codec_err_t ctrl_set_row_mt(aom_codec_alg_priv_t *ctx,
1864
0
                                       va_list args) {
1865
0
  unsigned int row_mt = CAST(AV1E_SET_ROW_MT, args);
1866
0
  if (row_mt == ctx->extra_cfg.row_mt) return AOM_CODEC_OK;
1867
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
1868
0
  extra_cfg.row_mt = row_mt;
1869
0
  return update_extra_cfg(ctx, &extra_cfg);
1870
0
}
1871
1872
static aom_codec_err_t ctrl_set_tile_columns(aom_codec_alg_priv_t *ctx,
1873
0
                                             va_list args) {
1874
  // If the control AUTO_TILES is used (set to 1) then don't override
1875
  // the tile_columns set via the AUTO_TILES control.
1876
0
  if (ctx->extra_cfg.auto_tiles) {
1877
0
    ERROR("AUTO_TILES is set so AV1E_SET_TILE_COLUMNS should not be called.");
1878
0
  }
1879
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
1880
0
  unsigned int tile_columns = CAST(AV1E_SET_TILE_COLUMNS, args);
1881
0
  if (tile_columns == extra_cfg.tile_columns) return AOM_CODEC_OK;
1882
0
  extra_cfg.tile_columns = tile_columns;
1883
0
  return update_extra_cfg(ctx, &extra_cfg);
1884
0
}
1885
1886
static aom_codec_err_t ctrl_set_tile_rows(aom_codec_alg_priv_t *ctx,
1887
0
                                          va_list args) {
1888
  // If the control AUTO_TILES is used (set to 1) then don't override
1889
  // the tile_rows set via the AUTO_TILES control.
1890
0
  if (ctx->extra_cfg.auto_tiles) {
1891
0
    ERROR("AUTO_TILES is set so AV1E_SET_TILE_ROWS should not be called.");
1892
0
  }
1893
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
1894
0
  unsigned int tile_rows = CAST(AV1E_SET_TILE_ROWS, args);
1895
0
  if (tile_rows == extra_cfg.tile_rows) return AOM_CODEC_OK;
1896
0
  extra_cfg.tile_rows = tile_rows;
1897
0
  return update_extra_cfg(ctx, &extra_cfg);
1898
0
}
1899
1900
static aom_codec_err_t ctrl_set_enable_tpl_model(aom_codec_alg_priv_t *ctx,
1901
0
                                                 va_list args) {
1902
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
1903
0
  const unsigned int tpl_model_arg = CAST(AV1E_SET_ENABLE_TPL_MODEL, args);
1904
#if CONFIG_REALTIME_ONLY
1905
  if (tpl_model_arg) {
1906
    ERROR("TPL model can't be turned on in realtime only build.");
1907
  }
1908
#endif
1909
0
  extra_cfg.enable_tpl_model = tpl_model_arg;
1910
0
  return update_extra_cfg(ctx, &extra_cfg);
1911
0
}
1912
1913
static aom_codec_err_t ctrl_set_enable_keyframe_filtering(
1914
0
    aom_codec_alg_priv_t *ctx, va_list args) {
1915
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
1916
0
  extra_cfg.enable_keyframe_filtering =
1917
0
      CAST(AV1E_SET_ENABLE_KEYFRAME_FILTERING, args);
1918
0
  return update_extra_cfg(ctx, &extra_cfg);
1919
0
}
1920
1921
static aom_codec_err_t ctrl_set_validate_hbd_input(aom_codec_alg_priv_t *ctx,
1922
0
                                                   va_list args) {
1923
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
1924
0
  extra_cfg.validate_hbd_input = CAST(AOME_SET_VALIDATE_HBD_INPUT, args);
1925
0
  return update_extra_cfg(ctx, &extra_cfg);
1926
0
}
1927
1928
static aom_codec_err_t ctrl_set_arnr_max_frames(aom_codec_alg_priv_t *ctx,
1929
0
                                                va_list args) {
1930
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
1931
0
  extra_cfg.arnr_max_frames = CAST(AOME_SET_ARNR_MAXFRAMES, args);
1932
0
  return update_extra_cfg(ctx, &extra_cfg);
1933
0
}
1934
1935
static aom_codec_err_t ctrl_set_arnr_strength(aom_codec_alg_priv_t *ctx,
1936
0
                                              va_list args) {
1937
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
1938
0
  extra_cfg.arnr_strength = CAST(AOME_SET_ARNR_STRENGTH, args);
1939
0
  return update_extra_cfg(ctx, &extra_cfg);
1940
0
}
1941
1942
0
static aom_codec_err_t handle_tuning(struct av1_extracfg *extra_cfg) {
1943
0
  if (extra_cfg->tuning == AOM_TUNE_IQ ||
1944
0
      extra_cfg->tuning == AOM_TUNE_SSIMULACRA2) {
1945
    // Enable QMs as they've been found to be beneficial for images, when used
1946
    // with alternative QM formulas:
1947
    // - aom_get_qmlevel_allintra()
1948
    // - aom_get_qmlevel_luma_ssimulacra2()
1949
    // - aom_get_qmlevel_444_chroma()
1950
0
    extra_cfg->enable_qm = 1;
1951
0
    extra_cfg->qm_min = QM_FIRST_IQ_SSIMULACRA2;
1952
0
    extra_cfg->qm_max = QM_LAST_IQ_SSIMULACRA2;
1953
    // Sharpness has been found to be beneficial for images (better perceptual
1954
    // quality).
1955
0
    extra_cfg->sharpness = 7;
1956
    // Using the QM-PSNR metric was found to be beneficial for images (over the
1957
    // default PSNR metric), as it correlates better with subjective image
1958
    // quality consistency and better SSIMULACRA 2 scores.
1959
0
    extra_cfg->dist_metric = AOM_DIST_METRIC_QM_PSNR;
1960
    // CDEF_ALL has been found to blur images at medium and high quality
1961
    // qindexes, so let's use a version that adapts CDEF strength on frame
1962
    // qindexes. CDEF_ADAPTIVE strengths look like this for varying qindexes:
1963
    // - CDEF off:          0 -  32
1964
    // - Reduced strength: 33 - 220
1965
    // - Full strength:   221 - 255
1966
0
    extra_cfg->enable_cdef = CDEF_ADAPTIVE;
1967
    // Enable chroma deltaq so the encoder can factor in chroma subsampling and
1968
    // adjust chroma quality when necessary.
1969
0
    extra_cfg->enable_chroma_deltaq = 1;
1970
    // Enable "Variance Boost" deltaq mode, optimized for images.
1971
0
    extra_cfg->deltaq_mode = DELTA_Q_VARIANCE_BOOST;
1972
    // Enable "anti-aliased text and graphics aware" screen detection mode.
1973
0
    extra_cfg->screen_detection_mode = AOM_SCREEN_DETECTION_ANTIALIASING_AWARE;
1974
0
  }
1975
0
  if (extra_cfg->tuning == AOM_TUNE_IQ) {
1976
    // Enable adaptive sharpness to adjust loop filter levels according to QP.
1977
    // Takes a small SSIMULACRA2 hit on the lower quality end, so enable it
1978
    // just for tune IQ.
1979
0
    extra_cfg->enable_adaptive_sharpness = 1;
1980
0
  }
1981
0
  return AOM_CODEC_OK;
1982
0
}
1983
1984
static aom_codec_err_t ctrl_set_tuning(aom_codec_alg_priv_t *ctx,
1985
0
                                       va_list args) {
1986
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
1987
0
  extra_cfg.tuning = CAST(AOME_SET_TUNING, args);
1988
0
  aom_codec_err_t err = handle_tuning(&extra_cfg);
1989
0
  if (err != AOM_CODEC_OK) return err;
1990
0
  return update_extra_cfg(ctx, &extra_cfg);
1991
0
}
1992
1993
static aom_codec_err_t ctrl_set_cq_level(aom_codec_alg_priv_t *ctx,
1994
0
                                         va_list args) {
1995
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
1996
0
  extra_cfg.cq_level = CAST(AOME_SET_CQ_LEVEL, args);
1997
0
  return update_extra_cfg(ctx, &extra_cfg);
1998
0
}
1999
2000
static aom_codec_err_t ctrl_set_rc_max_intra_bitrate_pct(
2001
0
    aom_codec_alg_priv_t *ctx, va_list args) {
2002
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2003
0
  extra_cfg.rc_max_intra_bitrate_pct =
2004
0
      CAST(AOME_SET_MAX_INTRA_BITRATE_PCT, args);
2005
0
  return update_extra_cfg(ctx, &extra_cfg);
2006
0
}
2007
2008
static aom_codec_err_t ctrl_set_rc_max_inter_bitrate_pct(
2009
0
    aom_codec_alg_priv_t *ctx, va_list args) {
2010
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2011
0
  extra_cfg.rc_max_inter_bitrate_pct =
2012
0
      CAST(AOME_SET_MAX_INTER_BITRATE_PCT, args);
2013
0
  return update_extra_cfg(ctx, &extra_cfg);
2014
0
}
2015
2016
static aom_codec_err_t ctrl_set_rc_gf_cbr_boost_pct(aom_codec_alg_priv_t *ctx,
2017
0
                                                    va_list args) {
2018
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2019
0
  extra_cfg.gf_cbr_boost_pct = CAST(AV1E_SET_GF_CBR_BOOST_PCT, args);
2020
0
  return update_extra_cfg(ctx, &extra_cfg);
2021
0
}
2022
2023
static aom_codec_err_t ctrl_set_lossless(aom_codec_alg_priv_t *ctx,
2024
0
                                         va_list args) {
2025
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2026
0
  extra_cfg.lossless = CAST(AV1E_SET_LOSSLESS, args);
2027
0
  return update_extra_cfg(ctx, &extra_cfg);
2028
0
}
2029
2030
static aom_codec_err_t ctrl_set_enable_cdef(aom_codec_alg_priv_t *ctx,
2031
0
                                            va_list args) {
2032
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2033
0
  extra_cfg.enable_cdef = CAST(AV1E_SET_ENABLE_CDEF, args);
2034
0
  return update_extra_cfg(ctx, &extra_cfg);
2035
0
}
2036
2037
static aom_codec_err_t ctrl_set_enable_restoration(aom_codec_alg_priv_t *ctx,
2038
0
                                                   va_list args) {
2039
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2040
0
  const unsigned int restoration_arg = CAST(AV1E_SET_ENABLE_RESTORATION, args);
2041
#if CONFIG_REALTIME_ONLY
2042
  if (restoration_arg) {
2043
    ERROR("Restoration can't be turned on in realtime only build.");
2044
  }
2045
#endif
2046
0
  extra_cfg.enable_restoration = restoration_arg;
2047
0
  return update_extra_cfg(ctx, &extra_cfg);
2048
0
}
2049
2050
static aom_codec_err_t ctrl_set_force_video_mode(aom_codec_alg_priv_t *ctx,
2051
0
                                                 va_list args) {
2052
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2053
0
  extra_cfg.force_video_mode = CAST(AV1E_SET_FORCE_VIDEO_MODE, args);
2054
0
  return update_extra_cfg(ctx, &extra_cfg);
2055
0
}
2056
2057
static aom_codec_err_t ctrl_set_enable_obmc(aom_codec_alg_priv_t *ctx,
2058
0
                                            va_list args) {
2059
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2060
0
  const unsigned int obmc_arg = CAST(AV1E_SET_ENABLE_OBMC, args);
2061
#if CONFIG_REALTIME_ONLY
2062
  if (obmc_arg) {
2063
    ERROR("OBMC can't be enabled in realtime only build.");
2064
  }
2065
#endif
2066
0
  extra_cfg.enable_obmc = obmc_arg;
2067
0
  return update_extra_cfg(ctx, &extra_cfg);
2068
0
}
2069
2070
static aom_codec_err_t ctrl_set_disable_trellis_quant(aom_codec_alg_priv_t *ctx,
2071
0
                                                      va_list args) {
2072
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2073
0
  extra_cfg.disable_trellis_quant = CAST(AV1E_SET_DISABLE_TRELLIS_QUANT, args);
2074
0
  return update_extra_cfg(ctx, &extra_cfg);
2075
0
}
2076
2077
static aom_codec_err_t ctrl_set_enable_qm(aom_codec_alg_priv_t *ctx,
2078
0
                                          va_list args) {
2079
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2080
0
  extra_cfg.enable_qm = CAST(AV1E_SET_ENABLE_QM, args);
2081
#if !CONFIG_QUANT_MATRIX
2082
  if (extra_cfg.enable_qm) {
2083
    ERROR("QM can't be enabled with CONFIG_QUANT_MATRIX=0.");
2084
  }
2085
#endif
2086
0
  return update_extra_cfg(ctx, &extra_cfg);
2087
0
}
2088
0
static aom_codec_err_t ctrl_set_qm_y(aom_codec_alg_priv_t *ctx, va_list args) {
2089
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2090
0
  extra_cfg.qm_y = CAST(AV1E_SET_QM_Y, args);
2091
0
  return update_extra_cfg(ctx, &extra_cfg);
2092
0
}
2093
0
static aom_codec_err_t ctrl_set_qm_u(aom_codec_alg_priv_t *ctx, va_list args) {
2094
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2095
0
  extra_cfg.qm_u = CAST(AV1E_SET_QM_U, args);
2096
0
  return update_extra_cfg(ctx, &extra_cfg);
2097
0
}
2098
0
static aom_codec_err_t ctrl_set_qm_v(aom_codec_alg_priv_t *ctx, va_list args) {
2099
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2100
0
  extra_cfg.qm_v = CAST(AV1E_SET_QM_V, args);
2101
0
  return update_extra_cfg(ctx, &extra_cfg);
2102
0
}
2103
static aom_codec_err_t ctrl_set_qm_min(aom_codec_alg_priv_t *ctx,
2104
0
                                       va_list args) {
2105
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2106
0
  extra_cfg.qm_min = CAST(AV1E_SET_QM_MIN, args);
2107
0
  return update_extra_cfg(ctx, &extra_cfg);
2108
0
}
2109
2110
static aom_codec_err_t ctrl_set_qm_max(aom_codec_alg_priv_t *ctx,
2111
0
                                       va_list args) {
2112
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2113
0
  extra_cfg.qm_max = CAST(AV1E_SET_QM_MAX, args);
2114
0
  return update_extra_cfg(ctx, &extra_cfg);
2115
0
}
2116
2117
static aom_codec_err_t ctrl_set_num_tg(aom_codec_alg_priv_t *ctx,
2118
0
                                       va_list args) {
2119
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2120
0
  extra_cfg.num_tg = CAST(AV1E_SET_NUM_TG, args);
2121
0
  return update_extra_cfg(ctx, &extra_cfg);
2122
0
}
2123
2124
0
static aom_codec_err_t ctrl_set_mtu(aom_codec_alg_priv_t *ctx, va_list args) {
2125
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2126
0
  extra_cfg.mtu_size = CAST(AV1E_SET_MTU, args);
2127
0
  return update_extra_cfg(ctx, &extra_cfg);
2128
0
}
2129
static aom_codec_err_t ctrl_set_timing_info_type(aom_codec_alg_priv_t *ctx,
2130
0
                                                 va_list args) {
2131
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2132
0
  extra_cfg.timing_info_type = CAST(AV1E_SET_TIMING_INFO_TYPE, args);
2133
0
  return update_extra_cfg(ctx, &extra_cfg);
2134
0
}
2135
2136
static aom_codec_err_t ctrl_set_enable_low_complexity_decode(
2137
0
    aom_codec_alg_priv_t *ctx, va_list args) {
2138
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2139
0
  extra_cfg.enable_low_complexity_decode =
2140
0
      CAST(AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE, args);
2141
0
  return update_extra_cfg(ctx, &extra_cfg);
2142
0
}
2143
2144
static aom_codec_err_t ctrl_set_enable_dual_filter(aom_codec_alg_priv_t *ctx,
2145
0
                                                   va_list args) {
2146
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2147
0
  extra_cfg.enable_dual_filter = CAST(AV1E_SET_ENABLE_DUAL_FILTER, args);
2148
0
  return update_extra_cfg(ctx, &extra_cfg);
2149
0
}
2150
2151
static aom_codec_err_t ctrl_set_enable_chroma_deltaq(aom_codec_alg_priv_t *ctx,
2152
0
                                                     va_list args) {
2153
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2154
0
  extra_cfg.enable_chroma_deltaq = CAST(AV1E_SET_ENABLE_CHROMA_DELTAQ, args);
2155
0
  return update_extra_cfg(ctx, &extra_cfg);
2156
0
}
2157
2158
static aom_codec_err_t ctrl_set_enable_rect_partitions(
2159
0
    aom_codec_alg_priv_t *ctx, va_list args) {
2160
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2161
0
  extra_cfg.enable_rect_partitions =
2162
0
      CAST(AV1E_SET_ENABLE_RECT_PARTITIONS, args);
2163
0
  return update_extra_cfg(ctx, &extra_cfg);
2164
0
}
2165
2166
static aom_codec_err_t ctrl_set_enable_ab_partitions(aom_codec_alg_priv_t *ctx,
2167
0
                                                     va_list args) {
2168
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2169
0
  extra_cfg.enable_ab_partitions = CAST(AV1E_SET_ENABLE_AB_PARTITIONS, args);
2170
0
  return update_extra_cfg(ctx, &extra_cfg);
2171
0
}
2172
2173
static aom_codec_err_t ctrl_set_enable_1to4_partitions(
2174
0
    aom_codec_alg_priv_t *ctx, va_list args) {
2175
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2176
0
  extra_cfg.enable_1to4_partitions =
2177
0
      CAST(AV1E_SET_ENABLE_1TO4_PARTITIONS, args);
2178
0
  return update_extra_cfg(ctx, &extra_cfg);
2179
0
}
2180
2181
static aom_codec_err_t ctrl_set_min_partition_size(aom_codec_alg_priv_t *ctx,
2182
0
                                                   va_list args) {
2183
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2184
0
  extra_cfg.min_partition_size = CAST(AV1E_SET_MIN_PARTITION_SIZE, args);
2185
0
  return update_extra_cfg(ctx, &extra_cfg);
2186
0
}
2187
2188
static aom_codec_err_t ctrl_set_max_partition_size(aom_codec_alg_priv_t *ctx,
2189
0
                                                   va_list args) {
2190
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2191
0
  extra_cfg.max_partition_size = CAST(AV1E_SET_MAX_PARTITION_SIZE, args);
2192
0
  return update_extra_cfg(ctx, &extra_cfg);
2193
0
}
2194
2195
static aom_codec_err_t ctrl_set_enable_intra_edge_filter(
2196
0
    aom_codec_alg_priv_t *ctx, va_list args) {
2197
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2198
0
  extra_cfg.enable_intra_edge_filter =
2199
0
      CAST(AV1E_SET_ENABLE_INTRA_EDGE_FILTER, args);
2200
0
  return update_extra_cfg(ctx, &extra_cfg);
2201
0
}
2202
2203
static aom_codec_err_t ctrl_set_enable_order_hint(aom_codec_alg_priv_t *ctx,
2204
0
                                                  va_list args) {
2205
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2206
0
  extra_cfg.enable_order_hint = CAST(AV1E_SET_ENABLE_ORDER_HINT, args);
2207
0
  return update_extra_cfg(ctx, &extra_cfg);
2208
0
}
2209
2210
static aom_codec_err_t ctrl_set_enable_tx64(aom_codec_alg_priv_t *ctx,
2211
0
                                            va_list args) {
2212
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2213
0
  extra_cfg.enable_tx64 = CAST(AV1E_SET_ENABLE_TX64, args);
2214
0
  return update_extra_cfg(ctx, &extra_cfg);
2215
0
}
2216
2217
static aom_codec_err_t ctrl_set_enable_flip_idtx(aom_codec_alg_priv_t *ctx,
2218
0
                                                 va_list args) {
2219
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2220
0
  extra_cfg.enable_flip_idtx = CAST(AV1E_SET_ENABLE_FLIP_IDTX, args);
2221
0
  return update_extra_cfg(ctx, &extra_cfg);
2222
0
}
2223
2224
static aom_codec_err_t ctrl_set_enable_rect_tx(aom_codec_alg_priv_t *ctx,
2225
0
                                               va_list args) {
2226
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2227
0
  extra_cfg.enable_rect_tx = CAST(AV1E_SET_ENABLE_RECT_TX, args);
2228
0
  return update_extra_cfg(ctx, &extra_cfg);
2229
0
}
2230
2231
static aom_codec_err_t ctrl_set_enable_dist_wtd_comp(aom_codec_alg_priv_t *ctx,
2232
0
                                                     va_list args) {
2233
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2234
0
  extra_cfg.enable_dist_wtd_comp = CAST(AV1E_SET_ENABLE_DIST_WTD_COMP, args);
2235
0
  return update_extra_cfg(ctx, &extra_cfg);
2236
0
}
2237
2238
static aom_codec_err_t ctrl_set_max_reference_frames(aom_codec_alg_priv_t *ctx,
2239
0
                                                     va_list args) {
2240
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2241
0
  extra_cfg.max_reference_frames = CAST(AV1E_SET_MAX_REFERENCE_FRAMES, args);
2242
0
  return update_extra_cfg(ctx, &extra_cfg);
2243
0
}
2244
2245
static aom_codec_err_t ctrl_set_enable_reduced_reference_set(
2246
0
    aom_codec_alg_priv_t *ctx, va_list args) {
2247
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2248
0
  extra_cfg.enable_reduced_reference_set =
2249
0
      CAST(AV1E_SET_REDUCED_REFERENCE_SET, args);
2250
0
  return update_extra_cfg(ctx, &extra_cfg);
2251
0
}
2252
2253
static aom_codec_err_t ctrl_set_enable_ref_frame_mvs(aom_codec_alg_priv_t *ctx,
2254
0
                                                     va_list args) {
2255
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2256
0
  extra_cfg.enable_ref_frame_mvs = CAST(AV1E_SET_ENABLE_REF_FRAME_MVS, args);
2257
0
  return update_extra_cfg(ctx, &extra_cfg);
2258
0
}
2259
2260
static aom_codec_err_t ctrl_set_allow_ref_frame_mvs(aom_codec_alg_priv_t *ctx,
2261
0
                                                    va_list args) {
2262
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2263
0
  extra_cfg.allow_ref_frame_mvs = CAST(AV1E_SET_ALLOW_REF_FRAME_MVS, args);
2264
0
  return update_extra_cfg(ctx, &extra_cfg);
2265
0
}
2266
2267
static aom_codec_err_t ctrl_set_enable_masked_comp(aom_codec_alg_priv_t *ctx,
2268
0
                                                   va_list args) {
2269
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2270
0
  extra_cfg.enable_masked_comp = CAST(AV1E_SET_ENABLE_MASKED_COMP, args);
2271
0
  return update_extra_cfg(ctx, &extra_cfg);
2272
0
}
2273
2274
static aom_codec_err_t ctrl_set_enable_onesided_comp(aom_codec_alg_priv_t *ctx,
2275
0
                                                     va_list args) {
2276
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2277
0
  extra_cfg.enable_onesided_comp = CAST(AV1E_SET_ENABLE_ONESIDED_COMP, args);
2278
0
  return update_extra_cfg(ctx, &extra_cfg);
2279
0
}
2280
2281
static aom_codec_err_t ctrl_set_enable_interintra_comp(
2282
0
    aom_codec_alg_priv_t *ctx, va_list args) {
2283
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2284
0
  extra_cfg.enable_interintra_comp =
2285
0
      CAST(AV1E_SET_ENABLE_INTERINTRA_COMP, args);
2286
0
  return update_extra_cfg(ctx, &extra_cfg);
2287
0
}
2288
2289
static aom_codec_err_t ctrl_set_enable_smooth_interintra(
2290
0
    aom_codec_alg_priv_t *ctx, va_list args) {
2291
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2292
0
  extra_cfg.enable_smooth_interintra =
2293
0
      CAST(AV1E_SET_ENABLE_SMOOTH_INTERINTRA, args);
2294
0
  return update_extra_cfg(ctx, &extra_cfg);
2295
0
}
2296
2297
static aom_codec_err_t ctrl_set_enable_diff_wtd_comp(aom_codec_alg_priv_t *ctx,
2298
0
                                                     va_list args) {
2299
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2300
0
  extra_cfg.enable_diff_wtd_comp = CAST(AV1E_SET_ENABLE_DIFF_WTD_COMP, args);
2301
0
  return update_extra_cfg(ctx, &extra_cfg);
2302
0
}
2303
2304
static aom_codec_err_t ctrl_set_enable_interinter_wedge(
2305
0
    aom_codec_alg_priv_t *ctx, va_list args) {
2306
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2307
0
  extra_cfg.enable_interinter_wedge =
2308
0
      CAST(AV1E_SET_ENABLE_INTERINTER_WEDGE, args);
2309
0
  return update_extra_cfg(ctx, &extra_cfg);
2310
0
}
2311
2312
static aom_codec_err_t ctrl_set_enable_interintra_wedge(
2313
0
    aom_codec_alg_priv_t *ctx, va_list args) {
2314
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2315
0
  extra_cfg.enable_interintra_wedge =
2316
0
      CAST(AV1E_SET_ENABLE_INTERINTRA_WEDGE, args);
2317
0
  return update_extra_cfg(ctx, &extra_cfg);
2318
0
}
2319
2320
static aom_codec_err_t ctrl_set_enable_global_motion(aom_codec_alg_priv_t *ctx,
2321
0
                                                     va_list args) {
2322
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2323
0
  const int global_motion_arg = CAST(AV1E_SET_ENABLE_GLOBAL_MOTION, args);
2324
#if CONFIG_REALTIME_ONLY
2325
  if (global_motion_arg) {
2326
    ERROR("Global motion can't be enabled in realtime only build.");
2327
  }
2328
#endif
2329
0
  extra_cfg.enable_global_motion = global_motion_arg;
2330
0
  return update_extra_cfg(ctx, &extra_cfg);
2331
0
}
2332
2333
static aom_codec_err_t ctrl_set_enable_warped_motion(aom_codec_alg_priv_t *ctx,
2334
0
                                                     va_list args) {
2335
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2336
0
  const int warped_motion_arg = CAST(AV1E_SET_ENABLE_WARPED_MOTION, args);
2337
#if CONFIG_REALTIME_ONLY
2338
  if (warped_motion_arg) {
2339
    ERROR("Warped motion can't be enabled in realtime only build.");
2340
  }
2341
#endif
2342
0
  extra_cfg.enable_warped_motion = warped_motion_arg;
2343
0
  return update_extra_cfg(ctx, &extra_cfg);
2344
0
}
2345
2346
static aom_codec_err_t ctrl_set_allow_warped_motion(aom_codec_alg_priv_t *ctx,
2347
0
                                                    va_list args) {
2348
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2349
0
  extra_cfg.allow_warped_motion = CAST(AV1E_SET_ALLOW_WARPED_MOTION, args);
2350
0
  return update_extra_cfg(ctx, &extra_cfg);
2351
0
}
2352
2353
static aom_codec_err_t ctrl_set_enable_filter_intra(aom_codec_alg_priv_t *ctx,
2354
0
                                                    va_list args) {
2355
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2356
0
  extra_cfg.enable_filter_intra = CAST(AV1E_SET_ENABLE_FILTER_INTRA, args);
2357
0
  return update_extra_cfg(ctx, &extra_cfg);
2358
0
}
2359
2360
static aom_codec_err_t ctrl_set_enable_smooth_intra(aom_codec_alg_priv_t *ctx,
2361
0
                                                    va_list args) {
2362
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2363
0
  extra_cfg.enable_smooth_intra = CAST(AV1E_SET_ENABLE_SMOOTH_INTRA, args);
2364
0
  return update_extra_cfg(ctx, &extra_cfg);
2365
0
}
2366
2367
static aom_codec_err_t ctrl_set_enable_directional_intra(
2368
0
    aom_codec_alg_priv_t *ctx, va_list args) {
2369
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2370
0
  extra_cfg.enable_directional_intra =
2371
0
      CAST(AV1E_SET_ENABLE_DIRECTIONAL_INTRA, args);
2372
0
  return update_extra_cfg(ctx, &extra_cfg);
2373
0
}
2374
2375
static aom_codec_err_t ctrl_set_enable_diagonal_intra(aom_codec_alg_priv_t *ctx,
2376
0
                                                      va_list args) {
2377
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2378
0
  extra_cfg.enable_diagonal_intra = CAST(AV1E_SET_ENABLE_DIAGONAL_INTRA, args);
2379
0
  return update_extra_cfg(ctx, &extra_cfg);
2380
0
}
2381
2382
static aom_codec_err_t ctrl_set_enable_paeth_intra(aom_codec_alg_priv_t *ctx,
2383
0
                                                   va_list args) {
2384
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2385
0
  extra_cfg.enable_paeth_intra = CAST(AV1E_SET_ENABLE_PAETH_INTRA, args);
2386
0
  return update_extra_cfg(ctx, &extra_cfg);
2387
0
}
2388
2389
static aom_codec_err_t ctrl_set_enable_cfl_intra(aom_codec_alg_priv_t *ctx,
2390
0
                                                 va_list args) {
2391
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2392
0
  extra_cfg.enable_cfl_intra = CAST(AV1E_SET_ENABLE_CFL_INTRA, args);
2393
#if CONFIG_REALTIME_ONLY
2394
  if (extra_cfg.enable_cfl_intra) {
2395
    ERROR("cfl can't be turned on in realtime only build.");
2396
  }
2397
#endif
2398
0
  return update_extra_cfg(ctx, &extra_cfg);
2399
0
}
2400
2401
static aom_codec_err_t ctrl_set_enable_superres(aom_codec_alg_priv_t *ctx,
2402
0
                                                va_list args) {
2403
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2404
0
  extra_cfg.enable_superres = CAST(AV1E_SET_ENABLE_SUPERRES, args);
2405
0
  return update_extra_cfg(ctx, &extra_cfg);
2406
0
}
2407
2408
static aom_codec_err_t ctrl_set_enable_overlay(aom_codec_alg_priv_t *ctx,
2409
0
                                               va_list args) {
2410
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2411
0
  extra_cfg.enable_overlay = CAST(AV1E_SET_ENABLE_OVERLAY, args);
2412
0
  return update_extra_cfg(ctx, &extra_cfg);
2413
0
}
2414
2415
static aom_codec_err_t ctrl_set_enable_palette(aom_codec_alg_priv_t *ctx,
2416
0
                                               va_list args) {
2417
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2418
0
  extra_cfg.enable_palette = CAST(AV1E_SET_ENABLE_PALETTE, args);
2419
0
  return update_extra_cfg(ctx, &extra_cfg);
2420
0
}
2421
2422
static aom_codec_err_t ctrl_set_enable_intrabc(aom_codec_alg_priv_t *ctx,
2423
0
                                               va_list args) {
2424
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2425
0
  extra_cfg.enable_intrabc = CAST(AV1E_SET_ENABLE_INTRABC, args);
2426
0
  return update_extra_cfg(ctx, &extra_cfg);
2427
0
}
2428
2429
static aom_codec_err_t ctrl_set_enable_angle_delta(aom_codec_alg_priv_t *ctx,
2430
0
                                                   va_list args) {
2431
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2432
0
  extra_cfg.enable_angle_delta = CAST(AV1E_SET_ENABLE_ANGLE_DELTA, args);
2433
0
  return update_extra_cfg(ctx, &extra_cfg);
2434
0
}
2435
2436
static aom_codec_err_t ctrl_set_error_resilient_mode(aom_codec_alg_priv_t *ctx,
2437
0
                                                     va_list args) {
2438
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2439
0
  extra_cfg.error_resilient_mode = CAST(AV1E_SET_ERROR_RESILIENT_MODE, args);
2440
0
  return update_extra_cfg(ctx, &extra_cfg);
2441
0
}
2442
2443
static aom_codec_err_t ctrl_set_s_frame_mode(aom_codec_alg_priv_t *ctx,
2444
0
                                             va_list args) {
2445
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2446
0
  extra_cfg.s_frame_mode = CAST(AV1E_SET_S_FRAME_MODE, args);
2447
0
  return update_extra_cfg(ctx, &extra_cfg);
2448
0
}
2449
2450
static aom_codec_err_t ctrl_set_frame_parallel_decoding_mode(
2451
0
    aom_codec_alg_priv_t *ctx, va_list args) {
2452
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2453
0
  extra_cfg.frame_parallel_decoding_mode =
2454
0
      CAST(AV1E_SET_FRAME_PARALLEL_DECODING, args);
2455
0
  return update_extra_cfg(ctx, &extra_cfg);
2456
0
}
2457
2458
static aom_codec_err_t ctrl_set_single_tile_decoding(aom_codec_alg_priv_t *ctx,
2459
0
                                                     va_list args) {
2460
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2461
0
  extra_cfg.single_tile_decoding = CAST(AV1E_SET_SINGLE_TILE_DECODING, args);
2462
0
  return update_extra_cfg(ctx, &extra_cfg);
2463
0
}
2464
2465
static aom_codec_err_t ctrl_set_aq_mode(aom_codec_alg_priv_t *ctx,
2466
0
                                        va_list args) {
2467
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2468
0
  extra_cfg.aq_mode = CAST(AV1E_SET_AQ_MODE, args);
2469
2470
  // Skip AQ mode if using fixed QP for current frame.
2471
0
  if (ctx->ppi->cpi->rc.use_external_qp_one_pass) extra_cfg.aq_mode = 0;
2472
0
  return update_extra_cfg(ctx, &extra_cfg);
2473
0
}
2474
2475
static aom_codec_err_t ctrl_set_reduced_tx_type_set(aom_codec_alg_priv_t *ctx,
2476
0
                                                    va_list args) {
2477
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2478
0
  extra_cfg.reduced_tx_type_set = CAST(AV1E_SET_REDUCED_TX_TYPE_SET, args);
2479
0
  return update_extra_cfg(ctx, &extra_cfg);
2480
0
}
2481
2482
static aom_codec_err_t ctrl_set_intra_dct_only(aom_codec_alg_priv_t *ctx,
2483
0
                                               va_list args) {
2484
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2485
0
  extra_cfg.use_intra_dct_only = CAST(AV1E_SET_INTRA_DCT_ONLY, args);
2486
0
  return update_extra_cfg(ctx, &extra_cfg);
2487
0
}
2488
2489
static aom_codec_err_t ctrl_set_inter_dct_only(aom_codec_alg_priv_t *ctx,
2490
0
                                               va_list args) {
2491
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2492
0
  extra_cfg.use_inter_dct_only = CAST(AV1E_SET_INTER_DCT_ONLY, args);
2493
0
  return update_extra_cfg(ctx, &extra_cfg);
2494
0
}
2495
2496
static aom_codec_err_t ctrl_set_intra_default_tx_only(aom_codec_alg_priv_t *ctx,
2497
0
                                                      va_list args) {
2498
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2499
0
  extra_cfg.use_intra_default_tx_only =
2500
0
      CAST(AV1E_SET_INTRA_DEFAULT_TX_ONLY, args);
2501
0
  return update_extra_cfg(ctx, &extra_cfg);
2502
0
}
2503
2504
static aom_codec_err_t ctrl_set_enable_tx_size_search(aom_codec_alg_priv_t *ctx,
2505
0
                                                      va_list args) {
2506
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2507
0
  extra_cfg.enable_tx_size_search = CAST(AV1E_SET_ENABLE_TX_SIZE_SEARCH, args);
2508
0
  return update_extra_cfg(ctx, &extra_cfg);
2509
0
}
2510
2511
static aom_codec_err_t ctrl_set_quant_b_adapt(aom_codec_alg_priv_t *ctx,
2512
0
                                              va_list args) {
2513
#if CONFIG_REALTIME_ONLY
2514
  (void)ctx;
2515
  (void)args;
2516
  return AOM_CODEC_INCAPABLE;
2517
#else
2518
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2519
0
  extra_cfg.quant_b_adapt = CAST(AV1E_SET_QUANT_B_ADAPT, args);
2520
0
  return update_extra_cfg(ctx, &extra_cfg);
2521
0
#endif
2522
0
}
2523
2524
static aom_codec_err_t ctrl_set_vbr_corpus_complexity_lap(
2525
0
    aom_codec_alg_priv_t *ctx, va_list args) {
2526
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2527
0
  extra_cfg.vbr_corpus_complexity_lap =
2528
0
      CAST(AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP, args);
2529
0
  return update_extra_cfg(ctx, &extra_cfg);
2530
0
}
2531
static aom_codec_err_t ctrl_set_coeff_cost_upd_freq(aom_codec_alg_priv_t *ctx,
2532
0
                                                    va_list args) {
2533
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2534
0
  extra_cfg.coeff_cost_upd_freq = CAST(AV1E_SET_COEFF_COST_UPD_FREQ, args);
2535
0
  return update_extra_cfg(ctx, &extra_cfg);
2536
0
}
2537
2538
static aom_codec_err_t ctrl_set_mode_cost_upd_freq(aom_codec_alg_priv_t *ctx,
2539
0
                                                   va_list args) {
2540
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2541
0
  extra_cfg.mode_cost_upd_freq = CAST(AV1E_SET_MODE_COST_UPD_FREQ, args);
2542
0
  return update_extra_cfg(ctx, &extra_cfg);
2543
0
}
2544
2545
static aom_codec_err_t ctrl_set_mv_cost_upd_freq(aom_codec_alg_priv_t *ctx,
2546
0
                                                 va_list args) {
2547
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2548
0
  extra_cfg.mv_cost_upd_freq = CAST(AV1E_SET_MV_COST_UPD_FREQ, args);
2549
0
  return update_extra_cfg(ctx, &extra_cfg);
2550
0
}
2551
2552
static aom_codec_err_t ctrl_set_dv_cost_upd_freq(aom_codec_alg_priv_t *ctx,
2553
0
                                                 va_list args) {
2554
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2555
0
  extra_cfg.dv_cost_upd_freq = CAST(AV1E_SET_DV_COST_UPD_FREQ, args);
2556
0
  return update_extra_cfg(ctx, &extra_cfg);
2557
0
}
2558
2559
static aom_codec_err_t ctrl_set_vmaf_model_path(aom_codec_alg_priv_t *ctx,
2560
0
                                                va_list args) {
2561
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2562
0
  const char *str = CAST(AV1E_SET_VMAF_MODEL_PATH, args);
2563
0
  const aom_codec_err_t ret = allocate_and_set_string(
2564
0
      str, default_extra_cfg.vmaf_model_path, &extra_cfg.vmaf_model_path,
2565
0
      ctx->ppi->error.detail);
2566
0
  if (ret != AOM_CODEC_OK) return ret;
2567
0
  return update_extra_cfg(ctx, &extra_cfg);
2568
0
}
2569
2570
static aom_codec_err_t ctrl_set_partition_info_path(aom_codec_alg_priv_t *ctx,
2571
0
                                                    va_list args) {
2572
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2573
0
  const char *str = CAST(AV1E_SET_PARTITION_INFO_PATH, args);
2574
0
  const aom_codec_err_t ret = allocate_and_set_string(
2575
0
      str, default_extra_cfg.partition_info_path,
2576
0
      &extra_cfg.partition_info_path, ctx->ppi->error.detail);
2577
0
  if (ret != AOM_CODEC_OK) return ret;
2578
0
  return update_extra_cfg(ctx, &extra_cfg);
2579
0
}
2580
2581
static aom_codec_err_t ctrl_enable_rate_guide_deltaq(aom_codec_alg_priv_t *ctx,
2582
0
                                                     va_list args) {
2583
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2584
0
  extra_cfg.enable_rate_guide_deltaq =
2585
0
      CAST(AV1E_ENABLE_RATE_GUIDE_DELTAQ, args);
2586
0
  return update_extra_cfg(ctx, &extra_cfg);
2587
0
}
2588
2589
static aom_codec_err_t ctrl_set_rate_distribution_info(
2590
0
    aom_codec_alg_priv_t *ctx, va_list args) {
2591
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2592
0
  const char *str = CAST(AV1E_SET_RATE_DISTRIBUTION_INFO, args);
2593
0
  const aom_codec_err_t ret = allocate_and_set_string(
2594
0
      str, default_extra_cfg.rate_distribution_info,
2595
0
      &extra_cfg.rate_distribution_info, ctx->ppi->error.detail);
2596
0
  if (ret != AOM_CODEC_OK) return ret;
2597
0
  return update_extra_cfg(ctx, &extra_cfg);
2598
0
}
2599
2600
static aom_codec_err_t ctrl_set_film_grain_test_vector(
2601
0
    aom_codec_alg_priv_t *ctx, va_list args) {
2602
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2603
0
  extra_cfg.film_grain_test_vector =
2604
0
      CAST(AV1E_SET_FILM_GRAIN_TEST_VECTOR, args);
2605
0
  return update_extra_cfg(ctx, &extra_cfg);
2606
0
}
2607
2608
static aom_codec_err_t ctrl_set_film_grain_table(aom_codec_alg_priv_t *ctx,
2609
0
                                                 va_list args) {
2610
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2611
0
  const char *str = CAST(AV1E_SET_FILM_GRAIN_TABLE, args);
2612
0
  if (str == NULL) {
2613
    // this parameter allows NULL as its value
2614
0
    extra_cfg.film_grain_table_filename = str;
2615
0
  } else {
2616
#if CONFIG_REALTIME_ONLY
2617
    ERROR("film_grain removed from realtime only build.");
2618
#endif
2619
0
    const aom_codec_err_t ret = allocate_and_set_string(
2620
0
        str, default_extra_cfg.film_grain_table_filename,
2621
0
        &extra_cfg.film_grain_table_filename, ctx->ppi->error.detail);
2622
0
    if (ret != AOM_CODEC_OK) return ret;
2623
0
  }
2624
0
  return update_extra_cfg(ctx, &extra_cfg);
2625
0
}
2626
2627
static aom_codec_err_t ctrl_set_denoise_noise_level(aom_codec_alg_priv_t *ctx,
2628
0
                                                    va_list args) {
2629
#if !CONFIG_DENOISE
2630
  (void)ctx;
2631
  (void)args;
2632
  return AOM_CODEC_INCAPABLE;
2633
#else
2634
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2635
0
  extra_cfg.noise_level =
2636
0
      ((float)CAST(AV1E_SET_DENOISE_NOISE_LEVEL, args)) / 10.0f;
2637
0
  return update_extra_cfg(ctx, &extra_cfg);
2638
0
#endif
2639
0
}
2640
2641
static aom_codec_err_t ctrl_set_denoise_block_size(aom_codec_alg_priv_t *ctx,
2642
0
                                                   va_list args) {
2643
#if !CONFIG_DENOISE
2644
  (void)ctx;
2645
  (void)args;
2646
  return AOM_CODEC_INCAPABLE;
2647
#else
2648
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2649
0
  extra_cfg.noise_block_size = CAST(AV1E_SET_DENOISE_BLOCK_SIZE, args);
2650
0
  return update_extra_cfg(ctx, &extra_cfg);
2651
0
#endif
2652
0
}
2653
2654
static aom_codec_err_t ctrl_set_enable_dnl_denoising(aom_codec_alg_priv_t *ctx,
2655
0
                                                     va_list args) {
2656
#if !CONFIG_DENOISE
2657
  (void)ctx;
2658
  (void)args;
2659
  return AOM_CODEC_INCAPABLE;
2660
#else
2661
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2662
0
  extra_cfg.enable_dnl_denoising = CAST(AV1E_SET_ENABLE_DNL_DENOISING, args);
2663
0
  return update_extra_cfg(ctx, &extra_cfg);
2664
0
#endif
2665
0
}
2666
2667
static aom_codec_err_t ctrl_set_deltaq_mode(aom_codec_alg_priv_t *ctx,
2668
0
                                            va_list args) {
2669
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2670
0
  const DELTAQ_MODE deltaq_arg = CAST(AV1E_SET_DELTAQ_MODE, args);
2671
#if CONFIG_REALTIME_ONLY
2672
  if (deltaq_arg > NO_DELTA_Q) {
2673
    ERROR("Delta Q mode can't be enabled in realtime only build.");
2674
  }
2675
#endif
2676
0
  extra_cfg.deltaq_mode = deltaq_arg;
2677
0
  return update_extra_cfg(ctx, &extra_cfg);
2678
0
}
2679
2680
static aom_codec_err_t ctrl_set_deltaq_strength(aom_codec_alg_priv_t *ctx,
2681
0
                                                va_list args) {
2682
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2683
0
  extra_cfg.deltaq_strength = CAST(AV1E_SET_DELTAQ_STRENGTH, args);
2684
0
  return update_extra_cfg(ctx, &extra_cfg);
2685
0
}
2686
2687
static aom_codec_err_t ctrl_set_deltalf_mode(aom_codec_alg_priv_t *ctx,
2688
0
                                             va_list args) {
2689
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2690
0
  extra_cfg.deltalf_mode = CAST(AV1E_SET_DELTALF_MODE, args);
2691
0
  return update_extra_cfg(ctx, &extra_cfg);
2692
0
}
2693
2694
static aom_codec_err_t ctrl_set_min_gf_interval(aom_codec_alg_priv_t *ctx,
2695
0
                                                va_list args) {
2696
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2697
0
  extra_cfg.min_gf_interval = CAST(AV1E_SET_MIN_GF_INTERVAL, args);
2698
0
  return update_extra_cfg(ctx, &extra_cfg);
2699
0
}
2700
2701
static aom_codec_err_t ctrl_set_max_gf_interval(aom_codec_alg_priv_t *ctx,
2702
0
                                                va_list args) {
2703
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2704
0
  extra_cfg.max_gf_interval = CAST(AV1E_SET_MAX_GF_INTERVAL, args);
2705
0
  return update_extra_cfg(ctx, &extra_cfg);
2706
0
}
2707
2708
static aom_codec_err_t ctrl_set_gf_min_pyr_height(aom_codec_alg_priv_t *ctx,
2709
0
                                                  va_list args) {
2710
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2711
0
  extra_cfg.gf_min_pyr_height = CAST(AV1E_SET_GF_MIN_PYRAMID_HEIGHT, args);
2712
0
  return update_extra_cfg(ctx, &extra_cfg);
2713
0
}
2714
2715
static aom_codec_err_t ctrl_set_gf_max_pyr_height(aom_codec_alg_priv_t *ctx,
2716
0
                                                  va_list args) {
2717
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2718
0
  extra_cfg.gf_max_pyr_height = CAST(AV1E_SET_GF_MAX_PYRAMID_HEIGHT, args);
2719
0
  return update_extra_cfg(ctx, &extra_cfg);
2720
0
}
2721
2722
static aom_codec_err_t ctrl_set_frame_periodic_boost(aom_codec_alg_priv_t *ctx,
2723
0
                                                     va_list args) {
2724
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2725
0
  extra_cfg.frame_periodic_boost = CAST(AV1E_SET_FRAME_PERIODIC_BOOST, args);
2726
0
  return update_extra_cfg(ctx, &extra_cfg);
2727
0
}
2728
2729
static aom_codec_err_t ctrl_enable_motion_vector_unit_test(
2730
0
    aom_codec_alg_priv_t *ctx, va_list args) {
2731
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2732
0
  extra_cfg.motion_vector_unit_test =
2733
0
      CAST(AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST, args);
2734
0
  return update_extra_cfg(ctx, &extra_cfg);
2735
0
}
2736
2737
static aom_codec_err_t ctrl_enable_fpmt_unit_test(aom_codec_alg_priv_t *ctx,
2738
0
                                                  va_list args) {
2739
0
#if !CONFIG_FPMT_TEST
2740
0
  (void)args;
2741
0
  (void)ctx;
2742
0
  return AOM_CODEC_INCAPABLE;
2743
#else
2744
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2745
  extra_cfg.fpmt_unit_test = CAST(AV1E_SET_FP_MT_UNIT_TEST, args);
2746
  ctx->ppi->fpmt_unit_test_cfg = (extra_cfg.fpmt_unit_test == 1)
2747
                                     ? PARALLEL_ENCODE
2748
                                     : PARALLEL_SIMULATION_ENCODE;
2749
  return update_extra_cfg(ctx, &extra_cfg);
2750
#endif
2751
0
}
2752
2753
static aom_codec_err_t ctrl_enable_ext_tile_debug(aom_codec_alg_priv_t *ctx,
2754
0
                                                  va_list args) {
2755
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2756
0
  extra_cfg.ext_tile_debug = CAST(AV1E_ENABLE_EXT_TILE_DEBUG, args);
2757
0
  return update_extra_cfg(ctx, &extra_cfg);
2758
0
}
2759
2760
static aom_codec_err_t ctrl_set_target_seq_level_idx(aom_codec_alg_priv_t *ctx,
2761
0
                                                     va_list args) {
2762
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2763
0
  const int val = CAST(AV1E_SET_TARGET_SEQ_LEVEL_IDX, args);
2764
0
  const int level = val % 100;
2765
0
  const int operating_point_idx = val / 100;
2766
0
  if (operating_point_idx < 0 ||
2767
0
      operating_point_idx >= MAX_NUM_OPERATING_POINTS) {
2768
0
    char *const err_string = ctx->ppi->error.detail;
2769
0
    snprintf(err_string, ARG_ERR_MSG_MAX_LEN,
2770
0
             "Invalid operating point index: %d", operating_point_idx);
2771
0
    ctx->base.err_detail = err_string;
2772
0
    return AOM_CODEC_INVALID_PARAM;
2773
0
  }
2774
0
  extra_cfg.target_seq_level_idx[operating_point_idx] = (AV1_LEVEL)level;
2775
0
  return update_extra_cfg(ctx, &extra_cfg);
2776
0
}
2777
2778
static aom_codec_err_t ctrl_set_tier_mask(aom_codec_alg_priv_t *ctx,
2779
0
                                          va_list args) {
2780
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2781
0
  extra_cfg.tier_mask = CAST(AV1E_SET_TIER_MASK, args);
2782
0
  return update_extra_cfg(ctx, &extra_cfg);
2783
0
}
2784
2785
static aom_codec_err_t ctrl_set_min_cr(aom_codec_alg_priv_t *ctx,
2786
0
                                       va_list args) {
2787
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2788
0
  extra_cfg.min_cr = CAST(AV1E_SET_MIN_CR, args);
2789
0
  return update_extra_cfg(ctx, &extra_cfg);
2790
0
}
2791
2792
static aom_codec_err_t ctrl_enable_sb_multipass_unit_test(
2793
0
    aom_codec_alg_priv_t *ctx, va_list args) {
2794
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2795
0
  extra_cfg.sb_multipass_unit_test =
2796
0
      CAST(AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST, args);
2797
0
  return update_extra_cfg(ctx, &extra_cfg);
2798
0
}
2799
2800
static aom_codec_err_t ctrl_enable_sb_qp_sweep(aom_codec_alg_priv_t *ctx,
2801
0
                                               va_list args) {
2802
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2803
0
  extra_cfg.sb_qp_sweep = CAST(AV1E_ENABLE_SB_QP_SWEEP, args);
2804
0
  return update_extra_cfg(ctx, &extra_cfg);
2805
0
}
2806
2807
static aom_codec_err_t ctrl_set_external_partition(aom_codec_alg_priv_t *ctx,
2808
0
                                                   va_list args) {
2809
0
  AV1_COMP *const cpi = ctx->ppi->cpi;
2810
0
  aom_ext_part_funcs_t funcs = *CAST(AV1E_SET_EXTERNAL_PARTITION, args);
2811
0
  aom_ext_part_config_t config;
2812
  // TODO(chengchen): verify the sb_size has been set at this point.
2813
0
  config.superblock_size = cpi->common.seq_params->sb_size;
2814
0
  const aom_codec_err_t status =
2815
0
      av1_ext_part_create(funcs, config, &cpi->ext_part_controller);
2816
0
  return status;
2817
0
}
2818
2819
static aom_codec_err_t ctrl_set_loopfilter_control(aom_codec_alg_priv_t *ctx,
2820
0
                                                   va_list args) {
2821
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2822
0
  extra_cfg.loopfilter_control = CAST(AV1E_SET_LOOPFILTER_CONTROL, args);
2823
0
  return update_extra_cfg(ctx, &extra_cfg);
2824
0
}
2825
2826
static aom_codec_err_t ctrl_set_skip_postproc_filtering(
2827
0
    aom_codec_alg_priv_t *ctx, va_list args) {
2828
  // Skipping the application of post-processing filters is allowed only
2829
  // for ALLINTRA mode.
2830
0
  if (ctx->cfg.g_usage != AOM_USAGE_ALL_INTRA) return AOM_CODEC_INCAPABLE;
2831
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2832
0
  extra_cfg.skip_postproc_filtering =
2833
0
      CAST(AV1E_SET_SKIP_POSTPROC_FILTERING, args);
2834
0
  return update_extra_cfg(ctx, &extra_cfg);
2835
0
}
2836
2837
static aom_codec_err_t ctrl_set_rtc_external_rc(aom_codec_alg_priv_t *ctx,
2838
0
                                                va_list args) {
2839
0
  ctx->ppi->cpi->rc.rtc_external_ratectrl =
2840
0
      CAST(AV1E_SET_RTC_EXTERNAL_RC, args);
2841
0
  return AOM_CODEC_OK;
2842
0
}
2843
2844
static aom_codec_err_t ctrl_set_quantizer_one_pass(aom_codec_alg_priv_t *ctx,
2845
0
                                                   va_list args) {
2846
0
  const int qp = CAST(AV1E_SET_QUANTIZER_ONE_PASS, args);
2847
2848
0
  if (qp < 0 || qp > 63) return AOM_CODEC_INVALID_PARAM;
2849
2850
0
  aom_codec_enc_cfg_t *cfg = &ctx->cfg;
2851
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2852
0
  cfg->rc_min_quantizer = cfg->rc_max_quantizer = qp;
2853
0
  extra_cfg.aq_mode = 0;
2854
0
  ctx->ppi->cpi->rc.use_external_qp_one_pass = 1;
2855
2856
0
  return update_extra_cfg(ctx, &extra_cfg);
2857
0
}
2858
2859
static aom_codec_err_t ctrl_set_bitrate_one_pass_cbr(aom_codec_alg_priv_t *ctx,
2860
0
                                                     va_list args) {
2861
0
  AV1_PRIMARY *const ppi = ctx->ppi;
2862
0
  AV1_COMP *const cpi = ppi->cpi;
2863
0
  AV1EncoderConfig *oxcf = &cpi->oxcf;
2864
0
  if (!is_one_pass_rt_params(cpi) || oxcf->rc_cfg.mode != AOM_CBR ||
2865
0
      cpi->ppi->use_svc || ppi->num_fp_contexts != 1 || ppi->cpi_lap != NULL) {
2866
0
    return AOM_CODEC_INVALID_PARAM;
2867
0
  }
2868
0
  const int new_bitrate = CAST(AV1E_SET_BITRATE_ONE_PASS_CBR, args);
2869
0
  ctx->cfg.rc_target_bitrate = new_bitrate;
2870
0
  oxcf->rc_cfg.target_bandwidth = new_bitrate * 1000;
2871
0
  set_primary_rc_buffer_sizes(oxcf, ppi);
2872
0
  av1_new_framerate(cpi, cpi->framerate);
2873
0
  check_reset_rc_flag(cpi);
2874
0
  return AOM_CODEC_OK;
2875
0
}
2876
2877
static aom_codec_err_t ctrl_set_max_consec_frame_drop_cbr(
2878
0
    aom_codec_alg_priv_t *ctx, va_list args) {
2879
0
  AV1_PRIMARY *const ppi = ctx->ppi;
2880
0
  AV1_COMP *const cpi = ppi->cpi;
2881
0
  const int max_consec_drop = CAST(AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR, args);
2882
0
  if (max_consec_drop < 0) return AOM_CODEC_INVALID_PARAM;
2883
0
  cpi->rc.max_consec_drop = max_consec_drop;
2884
0
  cpi->rc.drop_count_consec = 0;
2885
0
  return AOM_CODEC_OK;
2886
0
}
2887
2888
static aom_codec_err_t ctrl_set_max_consec_frame_drop_ms_cbr(
2889
0
    aom_codec_alg_priv_t *ctx, va_list args) {
2890
0
  AV1_PRIMARY *const ppi = ctx->ppi;
2891
0
  AV1_COMP *const cpi = ppi->cpi;
2892
0
  const int max_consec_drop_ms =
2893
0
      CAST(AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR, args);
2894
0
  if (max_consec_drop_ms < 0) return AOM_CODEC_INVALID_PARAM;
2895
  // max_consec_drop_ms will be converted to frame units inside encoder
2896
  // based on framerate (which can change dynamically).
2897
0
  ctx->oxcf.rc_cfg.max_consec_drop_ms = max_consec_drop_ms;
2898
0
  cpi->rc.drop_count_consec = 0;
2899
0
  return AOM_CODEC_OK;
2900
0
}
2901
2902
static aom_codec_err_t ctrl_set_svc_frame_drop_mode(aom_codec_alg_priv_t *ctx,
2903
0
                                                    va_list args) {
2904
0
  AV1_PRIMARY *const ppi = ctx->ppi;
2905
0
  AV1_COMP *const cpi = ppi->cpi;
2906
0
  cpi->svc.framedrop_mode = CAST(AV1E_SET_SVC_FRAME_DROP_MODE, args);
2907
0
  if (cpi->svc.framedrop_mode != AOM_LAYER_DROP &&
2908
0
      cpi->svc.framedrop_mode != AOM_FULL_SUPERFRAME_DROP)
2909
0
    return AOM_CODEC_INVALID_PARAM;
2910
0
  else
2911
0
    return AOM_CODEC_OK;
2912
0
}
2913
2914
static aom_codec_err_t ctrl_set_auto_tiles(aom_codec_alg_priv_t *ctx,
2915
0
                                           va_list args) {
2916
0
  unsigned int auto_tiles = CAST(AV1E_SET_AUTO_TILES, args);
2917
0
  if (auto_tiles == ctx->extra_cfg.auto_tiles) return AOM_CODEC_OK;
2918
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2919
0
  extra_cfg.auto_tiles = auto_tiles;
2920
0
  return update_extra_cfg(ctx, &extra_cfg);
2921
0
}
2922
2923
static aom_codec_err_t ctrl_set_postencode_drop_rtc(aom_codec_alg_priv_t *ctx,
2924
0
                                                    va_list args) {
2925
0
  AV1_PRIMARY *const ppi = ctx->ppi;
2926
0
  AV1_COMP *const cpi = ppi->cpi;
2927
0
  int enable_postencode_drop = CAST(AV1E_SET_POSTENCODE_DROP_RTC, args);
2928
0
  if (enable_postencode_drop > 1 || enable_postencode_drop < 0)
2929
0
    return AOM_CODEC_INVALID_PARAM;
2930
0
  cpi->rc.postencode_drop = enable_postencode_drop;
2931
0
  return AOM_CODEC_OK;
2932
0
}
2933
2934
static aom_codec_err_t ctrl_set_screen_content_detection_mode(
2935
0
    aom_codec_alg_priv_t *ctx, va_list args) {
2936
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
2937
0
  const aom_screen_detection_mode screen_detection_mode =
2938
0
      CAST(AV1E_SET_SCREEN_CONTENT_DETECTION_MODE, args);
2939
2940
0
  extra_cfg.screen_detection_mode = screen_detection_mode;
2941
0
  return update_extra_cfg(ctx, &extra_cfg);
2942
0
}
2943
2944
#if !CONFIG_REALTIME_ONLY
2945
static aom_codec_err_t create_stats_buffer(FIRSTPASS_STATS **frame_stats_buffer,
2946
                                           STATS_BUFFER_CTX *stats_buf_context,
2947
0
                                           int num_lap_buffers) {
2948
0
  aom_codec_err_t res = AOM_CODEC_OK;
2949
2950
0
  int size = get_stats_buf_size(num_lap_buffers, MAX_LAG_BUFFERS);
2951
0
  *frame_stats_buffer =
2952
0
      (FIRSTPASS_STATS *)aom_calloc(size, sizeof(FIRSTPASS_STATS));
2953
0
  if (*frame_stats_buffer == NULL) return AOM_CODEC_MEM_ERROR;
2954
2955
0
  stats_buf_context->stats_in_start = *frame_stats_buffer;
2956
0
  stats_buf_context->stats_in_end = stats_buf_context->stats_in_start;
2957
0
  stats_buf_context->stats_in_buf_end =
2958
0
      stats_buf_context->stats_in_start + size;
2959
2960
0
  stats_buf_context->total_left_stats = aom_calloc(1, sizeof(FIRSTPASS_STATS));
2961
0
  if (stats_buf_context->total_left_stats == NULL) return AOM_CODEC_MEM_ERROR;
2962
0
  av1_twopass_zero_stats(stats_buf_context->total_left_stats);
2963
0
  stats_buf_context->total_stats = aom_calloc(1, sizeof(FIRSTPASS_STATS));
2964
0
  if (stats_buf_context->total_stats == NULL) return AOM_CODEC_MEM_ERROR;
2965
0
  av1_twopass_zero_stats(stats_buf_context->total_stats);
2966
0
  return res;
2967
0
}
2968
#endif
2969
2970
aom_codec_err_t av1_create_context_and_bufferpool(AV1_PRIMARY *ppi,
2971
                                                  AV1_COMP **p_cpi,
2972
                                                  BufferPool **p_buffer_pool,
2973
                                                  const AV1EncoderConfig *oxcf,
2974
                                                  COMPRESSOR_STAGE stage,
2975
0
                                                  int lap_lag_in_frames) {
2976
0
  aom_codec_err_t res = AOM_CODEC_OK;
2977
0
  BufferPool *buffer_pool = *p_buffer_pool;
2978
2979
0
  if (buffer_pool == NULL) {
2980
0
    buffer_pool = (BufferPool *)aom_calloc(1, sizeof(BufferPool));
2981
0
    if (buffer_pool == NULL) return AOM_CODEC_MEM_ERROR;
2982
0
    buffer_pool->num_frame_bufs =
2983
0
        (oxcf->mode == ALLINTRA) ? FRAME_BUFFERS_ALLINTRA : FRAME_BUFFERS;
2984
0
    buffer_pool->frame_bufs = (RefCntBuffer *)aom_calloc(
2985
0
        buffer_pool->num_frame_bufs, sizeof(*buffer_pool->frame_bufs));
2986
0
    if (buffer_pool->frame_bufs == NULL) {
2987
0
      buffer_pool->num_frame_bufs = 0;
2988
0
      aom_free(buffer_pool);
2989
0
      return AOM_CODEC_MEM_ERROR;
2990
0
    }
2991
0
#if CONFIG_MULTITHREAD
2992
0
    if (pthread_mutex_init(&buffer_pool->pool_mutex, NULL)) {
2993
0
      aom_free(buffer_pool->frame_bufs);
2994
0
      buffer_pool->frame_bufs = NULL;
2995
0
      buffer_pool->num_frame_bufs = 0;
2996
0
      aom_free(buffer_pool);
2997
0
      return AOM_CODEC_MEM_ERROR;
2998
0
    }
2999
0
#endif
3000
0
    *p_buffer_pool = buffer_pool;
3001
0
  }
3002
0
  *p_cpi =
3003
0
      av1_create_compressor(ppi, oxcf, buffer_pool, stage, lap_lag_in_frames);
3004
0
  if (*p_cpi == NULL) res = AOM_CODEC_MEM_ERROR;
3005
3006
0
  return res;
3007
0
}
3008
3009
0
static aom_codec_err_t ctrl_set_fp_mt(aom_codec_alg_priv_t *ctx, va_list args) {
3010
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
3011
0
  extra_cfg.fp_mt = CAST(AV1E_SET_FP_MT, args);
3012
0
  const aom_codec_err_t result = update_extra_cfg(ctx, &extra_cfg);
3013
0
  int num_fp_contexts = 1;
3014
0
  if (ctx->ppi->num_fp_contexts == 1) {
3015
0
    num_fp_contexts =
3016
0
        av1_compute_num_fp_contexts(ctx->ppi, &ctx->ppi->parallel_cpi[0]->oxcf);
3017
0
    if (num_fp_contexts > 1) {
3018
0
      int i;
3019
0
      for (i = 1; i < num_fp_contexts; i++) {
3020
0
        int res = av1_create_context_and_bufferpool(
3021
0
            ctx->ppi, &ctx->ppi->parallel_cpi[i], &ctx->buffer_pool, &ctx->oxcf,
3022
0
            ENCODE_STAGE, -1);
3023
0
        if (res != AOM_CODEC_OK) {
3024
0
          return res;
3025
0
        }
3026
0
#if !CONFIG_REALTIME_ONLY
3027
0
        ctx->ppi->parallel_cpi[i]->twopass_frame.stats_in =
3028
0
            ctx->ppi->twopass.stats_buf_ctx->stats_in_start;
3029
0
#endif
3030
0
      }
3031
0
    }
3032
0
  }
3033
0
  ctx->ppi->num_fp_contexts = num_fp_contexts;
3034
0
  return result;
3035
0
}
3036
3037
static aom_codec_err_t ctrl_set_auto_intra_tools_off(aom_codec_alg_priv_t *ctx,
3038
0
                                                     va_list args) {
3039
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
3040
0
  extra_cfg.auto_intra_tools_off = CAST(AV1E_SET_AUTO_INTRA_TOOLS_OFF, args);
3041
0
  return update_extra_cfg(ctx, &extra_cfg);
3042
0
}
3043
3044
0
static aom_codec_err_t encoder_init(aom_codec_ctx_t *ctx) {
3045
0
  aom_codec_err_t res = AOM_CODEC_OK;
3046
3047
0
  if (ctx->priv == NULL) {
3048
0
    aom_codec_alg_priv_t *const priv = aom_calloc(1, sizeof(*priv));
3049
0
    if (priv == NULL) return AOM_CODEC_MEM_ERROR;
3050
3051
0
    ctx->priv = (aom_codec_priv_t *)priv;
3052
0
    ctx->priv->init_flags = ctx->init_flags;
3053
3054
    // Update the reference to the config structure to an internal copy.
3055
0
    assert(ctx->config.enc);
3056
0
    priv->cfg = *ctx->config.enc;
3057
0
    ctx->config.enc = &priv->cfg;
3058
3059
0
    priv->extra_cfg = default_extra_cfg;
3060
    // Special handling:
3061
    // By default, if omitted: --enable-cdef=1, --screen-detection-mode=1,
3062
    // --qm-min=5, and --qm-max=9.
3063
    // Here we set its default values to --enable-cdef=0,
3064
    // --screen-detection-mode=2, --qm-min=4, and --qm-max=10 when --allintra
3065
    // is turned on.
3066
    // However, if users set --enable-cdef, --screen-detection-mode, --qm-min,
3067
    // or --qm-max, either from the command line or aom_codec_control(), the
3068
    // encoder still respects it.
3069
0
    if (priv->cfg.g_usage == AOM_USAGE_ALL_INTRA) {
3070
      // CDEF has been found to blur images, so it's disabled in all-intra mode
3071
0
      priv->extra_cfg.enable_cdef = 0;
3072
      // Enable "anti-aliased text and graphics aware" screen detection mode.
3073
0
      priv->extra_cfg.screen_detection_mode =
3074
0
          AOM_SCREEN_DETECTION_ANTIALIASING_AWARE;
3075
      // These QM min/max values have been found to be beneficial for images,
3076
      // when used with an alternative QM formula (see
3077
      // aom_get_qmlevel_allintra()).
3078
      // These values could also be beneficial for other usage modes, but
3079
      // further testing is required.
3080
0
      priv->extra_cfg.qm_min = DEFAULT_QM_FIRST_ALLINTRA;
3081
0
      priv->extra_cfg.qm_max = DEFAULT_QM_LAST_ALLINTRA;
3082
0
    }
3083
0
    av1_initialize_enc(priv->cfg.g_usage, priv->cfg.rc_end_usage);
3084
3085
0
    res = validate_config(priv, &priv->cfg, &priv->extra_cfg);
3086
3087
0
    if (res == AOM_CODEC_OK) {
3088
0
      int *num_lap_buffers = &priv->num_lap_buffers;
3089
0
      int lap_lag_in_frames = 0;
3090
0
      *num_lap_buffers = 0;
3091
0
      priv->timestamp_ratio.den = priv->cfg.g_timebase.den;
3092
0
      priv->timestamp_ratio.num =
3093
0
          (int64_t)priv->cfg.g_timebase.num * TICKS_PER_SEC;
3094
0
      reduce_ratio(&priv->timestamp_ratio);
3095
3096
0
      set_encoder_config(&priv->oxcf, &priv->cfg, &priv->extra_cfg);
3097
0
      if (priv->oxcf.pass == AOM_RC_ONE_PASS) {
3098
        // Enable look ahead.
3099
#if CONFIG_REALTIME_ONLY
3100
        // When CONFIG_REALTIME_ONLY=1 and mode=REALTIME, then force
3101
        // lag_in_frames = 0.
3102
        const int lag_in_frames =
3103
            (priv->oxcf.mode == REALTIME) ? 0 : (int)priv->cfg.g_lag_in_frames;
3104
#else
3105
0
        const int lag_in_frames = (int)priv->cfg.g_lag_in_frames;
3106
0
#endif
3107
0
        *num_lap_buffers =
3108
0
            AOMMIN(lag_in_frames,
3109
0
                   AOMMIN(MAX_LAP_BUFFERS, priv->oxcf.kf_cfg.key_freq_max +
3110
0
                                               SCENE_CUT_KEY_TEST_INTERVAL));
3111
0
        if ((int)priv->cfg.g_lag_in_frames - (*num_lap_buffers) >=
3112
0
            LAP_LAG_IN_FRAMES) {
3113
0
          lap_lag_in_frames = LAP_LAG_IN_FRAMES;
3114
0
        }
3115
0
      }
3116
0
      priv->oxcf.use_highbitdepth =
3117
0
          (ctx->init_flags & AOM_CODEC_USE_HIGHBITDEPTH) ? 1 : 0;
3118
3119
0
      priv->monochrome_on_init = priv->cfg.monochrome;
3120
3121
0
      priv->ppi = av1_create_primary_compressor(&priv->pkt_list.head,
3122
0
                                                *num_lap_buffers, &priv->oxcf);
3123
0
      if (!priv->ppi) return AOM_CODEC_MEM_ERROR;
3124
3125
0
#if !CONFIG_REALTIME_ONLY
3126
0
      res = create_stats_buffer(&priv->frame_stats_buffer,
3127
0
                                &priv->stats_buf_context, *num_lap_buffers);
3128
0
      if (res != AOM_CODEC_OK) return res;
3129
3130
0
      assert(MAX_LAP_BUFFERS >= MAX_LAG_BUFFERS);
3131
0
      int size = get_stats_buf_size(*num_lap_buffers, MAX_LAG_BUFFERS);
3132
0
      for (int i = 0; i < size; i++)
3133
0
        priv->ppi->twopass.frame_stats_arr[i] = &priv->frame_stats_buffer[i];
3134
3135
0
      priv->ppi->twopass.stats_buf_ctx = &priv->stats_buf_context;
3136
0
#endif
3137
3138
0
      assert(priv->ppi->num_fp_contexts >= 1);
3139
0
      res = av1_create_context_and_bufferpool(
3140
0
          priv->ppi, &priv->ppi->parallel_cpi[0], &priv->buffer_pool,
3141
0
          &priv->oxcf, ENCODE_STAGE, -1);
3142
0
      if (res != AOM_CODEC_OK) {
3143
0
        priv->base.err_detail = "av1_create_context_and_bufferpool() failed";
3144
0
        return res;
3145
0
      }
3146
0
#if !CONFIG_REALTIME_ONLY
3147
0
      priv->ppi->parallel_cpi[0]->twopass_frame.stats_in =
3148
0
          priv->ppi->twopass.stats_buf_ctx->stats_in_start;
3149
0
#endif
3150
0
      priv->ppi->cpi = priv->ppi->parallel_cpi[0];
3151
3152
      // Create another compressor if look ahead is enabled
3153
0
      if (res == AOM_CODEC_OK && *num_lap_buffers) {
3154
0
        res = av1_create_context_and_bufferpool(
3155
0
            priv->ppi, &priv->ppi->cpi_lap, &priv->buffer_pool_lap, &priv->oxcf,
3156
0
            LAP_STAGE, clamp(lap_lag_in_frames, 0, MAX_LAG_BUFFERS));
3157
0
      }
3158
0
    }
3159
0
  }
3160
3161
0
  return res;
3162
0
}
3163
3164
void av1_destroy_context_and_bufferpool(AV1_COMP *cpi,
3165
0
                                        BufferPool **p_buffer_pool) {
3166
0
  av1_remove_compressor(cpi);
3167
0
  if (*p_buffer_pool) {
3168
0
    av1_free_ref_frame_buffers(*p_buffer_pool);
3169
0
#if CONFIG_MULTITHREAD
3170
0
    pthread_mutex_destroy(&(*p_buffer_pool)->pool_mutex);
3171
0
#endif
3172
0
    aom_free(*p_buffer_pool);
3173
0
    *p_buffer_pool = NULL;
3174
0
  }
3175
0
}
3176
3177
static void destroy_stats_buffer(STATS_BUFFER_CTX *stats_buf_context,
3178
0
                                 FIRSTPASS_STATS *frame_stats_buffer) {
3179
0
  aom_free(stats_buf_context->total_left_stats);
3180
0
  aom_free(stats_buf_context->total_stats);
3181
0
  aom_free(frame_stats_buffer);
3182
0
}
3183
3184
0
static void check_and_free_string(const char *default_str, const char **ptr) {
3185
0
  if (*ptr == default_str) {
3186
    // Default should be a literal. Do not free.
3187
0
    return;
3188
0
  }
3189
0
  aom_free((void *)*ptr);
3190
0
  *ptr = NULL;
3191
0
}
3192
3193
0
static void destroy_extra_config(struct av1_extracfg *extra_cfg) {
3194
#if CONFIG_TUNE_VMAF
3195
  check_and_free_string(default_extra_cfg.vmaf_model_path,
3196
                        &extra_cfg->vmaf_model_path);
3197
#endif
3198
0
  check_and_free_string(default_extra_cfg.two_pass_output,
3199
0
                        &extra_cfg->two_pass_output);
3200
0
  check_and_free_string(default_extra_cfg.two_pass_output,
3201
0
                        &extra_cfg->second_pass_log);
3202
0
  check_and_free_string(default_extra_cfg.partition_info_path,
3203
0
                        &extra_cfg->partition_info_path);
3204
0
  check_and_free_string(default_extra_cfg.rate_distribution_info,
3205
0
                        &extra_cfg->rate_distribution_info);
3206
0
  check_and_free_string(default_extra_cfg.film_grain_table_filename,
3207
0
                        &extra_cfg->film_grain_table_filename);
3208
0
}
3209
3210
0
static aom_codec_err_t encoder_destroy(aom_codec_alg_priv_t *ctx) {
3211
0
  free(ctx->cx_data);
3212
0
  destroy_extra_config(&ctx->extra_cfg);
3213
3214
0
  if (ctx->ppi) {
3215
0
    AV1_PRIMARY *ppi = ctx->ppi;
3216
0
    av1_extrc_delete(&ppi->cpi->ext_ratectrl);
3217
0
    for (int i = 0; i < MAX_PARALLEL_FRAMES - 1; i++) {
3218
0
      if (ppi->parallel_frames_data[i].cx_data) {
3219
0
        free(ppi->parallel_frames_data[i].cx_data);
3220
0
      }
3221
0
    }
3222
#if CONFIG_ENTROPY_STATS
3223
    print_entropy_stats(ppi);
3224
#endif
3225
#if CONFIG_INTERNAL_STATS
3226
    print_internal_stats(ppi);
3227
#endif
3228
3229
0
    for (int i = 0; i < MAX_PARALLEL_FRAMES; i++) {
3230
0
      av1_destroy_context_and_bufferpool(ppi->parallel_cpi[i],
3231
0
                                         &ctx->buffer_pool);
3232
0
    }
3233
0
    ppi->cpi = NULL;
3234
3235
0
    if (ppi->cpi_lap) {
3236
0
      av1_destroy_context_and_bufferpool(ppi->cpi_lap, &ctx->buffer_pool_lap);
3237
0
    }
3238
0
    av1_remove_primary_compressor(ppi);
3239
0
  }
3240
0
  destroy_stats_buffer(&ctx->stats_buf_context, ctx->frame_stats_buffer);
3241
0
  aom_free(ctx);
3242
0
  return AOM_CODEC_OK;
3243
0
}
3244
3245
static aom_codec_frame_flags_t get_frame_pkt_flags(const AV1_COMP *cpi,
3246
0
                                                   unsigned int lib_flags) {
3247
0
  aom_codec_frame_flags_t flags = lib_flags << 16;
3248
0
  if (lib_flags & FRAMEFLAGS_KEY) flags |= AOM_FRAME_IS_KEY;
3249
0
  if (lib_flags & FRAMEFLAGS_INTRAONLY) flags |= AOM_FRAME_IS_INTRAONLY;
3250
0
  if (lib_flags & FRAMEFLAGS_SWITCH) flags |= AOM_FRAME_IS_SWITCH;
3251
0
  if (lib_flags & FRAMEFLAGS_ERROR_RESILIENT)
3252
0
    flags |= AOM_FRAME_IS_ERROR_RESILIENT;
3253
0
  if (cpi->droppable) flags |= AOM_FRAME_IS_DROPPABLE;
3254
3255
0
  return flags;
3256
0
}
3257
3258
0
static inline int get_src_border_in_pixels(AV1_COMP *cpi, BLOCK_SIZE sb_size) {
3259
0
  if (cpi->oxcf.mode != REALTIME || av1_is_resize_needed(&cpi->oxcf))
3260
0
    return cpi->oxcf.border_in_pixels;
3261
3262
0
  const int sb_size_in_pixels_log2 = mi_size_wide_log2[sb_size] + MI_SIZE_LOG2;
3263
0
  const int sb_aligned_width =
3264
0
      ALIGN_POWER_OF_TWO(cpi->oxcf.frm_dim_cfg.width, sb_size_in_pixels_log2);
3265
0
  const int sb_aligned_height =
3266
0
      ALIGN_POWER_OF_TWO(cpi->oxcf.frm_dim_cfg.height, sb_size_in_pixels_log2);
3267
  // Align the border pixels to a multiple of 32.
3268
0
  const int border_pixels_width =
3269
0
      ALIGN_POWER_OF_TWO(sb_aligned_width - cpi->oxcf.frm_dim_cfg.width, 5);
3270
0
  const int border_pixels_height =
3271
0
      ALIGN_POWER_OF_TWO(sb_aligned_height - cpi->oxcf.frm_dim_cfg.height, 5);
3272
0
  const int border_in_pixels =
3273
0
      AOMMAX(AOMMAX(border_pixels_width, border_pixels_height), 32);
3274
0
  return border_in_pixels;
3275
0
}
3276
3277
// TODO(Mufaddal): Check feasibility of abstracting functions related to LAP
3278
// into a separate function.
3279
static aom_codec_err_t encoder_encode(aom_codec_alg_priv_t *ctx,
3280
                                      const aom_image_t *img,
3281
                                      aom_codec_pts_t pts,
3282
                                      unsigned long duration,
3283
0
                                      aom_enc_frame_flags_t enc_flags) {
3284
0
  const size_t kMinCompressedSize = 8192;
3285
0
  volatile aom_codec_err_t res = AOM_CODEC_OK;
3286
0
  AV1_PRIMARY *const ppi = ctx->ppi;
3287
0
  volatile aom_codec_pts_t ptsvol = pts;
3288
0
  AV1_COMP_DATA cpi_data = { 0 };
3289
3290
0
  cpi_data.timestamp_ratio = &ctx->timestamp_ratio;
3291
0
  cpi_data.flush = !img;
3292
  // LAP context
3293
0
  AV1_COMP *cpi_lap = ppi->cpi_lap;
3294
0
  if (ppi->cpi == NULL) return AOM_CODEC_INVALID_PARAM;
3295
3296
0
  ppi->cpi->last_coded_width = ppi->cpi->oxcf.frm_dim_cfg.width;
3297
0
  ppi->cpi->last_coded_height = ppi->cpi->oxcf.frm_dim_cfg.height;
3298
3299
0
  if (ppi->lap_enabled && cpi_lap == NULL &&
3300
0
      ppi->cpi->oxcf.pass == AOM_RC_ONE_PASS)
3301
0
    return AOM_CODEC_INVALID_PARAM;
3302
3303
0
  if (img != NULL) {
3304
0
    res = validate_img(ctx, img);
3305
0
    if (res == AOM_CODEC_OK) {
3306
0
      const uint64_t uncompressed_frame_sz64 =
3307
0
          (uint64_t)ALIGN_POWER_OF_TWO_UNSIGNED(ctx->cfg.g_w, 5) *
3308
0
          ALIGN_POWER_OF_TWO_UNSIGNED(ctx->cfg.g_h, 5) * get_image_bps(img) / 8;
3309
#if UINT64_MAX > SIZE_MAX
3310
      if (uncompressed_frame_sz64 > SIZE_MAX) return AOM_CODEC_MEM_ERROR;
3311
#endif
3312
0
      const size_t uncompressed_frame_sz = (size_t)uncompressed_frame_sz64;
3313
3314
      // Due to the presence of no-show frames, the ctx->cx_data buffer holds
3315
      // compressed data corresponding to multiple frames. As no-show frames are
3316
      // not possible for all intra frame encoding with no forward key frames,
3317
      // the buffer is allocated with a smaller size in this case.
3318
      //
3319
      // For pseudo random input, the compressed frame size is seen to exceed
3320
      // the uncompressed frame size, but is less than 2 times the uncompressed
3321
      // frame size. https://issues.oss-fuzz.com/issues/514006304 further shows
3322
      // that multithreaded bitstream packing may need more than 2 times the
3323
      // uncompressed frame size. Hence the size of the buffer is chosen as 2.5
3324
      // times the uncompressed frame size.
3325
0
      aom_rational_t multiplier;
3326
0
      multiplier.num = 8;
3327
0
      multiplier.den = 1;
3328
0
      if (ppi->cpi->oxcf.kf_cfg.key_freq_max == 0 &&
3329
0
          !ppi->cpi->oxcf.kf_cfg.fwd_kf_enabled) {
3330
0
        multiplier.num = 5;
3331
0
        multiplier.den = 2;
3332
0
      }
3333
0
      if (uncompressed_frame_sz > SIZE_MAX / multiplier.num)
3334
0
        return AOM_CODEC_MEM_ERROR;
3335
0
      size_t data_sz = uncompressed_frame_sz * multiplier.num / multiplier.den;
3336
0
      if (data_sz < kMinCompressedSize) data_sz = kMinCompressedSize;
3337
0
      if (ctx->cx_data == NULL || ctx->cx_data_sz < data_sz) {
3338
0
        ctx->cx_data_sz = data_sz;
3339
0
        free(ctx->cx_data);
3340
0
        ctx->cx_data = (unsigned char *)malloc(ctx->cx_data_sz);
3341
0
        if (ctx->cx_data == NULL) {
3342
0
          ctx->cx_data_sz = 0;
3343
0
          return AOM_CODEC_MEM_ERROR;
3344
0
        }
3345
0
      }
3346
0
      for (int i = 0; i < ppi->num_fp_contexts - 1; i++) {
3347
0
        if (ppi->parallel_frames_data[i].cx_data == NULL ||
3348
0
            ppi->parallel_frames_data[i].cx_data_sz < data_sz) {
3349
0
          ppi->parallel_frames_data[i].cx_data_sz = data_sz;
3350
0
          free(ppi->parallel_frames_data[i].cx_data);
3351
0
          ppi->parallel_frames_data[i].frame_size = 0;
3352
0
          ppi->parallel_frames_data[i].cx_data =
3353
0
              (unsigned char *)malloc(ppi->parallel_frames_data[i].cx_data_sz);
3354
0
          if (ppi->parallel_frames_data[i].cx_data == NULL) {
3355
0
            ppi->parallel_frames_data[i].cx_data_sz = 0;
3356
0
            return AOM_CODEC_MEM_ERROR;
3357
0
          }
3358
0
        }
3359
0
      }
3360
0
    }
3361
0
  }
3362
3363
0
  aom_codec_pkt_list_init(&ctx->pkt_list);
3364
3365
0
  volatile aom_enc_frame_flags_t flags = enc_flags;
3366
3367
  // The jmp_buf is valid only for the duration of the function that calls
3368
  // setjmp(). Therefore, this function must reset the 'setjmp' field to 0
3369
  // before it returns.
3370
0
  if (setjmp(ppi->error.jmp)) {
3371
0
    ppi->error.setjmp = 0;
3372
0
    res = update_error_state(ctx, &ppi->error);
3373
0
    return res;
3374
0
  }
3375
0
  ppi->error.setjmp = 1;
3376
3377
0
  if (ppi->use_svc && ppi->cpi->svc.use_flexible_mode == 0 && flags == 0)
3378
0
    av1_set_svc_fixed_mode(ppi->cpi);
3379
3380
  // Note(yunqing): While applying encoding flags, always start from enabling
3381
  // all, and then modifying according to the flags. Previous frame's flags are
3382
  // overwritten.
3383
0
  av1_apply_encoding_flags(ppi->cpi, flags);
3384
0
  if (cpi_lap != NULL) {
3385
0
    av1_apply_encoding_flags(cpi_lap, flags);
3386
0
  }
3387
3388
#if CONFIG_TUNE_VMAF
3389
  if (ctx->extra_cfg.tuning >= AOM_TUNE_VMAF_WITH_PREPROCESSING &&
3390
      ctx->extra_cfg.tuning <= AOM_TUNE_VMAF_NEG_MAX_GAIN) {
3391
    aom_init_vmaf_model(&ppi->cpi->vmaf_info.vmaf_model,
3392
                        ppi->cpi->oxcf.tune_cfg.vmaf_model_path);
3393
  }
3394
#endif
3395
3396
  // Handle fixed keyframe intervals
3397
0
  if (is_stat_generation_stage(ppi->cpi) || is_one_pass_rt_params(ppi->cpi)) {
3398
0
    if (ctx->cfg.kf_mode == AOM_KF_AUTO &&
3399
0
        ctx->cfg.kf_min_dist == ctx->cfg.kf_max_dist) {
3400
0
      if (ppi->cpi->common.spatial_layer_id == 0 &&
3401
0
          ++ctx->fixed_kf_cntr > ctx->cfg.kf_min_dist) {
3402
0
        flags |= AOM_EFLAG_FORCE_KF;
3403
0
        ctx->fixed_kf_cntr = 1;
3404
0
      }
3405
0
    }
3406
0
  }
3407
3408
0
  if (res == AOM_CODEC_OK) {
3409
0
    AV1_COMP *cpi = ppi->cpi;
3410
3411
    // Per-frame PSNR is not supported when g_lag_in_frames is greater than 0.
3412
0
    if ((flags & AOM_EFLAG_CALCULATE_PSNR) && ctx->cfg.g_lag_in_frames != 0) {
3413
0
      aom_internal_error(
3414
0
          &ppi->error, AOM_CODEC_INCAPABLE,
3415
0
          "Cannot calculate per-frame PSNR when g_lag_in_frames is nonzero");
3416
0
    }
3417
3418
    // Don't attempt to freeze internal state when lag is non-zero in order to
3419
    // minimize risk of state leaking when e.g. multi-pass and b-frames are
3420
    // used.
3421
0
    if ((flags & AOM_EFLAG_FREEZE_INTERNAL_STATE) &&
3422
0
        ctx->cfg.g_lag_in_frames != 0) {
3423
0
      aom_internal_error(
3424
0
          &ppi->error, AOM_CODEC_INCAPABLE,
3425
0
          "Cannot freeze internal state when g_lag_in_frames is nonzero");
3426
0
    }
3427
3428
    // Set up internal flags
3429
#if CONFIG_INTERNAL_STATS
3430
    assert(ppi->b_calculate_psnr == 1);
3431
#else
3432
0
    ppi->b_calculate_psnr = (ctx->base.init_flags & AOM_CODEC_USE_PSNR) ||
3433
0
                            (flags & AOM_EFLAG_CALCULATE_PSNR);
3434
0
#endif  // CONFIG_INTERNAL_STATS
3435
3436
0
    ppi->b_freeze_internal_state =
3437
0
        (flags & AOM_EFLAG_FREEZE_INTERNAL_STATE) != 0;
3438
3439
0
    if (img != NULL) {
3440
0
      if (!ctx->pts_offset_initialized) {
3441
0
        ctx->pts_offset = ptsvol;
3442
0
        ctx->pts_offset_initialized = 1;
3443
0
      }
3444
0
      if (ptsvol < ctx->pts_offset) {
3445
0
        aom_internal_error(&ppi->error, AOM_CODEC_INVALID_PARAM,
3446
0
                           "pts is smaller than initial pts");
3447
0
      }
3448
0
      ptsvol -= ctx->pts_offset;
3449
0
      if (ptsvol > INT64_MAX / cpi_data.timestamp_ratio->num) {
3450
0
        aom_internal_error(
3451
0
            &ppi->error, AOM_CODEC_INVALID_PARAM,
3452
0
            "conversion of relative pts to ticks would overflow");
3453
0
      }
3454
0
      int64_t src_time_stamp =
3455
0
          timebase_units_to_ticks(cpi_data.timestamp_ratio, ptsvol);
3456
0
#if ULONG_MAX > INT64_MAX
3457
0
      if (duration > INT64_MAX) {
3458
0
        aom_internal_error(&ppi->error, AOM_CODEC_INVALID_PARAM,
3459
0
                           "duration is too big");
3460
0
      }
3461
0
#endif
3462
0
      if (ptsvol > INT64_MAX - (int64_t)duration) {
3463
0
        aom_internal_error(&ppi->error, AOM_CODEC_INVALID_PARAM,
3464
0
                           "relative pts + duration is too big");
3465
0
      }
3466
0
      aom_codec_pts_t pts_end = ptsvol + (int64_t)duration;
3467
0
      if (pts_end > INT64_MAX / cpi_data.timestamp_ratio->num) {
3468
0
        aom_internal_error(
3469
0
            &ppi->error, AOM_CODEC_INVALID_PARAM,
3470
0
            "conversion of relative pts + duration to ticks would overflow");
3471
0
      }
3472
0
      int64_t src_end_time_stamp =
3473
0
          timebase_units_to_ticks(cpi_data.timestamp_ratio, pts_end);
3474
3475
0
      YV12_BUFFER_CONFIG sd;
3476
0
      res = image2yuvconfig(img, &sd);
3477
      // When generating a monochrome stream, make |sd| a monochrome image.
3478
0
      if (ctx->cfg.monochrome) {
3479
0
        sd.u_buffer = sd.v_buffer = NULL;
3480
0
        sd.uv_stride = 0;
3481
0
        sd.monochrome = 1;
3482
0
      }
3483
0
      int use_highbitdepth = (sd.flags & YV12_FLAG_HIGHBITDEPTH) != 0;
3484
0
      int subsampling_x = sd.subsampling_x;
3485
0
      int subsampling_y = sd.subsampling_y;
3486
3487
0
      if (!ppi->lookahead) {
3488
0
        int lag_in_frames = cpi_lap != NULL ? cpi_lap->oxcf.gf_cfg.lag_in_frames
3489
0
                                            : cpi->oxcf.gf_cfg.lag_in_frames;
3490
0
        AV1EncoderConfig *oxcf = &cpi->oxcf;
3491
0
        const BLOCK_SIZE sb_size = av1_select_sb_size(
3492
0
            oxcf, oxcf->frm_dim_cfg.width, oxcf->frm_dim_cfg.height,
3493
0
            ppi->number_spatial_layers);
3494
0
        oxcf->border_in_pixels =
3495
0
            av1_get_enc_border_size(av1_is_resize_needed(oxcf),
3496
0
                                    oxcf->kf_cfg.key_freq_max == 0, sb_size);
3497
0
        for (int i = 0; i < ppi->num_fp_contexts; i++) {
3498
0
          ppi->parallel_cpi[i]->oxcf.border_in_pixels = oxcf->border_in_pixels;
3499
0
        }
3500
3501
0
        const int src_border_in_pixels = get_src_border_in_pixels(cpi, sb_size);
3502
0
        ppi->lookahead = av1_lookahead_init(
3503
0
            cpi->oxcf.frm_dim_cfg.width, cpi->oxcf.frm_dim_cfg.height,
3504
0
            subsampling_x, subsampling_y, use_highbitdepth, lag_in_frames,
3505
0
            src_border_in_pixels, cpi->common.features.byte_alignment,
3506
0
            ctx->num_lap_buffers, (cpi->oxcf.kf_cfg.key_freq_max == 0),
3507
0
            cpi->alloc_pyramid);
3508
0
      }
3509
0
      if (!ppi->lookahead)
3510
0
        aom_internal_error(&ppi->error, AOM_CODEC_MEM_ERROR,
3511
0
                           "Failed to allocate lag buffers");
3512
0
      for (int i = 0; i < ppi->num_fp_contexts; i++) {
3513
0
        aom_codec_err_t err =
3514
0
            av1_check_initial_width(ppi->parallel_cpi[i], use_highbitdepth,
3515
0
                                    subsampling_x, subsampling_y);
3516
0
        if (err != AOM_CODEC_OK) {
3517
0
          aom_internal_error(&ppi->error, err,
3518
0
                             "av1_check_initial_width() failed");
3519
0
        }
3520
0
      }
3521
0
      if (cpi_lap != NULL) {
3522
0
        aom_codec_err_t err = av1_check_initial_width(
3523
0
            cpi_lap, use_highbitdepth, subsampling_x, subsampling_y);
3524
0
        if (err != AOM_CODEC_OK) {
3525
0
          aom_internal_error(&ppi->error, err,
3526
0
                             "av1_check_initial_width() failed");
3527
0
        }
3528
0
      }
3529
3530
      // Store the original flags in to the frame buffer. Will extract the
3531
      // key frame flag when we actually encode this frame.
3532
0
      if (av1_receive_raw_frame(cpi, flags | ctx->next_frame_flags, &sd,
3533
0
                                src_time_stamp, src_end_time_stamp)) {
3534
0
        res = update_error_state(ctx, cpi->common.error);
3535
0
      }
3536
0
      ctx->next_frame_flags = 0;
3537
0
    }
3538
3539
0
    cpi_data.cx_data = ctx->cx_data;
3540
0
    cpi_data.cx_data_sz = ctx->cx_data_sz;
3541
3542
    /* Any pending invisible frames? */
3543
0
    if (ctx->pending_cx_data_sz) {
3544
0
      cpi_data.cx_data += ctx->pending_cx_data_sz;
3545
0
      cpi_data.cx_data_sz -= ctx->pending_cx_data_sz;
3546
3547
      /* TODO: this is a minimal check, the underlying codec doesn't respect
3548
       * the buffer size anyway.
3549
       */
3550
0
      if (cpi_data.cx_data_sz < ctx->cx_data_sz / 2) {
3551
0
        aom_internal_error(&ppi->error, AOM_CODEC_ERROR,
3552
0
                           "Compressed data buffer too small");
3553
0
      }
3554
0
    }
3555
3556
0
    int is_frame_visible = 0;
3557
0
    int has_no_show_keyframe = 0;
3558
0
    int num_workers = 0;
3559
3560
0
    if (cpi->oxcf.pass == AOM_RC_FIRST_PASS) {
3561
0
#if !CONFIG_REALTIME_ONLY
3562
0
      num_workers = ppi->p_mt_info.num_mod_workers[MOD_FP] =
3563
0
          av1_fp_compute_num_enc_workers(cpi);
3564
0
#endif
3565
0
    } else {
3566
0
      av1_compute_num_workers_for_mt(cpi);
3567
0
      num_workers = av1_get_max_num_workers(cpi);
3568
0
    }
3569
0
    if (num_workers > 1 && ppi->p_mt_info.num_workers < num_workers) {
3570
      // Obtain the maximum no. of frames that can be supported in a parallel
3571
      // encode set.
3572
0
      if (is_stat_consumption_stage(cpi)) {
3573
0
        ppi->num_fp_contexts = av1_compute_num_fp_contexts(ppi, &cpi->oxcf);
3574
0
      }
3575
0
      if (ppi->p_mt_info.num_workers > 0) {
3576
0
        av1_terminate_workers(ppi);
3577
0
        free_thread_data(ppi);
3578
0
        aom_free(ppi->p_mt_info.tile_thr_data);
3579
0
        ppi->p_mt_info.tile_thr_data = NULL;
3580
0
        aom_free(ppi->p_mt_info.workers);
3581
0
        ppi->p_mt_info.workers = NULL;
3582
0
        ppi->p_mt_info.num_workers = 0;
3583
0
        for (int j = 0; j < ppi->num_fp_contexts; j++) {
3584
0
          aom_free(ppi->parallel_cpi[j]->td.tctx);
3585
0
          ppi->parallel_cpi[j]->td.tctx = NULL;
3586
0
        }
3587
0
      }
3588
0
      av1_create_workers(ppi, num_workers);
3589
0
      av1_init_tile_thread_data(ppi, cpi->oxcf.pass == AOM_RC_FIRST_PASS);
3590
0
    }
3591
3592
    // Re-allocate thread data if workers for encoder multi-threading stage
3593
    // exceeds prev_num_enc_workers.
3594
0
    const int num_enc_workers =
3595
0
        av1_get_num_mod_workers_for_alloc(&ppi->p_mt_info, MOD_ENC);
3596
0
    if (ppi->p_mt_info.prev_num_enc_workers < num_enc_workers &&
3597
0
        num_enc_workers <= ppi->p_mt_info.num_workers) {
3598
0
      free_thread_data(ppi);
3599
0
      for (int j = 0; j < ppi->num_fp_contexts; j++) {
3600
0
        aom_free(ppi->parallel_cpi[j]->td.tctx);
3601
0
        ppi->parallel_cpi[j]->td.tctx = NULL;
3602
0
      }
3603
0
      av1_init_tile_thread_data(ppi, cpi->oxcf.pass == AOM_RC_FIRST_PASS);
3604
0
    }
3605
3606
0
    for (int i = 0; i < ppi->num_fp_contexts; i++) {
3607
0
      av1_init_frame_mt(ppi, ppi->parallel_cpi[i]);
3608
0
    }
3609
0
    if (cpi_lap != NULL) {
3610
0
      av1_init_frame_mt(ppi, cpi_lap);
3611
0
    }
3612
0
#if CONFIG_MULTITHREAD
3613
0
    if (ppi->p_mt_info.num_workers > 1) {
3614
0
      for (int i = 0; i < ppi->num_fp_contexts; i++) {
3615
0
        av1_init_mt_sync(ppi->parallel_cpi[i],
3616
0
                         ppi->parallel_cpi[i]->oxcf.pass == AOM_RC_FIRST_PASS);
3617
0
      }
3618
0
      if (cpi_lap != NULL) {
3619
0
        av1_init_mt_sync(cpi_lap, 1);
3620
0
      }
3621
0
    }
3622
0
#endif  // CONFIG_MULTITHREAD
3623
3624
    // Call for LAP stage
3625
0
    if (cpi_lap != NULL && !is_one_pass_rt_lag_params(cpi)) {
3626
0
      if (cpi_lap->ppi->b_freeze_internal_state) {
3627
0
        av1_save_all_coding_context(cpi_lap);
3628
0
      }
3629
0
      AV1_COMP_DATA cpi_lap_data = { 0 };
3630
0
      cpi_lap_data.flush = !img;
3631
0
      cpi_lap_data.timestamp_ratio = &ctx->timestamp_ratio;
3632
0
      const int status = av1_get_compressed_data(cpi_lap, &cpi_lap_data);
3633
0
      if (status > AOM_CODEC_OK) {
3634
0
        aom_internal_error_copy(&ppi->error, cpi_lap->common.error);
3635
0
      }
3636
0
      av1_post_encode_updates(cpi_lap, &cpi_lap_data);
3637
0
      if (cpi_lap->ppi->b_freeze_internal_state) {
3638
0
        restore_all_coding_context(cpi_lap);
3639
0
      }
3640
0
    }
3641
3642
    // Recalculate the maximum number of frames that can be encoded in
3643
    // parallel at the beginning of sub gop.
3644
0
    if (is_stat_consumption_stage(cpi) && ppi->gf_group.size > 0 &&
3645
0
        cpi->gf_frame_index == ppi->gf_group.size) {
3646
0
      ppi->num_fp_contexts = av1_compute_num_fp_contexts(ppi, &cpi->oxcf);
3647
0
    }
3648
3649
    // Get the next visible frame. Invisible frames get packed with the next
3650
    // visible frame.
3651
0
    while (cpi_data.cx_data_sz >= ctx->cx_data_sz / 2 && !is_frame_visible) {
3652
0
      int simulate_parallel_frame = 0;
3653
0
      int status = -1;
3654
0
      cpi->do_frame_data_update = true;
3655
0
      cpi->ref_idx_to_skip = INVALID_IDX;
3656
0
      cpi->ref_refresh_index = INVALID_IDX;
3657
0
      cpi->refresh_idx_available = false;
3658
0
      if (cpi->ppi->b_freeze_internal_state) {
3659
0
        av1_save_all_coding_context(cpi);
3660
0
      }
3661
3662
#if CONFIG_FPMT_TEST
3663
      simulate_parallel_frame =
3664
          cpi->ppi->fpmt_unit_test_cfg == PARALLEL_SIMULATION_ENCODE ? 1 : 0;
3665
      if (simulate_parallel_frame) {
3666
        if (ppi->num_fp_contexts > 1 && ppi->gf_group.size > 1) {
3667
          if (cpi->gf_frame_index < ppi->gf_group.size) {
3668
            calc_frame_data_update_flag(&ppi->gf_group, cpi->gf_frame_index,
3669
                                        &cpi->do_frame_data_update);
3670
          }
3671
        }
3672
        status = av1_get_compressed_data(cpi, &cpi_data);
3673
      }
3674
3675
#endif  // CONFIG_FPMT_TEST
3676
0
      if (!simulate_parallel_frame) {
3677
        // Add a range check here to give an error for frame_parallel_level
3678
        // array out-of-bounds access.
3679
0
        if (cpi->gf_frame_index >= MAX_STATIC_GF_GROUP_LENGTH) {
3680
0
          aom_internal_error(&ppi->error, AOM_CODEC_ERROR,
3681
0
                             "cpi->gf_frame_index is out of range");
3682
0
        }
3683
3684
        // May need a better way for checking the frame's frame_parallel_level,
3685
        // especially for the first frame of the following gop.
3686
0
        if (ppi->gf_group.frame_parallel_level[cpi->gf_frame_index] == 0) {
3687
0
          status = av1_get_compressed_data(cpi, &cpi_data);
3688
0
        } else if (ppi->gf_group.frame_parallel_level[cpi->gf_frame_index] ==
3689
0
                   1) {
3690
          // In case of an error, longjmp() would be invoked and hence "status"
3691
          // is set to AOM_CODEC_OK here.
3692
0
          av1_compress_parallel_frames(ppi, &cpi_data);
3693
0
          status = AOM_CODEC_OK;
3694
0
        } else {
3695
          // No possibility of failures from this function and hence "status" is
3696
          // set to AOM_CODEC_OK here.
3697
0
          cpi = av1_get_parallel_frame_enc_data(ppi, &cpi_data);
3698
0
          status = AOM_CODEC_OK;
3699
0
        }
3700
0
      }
3701
0
      if (status == -1) break;
3702
0
      if (status != AOM_CODEC_OK) {
3703
0
        aom_internal_error_copy(&ppi->error, cpi->common.error);
3704
0
      }
3705
0
      if (ppi->num_fp_contexts > 0 && frame_is_intra_only(&cpi->common)) {
3706
0
        av1_init_sc_decisions(ppi);
3707
0
      }
3708
3709
0
      ppi->seq_params_locked = 1;
3710
0
      av1_post_encode_updates(cpi, &cpi_data);
3711
3712
0
      if (cpi->ppi->b_freeze_internal_state) {
3713
0
        restore_all_coding_context(cpi);
3714
0
      }
3715
3716
#if CONFIG_ENTROPY_STATS
3717
      if (ppi->cpi->oxcf.pass != 1 && !cpi->common.show_existing_frame)
3718
        av1_accumulate_frame_counts(&ppi->aggregate_fc, &cpi->counts);
3719
#endif
3720
#if CONFIG_INTERNAL_STATS
3721
      if (ppi->cpi->oxcf.pass != 1) {
3722
        ppi->total_time_compress_data += cpi->time_compress_data;
3723
        ppi->total_recode_hits += cpi->frame_recode_hits;
3724
        ppi->total_bytes += (uint64_t)cpi->bytes;
3725
        for (int i = 0; i < MAX_MODES; i++) {
3726
          ppi->total_mode_chosen_counts[i] += cpi->mode_chosen_counts[i];
3727
        }
3728
      }
3729
#endif  // CONFIG_INTERNAL_STATS
3730
3731
0
      if (!cpi_data.frame_size) continue;
3732
0
      assert(cpi_data.cx_data != NULL && cpi_data.cx_data_sz != 0);
3733
0
      if (cpi_data.frame_size > cpi_data.cx_data_sz) {
3734
0
        aom_internal_error(&ppi->error, AOM_CODEC_ERROR,
3735
0
                           "cpi_data.cx_data buffer overflow");
3736
0
      }
3737
0
      const int write_temporal_delimiter =
3738
0
          !cpi->common.spatial_layer_id && !ctx->pending_cx_data_sz;
3739
3740
0
      if (write_temporal_delimiter) {
3741
0
        uint32_t obu_header_size = 1;
3742
0
        const uint32_t obu_payload_size = 0;
3743
0
        const size_t length_field_size =
3744
0
            aom_uleb_size_in_bytes(obu_payload_size);
3745
3746
0
        const size_t move_offset = obu_header_size + length_field_size;
3747
0
        assert(ctx->cx_data_sz == cpi_data.cx_data_sz);
3748
0
        if (move_offset > ctx->cx_data_sz - cpi_data.frame_size) {
3749
0
          aom_internal_error(&ppi->error, AOM_CODEC_ERROR,
3750
0
                             "ctx->cx_data buffer full");
3751
0
        }
3752
0
        memmove(ctx->cx_data + move_offset, ctx->cx_data, cpi_data.frame_size);
3753
0
        obu_header_size = av1_write_obu_header(
3754
0
            &ppi->level_params, &cpi->frame_header_count,
3755
0
            OBU_TEMPORAL_DELIMITER,
3756
0
            ppi->seq_params.has_nonzero_operating_point_idc,
3757
0
            /*is_layer_specific_obu=*/false, 0, ctx->cx_data);
3758
0
        if (obu_header_size != 1) {
3759
0
          aom_internal_error(&ppi->error, AOM_CODEC_ERROR, NULL);
3760
0
        }
3761
3762
        // OBUs are preceded/succeeded by an unsigned leb128 coded integer.
3763
0
        if (av1_write_uleb_obu_size(obu_payload_size,
3764
0
                                    ctx->cx_data + obu_header_size,
3765
0
                                    length_field_size) != AOM_CODEC_OK) {
3766
0
          aom_internal_error(&ppi->error, AOM_CODEC_ERROR, NULL);
3767
0
        }
3768
3769
0
        cpi_data.frame_size += move_offset;
3770
0
      }
3771
3772
0
      if (ctx->oxcf.save_as_annexb) {
3773
0
        if (av1_convert_sect5obus_to_annexb(
3774
0
                cpi_data.cx_data, cpi_data.cx_data_sz, &cpi_data.frame_size) !=
3775
0
            AOM_CODEC_OK) {
3776
0
          aom_internal_error(&ppi->error, AOM_CODEC_ERROR, NULL);
3777
0
        }
3778
3779
        // B_PRIME (add frame size)
3780
0
        const size_t length_field_size =
3781
0
            aom_uleb_size_in_bytes(cpi_data.frame_size);
3782
0
        if (length_field_size > cpi_data.cx_data_sz - cpi_data.frame_size) {
3783
0
          aom_internal_error(&ppi->error, AOM_CODEC_ERROR,
3784
0
                             "cpi_data.cx_data buffer full");
3785
0
        }
3786
0
        memmove(cpi_data.cx_data + length_field_size, cpi_data.cx_data,
3787
0
                cpi_data.frame_size);
3788
0
        if (av1_write_uleb_obu_size(cpi_data.frame_size, cpi_data.cx_data,
3789
0
                                    length_field_size) != AOM_CODEC_OK) {
3790
0
          aom_internal_error(&ppi->error, AOM_CODEC_ERROR, NULL);
3791
0
        }
3792
0
        cpi_data.frame_size += length_field_size;
3793
0
      }
3794
3795
0
      ctx->pending_cx_data_sz += cpi_data.frame_size;
3796
3797
0
      cpi_data.cx_data += cpi_data.frame_size;
3798
0
      cpi_data.cx_data_sz -= cpi_data.frame_size;
3799
3800
0
      is_frame_visible = cpi->common.show_frame;
3801
3802
0
      has_no_show_keyframe |=
3803
0
          (!is_frame_visible &&
3804
0
           cpi->common.current_frame.frame_type == KEY_FRAME);
3805
0
    }
3806
0
    if (is_frame_visible) {
3807
      // Add the frame packet to the list of returned packets.
3808
0
      aom_codec_cx_pkt_t pkt;
3809
3810
      // decrement frames_left counter
3811
0
      ppi->frames_left = AOMMAX(0, ppi->frames_left - 1);
3812
0
      if (ctx->oxcf.save_as_annexb) {
3813
        //  B_PRIME (add TU size)
3814
0
        size_t tu_size = ctx->pending_cx_data_sz;
3815
0
        const size_t length_field_size = aom_uleb_size_in_bytes(tu_size);
3816
0
        if (tu_size > ctx->cx_data_sz) {
3817
0
          aom_internal_error(&ppi->error, AOM_CODEC_ERROR,
3818
0
                             "ctx->cx_data buffer overflow");
3819
0
        }
3820
0
        if (length_field_size > ctx->cx_data_sz - tu_size) {
3821
0
          aom_internal_error(&ppi->error, AOM_CODEC_ERROR,
3822
0
                             "ctx->cx_data buffer full");
3823
0
        }
3824
0
        memmove(ctx->cx_data + length_field_size, ctx->cx_data, tu_size);
3825
0
        if (av1_write_uleb_obu_size(tu_size, ctx->cx_data, length_field_size) !=
3826
0
            AOM_CODEC_OK) {
3827
0
          aom_internal_error(&ppi->error, AOM_CODEC_ERROR, NULL);
3828
0
        }
3829
0
        ctx->pending_cx_data_sz += length_field_size;
3830
0
      }
3831
3832
0
      pkt.kind = AOM_CODEC_CX_FRAME_PKT;
3833
3834
0
      pkt.data.frame.buf = ctx->cx_data;
3835
0
      pkt.data.frame.sz = ctx->pending_cx_data_sz;
3836
0
      pkt.data.frame.partition_id = -1;
3837
0
      pkt.data.frame.vis_frame_size = cpi_data.frame_size;
3838
3839
0
      pkt.data.frame.pts = ticks_to_timebase_units(cpi_data.timestamp_ratio,
3840
0
                                                   cpi_data.ts_frame_start) +
3841
0
                           ctx->pts_offset;
3842
0
      pkt.data.frame.flags = get_frame_pkt_flags(cpi, cpi_data.lib_flags);
3843
0
      if (has_no_show_keyframe) {
3844
        // If one of the invisible frames in the packet is a keyframe, set
3845
        // the delayed random access point flag.
3846
0
        pkt.data.frame.flags |= AOM_FRAME_IS_DELAYED_RANDOM_ACCESS_POINT;
3847
0
      }
3848
0
      const int64_t duration64 = ticks_to_timebase_units(
3849
0
          cpi_data.timestamp_ratio,
3850
0
          cpi_data.ts_frame_end - cpi_data.ts_frame_start);
3851
0
      if (duration64 > UINT32_MAX) {
3852
0
        aom_internal_error(&ppi->error, AOM_CODEC_ERROR, NULL);
3853
0
      }
3854
0
      pkt.data.frame.duration = (uint32_t)duration64;
3855
3856
0
      aom_codec_pkt_list_add(&ctx->pkt_list.head, &pkt);
3857
3858
0
      ctx->pending_cx_data_sz = 0;
3859
0
    }
3860
0
  }
3861
3862
0
  ppi->error.setjmp = 0;
3863
0
  return res;
3864
0
}
3865
3866
static const aom_codec_cx_pkt_t *encoder_get_cxdata(aom_codec_alg_priv_t *ctx,
3867
0
                                                    aom_codec_iter_t *iter) {
3868
0
  return aom_codec_pkt_list_get(&ctx->pkt_list.head, iter);
3869
0
}
3870
3871
static aom_codec_err_t ctrl_set_reference(aom_codec_alg_priv_t *ctx,
3872
0
                                          va_list args) {
3873
0
  av1_ref_frame_t *const frame = va_arg(args, av1_ref_frame_t *);
3874
3875
0
  if (frame != NULL) {
3876
0
    YV12_BUFFER_CONFIG sd;
3877
3878
0
    image2yuvconfig(&frame->img, &sd);
3879
0
    av1_set_reference_enc(ctx->ppi->cpi, frame->idx, &sd);
3880
0
    return AOM_CODEC_OK;
3881
0
  } else {
3882
0
    return AOM_CODEC_INVALID_PARAM;
3883
0
  }
3884
0
}
3885
3886
static aom_codec_err_t ctrl_copy_reference(aom_codec_alg_priv_t *ctx,
3887
0
                                           va_list args) {
3888
0
  if (ctx->ppi->cpi->oxcf.algo_cfg.skip_postproc_filtering)
3889
0
    return AOM_CODEC_INCAPABLE;
3890
0
  av1_ref_frame_t *const frame = va_arg(args, av1_ref_frame_t *);
3891
3892
0
  if (frame != NULL) {
3893
0
    YV12_BUFFER_CONFIG sd;
3894
3895
0
    image2yuvconfig(&frame->img, &sd);
3896
0
    av1_copy_reference_enc(ctx->ppi->cpi, frame->idx, &sd);
3897
0
    return AOM_CODEC_OK;
3898
0
  } else {
3899
0
    return AOM_CODEC_INVALID_PARAM;
3900
0
  }
3901
0
}
3902
3903
static aom_codec_err_t ctrl_get_reference(aom_codec_alg_priv_t *ctx,
3904
0
                                          va_list args) {
3905
0
  if (ctx->ppi->cpi->oxcf.algo_cfg.skip_postproc_filtering)
3906
0
    return AOM_CODEC_INCAPABLE;
3907
0
  av1_ref_frame_t *const frame = va_arg(args, av1_ref_frame_t *);
3908
3909
0
  if (frame != NULL) {
3910
0
    YV12_BUFFER_CONFIG *fb = get_ref_frame(&ctx->ppi->cpi->common, frame->idx);
3911
0
    if (fb == NULL) return AOM_CODEC_ERROR;
3912
3913
0
    yuvconfig2image(&frame->img, fb, NULL);
3914
0
    return AOM_CODEC_OK;
3915
0
  } else {
3916
0
    return AOM_CODEC_INVALID_PARAM;
3917
0
  }
3918
0
}
3919
3920
static aom_codec_err_t ctrl_get_new_frame_image(aom_codec_alg_priv_t *ctx,
3921
0
                                                va_list args) {
3922
0
  aom_image_t *const new_img = va_arg(args, aom_image_t *);
3923
3924
0
  if (new_img != NULL) {
3925
0
    YV12_BUFFER_CONFIG new_frame;
3926
3927
0
    if (av1_get_last_show_frame(ctx->ppi->cpi, &new_frame) == 0) {
3928
0
      yuvconfig2image(new_img, &new_frame, NULL);
3929
0
      return AOM_CODEC_OK;
3930
0
    } else {
3931
0
      return AOM_CODEC_ERROR;
3932
0
    }
3933
0
  } else {
3934
0
    return AOM_CODEC_INVALID_PARAM;
3935
0
  }
3936
0
}
3937
3938
static aom_codec_err_t ctrl_copy_new_frame_image(aom_codec_alg_priv_t *ctx,
3939
0
                                                 va_list args) {
3940
0
  aom_image_t *const new_img = va_arg(args, aom_image_t *);
3941
3942
0
  if (new_img != NULL) {
3943
0
    YV12_BUFFER_CONFIG new_frame;
3944
3945
0
    if (av1_get_last_show_frame(ctx->ppi->cpi, &new_frame) == 0) {
3946
0
      YV12_BUFFER_CONFIG sd;
3947
0
      image2yuvconfig(new_img, &sd);
3948
0
      return av1_copy_new_frame_enc(&ctx->ppi->cpi->common, &new_frame, &sd);
3949
0
    } else {
3950
0
      return AOM_CODEC_ERROR;
3951
0
    }
3952
0
  } else {
3953
0
    return AOM_CODEC_INVALID_PARAM;
3954
0
  }
3955
0
}
3956
3957
0
static aom_image_t *encoder_get_preview(aom_codec_alg_priv_t *ctx) {
3958
0
  YV12_BUFFER_CONFIG sd;
3959
3960
0
  if (av1_get_preview_raw_frame(ctx->ppi->cpi, &sd) == 0) {
3961
0
    yuvconfig2image(&ctx->preview_img, &sd, NULL);
3962
0
    return &ctx->preview_img;
3963
0
  } else {
3964
0
    return NULL;
3965
0
  }
3966
0
}
3967
3968
static aom_codec_err_t ctrl_use_reference(aom_codec_alg_priv_t *ctx,
3969
0
                                          va_list args) {
3970
0
  const int reference_flag = va_arg(args, int);
3971
3972
0
  av1_use_as_reference(&ctx->ppi->cpi->ext_flags.ref_frame_flags,
3973
0
                       reference_flag);
3974
0
  return AOM_CODEC_OK;
3975
0
}
3976
3977
static aom_codec_err_t ctrl_set_roi_map(aom_codec_alg_priv_t *ctx,
3978
0
                                        va_list args) {
3979
0
  aom_roi_map_t *data = va_arg(args, aom_roi_map_t *);
3980
3981
0
  if (data) {
3982
0
    aom_roi_map_t *roi = data;
3983
0
    return av1_set_roi_map(ctx->ppi->cpi, roi->roi_map, roi->rows, roi->cols,
3984
0
                           roi->delta_q, roi->delta_lf, roi->skip,
3985
0
                           roi->ref_frame);
3986
0
  }
3987
0
  return AOM_CODEC_INVALID_PARAM;
3988
0
}
3989
3990
static aom_codec_err_t ctrl_set_active_map(aom_codec_alg_priv_t *ctx,
3991
0
                                           va_list args) {
3992
0
  aom_active_map_t *const map = va_arg(args, aom_active_map_t *);
3993
3994
0
  if (map) {
3995
0
    if (!av1_set_active_map(ctx->ppi->cpi, map->active_map, (int)map->rows,
3996
0
                            (int)map->cols))
3997
0
      return AOM_CODEC_OK;
3998
0
    else
3999
0
      return AOM_CODEC_INVALID_PARAM;
4000
0
  } else {
4001
0
    return AOM_CODEC_INVALID_PARAM;
4002
0
  }
4003
0
}
4004
4005
static aom_codec_err_t ctrl_get_active_map(aom_codec_alg_priv_t *ctx,
4006
0
                                           va_list args) {
4007
0
  aom_active_map_t *const map = va_arg(args, aom_active_map_t *);
4008
4009
0
  if (map) {
4010
0
    if (!av1_get_active_map(ctx->ppi->cpi, map->active_map, (int)map->rows,
4011
0
                            (int)map->cols))
4012
0
      return AOM_CODEC_OK;
4013
0
    else
4014
0
      return AOM_CODEC_INVALID_PARAM;
4015
0
  } else {
4016
0
    return AOM_CODEC_INVALID_PARAM;
4017
0
  }
4018
0
}
4019
4020
static aom_codec_err_t ctrl_set_scale_mode(aom_codec_alg_priv_t *ctx,
4021
0
                                           va_list args) {
4022
0
  aom_scaling_mode_t *const mode = va_arg(args, aom_scaling_mode_t *);
4023
4024
0
  if (mode) {
4025
0
    AV1EncoderConfig *const oxcf =
4026
0
        ctx->ppi->seq_params_locked ? &ctx->ppi->cpi->oxcf : &ctx->oxcf;
4027
0
    const int res =
4028
0
        av1_set_internal_size(oxcf, &ctx->ppi->cpi->resize_pending_params,
4029
0
                              mode->h_scaling_mode, mode->v_scaling_mode);
4030
0
    if (res == 0) {
4031
      // update_encoder_cfg() is somewhat costly and this control may be called
4032
      // multiple times, so update_encoder_cfg() is only called to ensure frame
4033
      // and superblock sizes are updated before they're fixed by the first
4034
      // encode call.
4035
0
      if (ctx->ppi->seq_params_locked) {
4036
0
        av1_check_fpmt_config(ctx->ppi, &ctx->ppi->cpi->oxcf);
4037
0
        return AOM_CODEC_OK;
4038
0
      }
4039
0
      return update_encoder_cfg(ctx);
4040
0
    }
4041
0
    return AOM_CODEC_INVALID_PARAM;
4042
0
  } else {
4043
0
    return AOM_CODEC_INVALID_PARAM;
4044
0
  }
4045
0
}
4046
4047
static aom_codec_err_t ctrl_set_spatial_layer_id(aom_codec_alg_priv_t *ctx,
4048
0
                                                 va_list args) {
4049
0
  const int spatial_layer_id = va_arg(args, int);
4050
0
  if (spatial_layer_id < 0 ||
4051
0
      spatial_layer_id >= (int)ctx->ppi->number_spatial_layers)
4052
0
    return AOM_CODEC_INVALID_PARAM;
4053
0
  ctx->ppi->cpi->common.spatial_layer_id = spatial_layer_id;
4054
0
  return AOM_CODEC_OK;
4055
0
}
4056
4057
static aom_codec_err_t ctrl_set_number_spatial_layers(aom_codec_alg_priv_t *ctx,
4058
0
                                                      va_list args) {
4059
0
  const int number_spatial_layers = va_arg(args, int);
4060
  // Note svc.use_flexible_mode is set by AV1E_SET_SVC_REF_FRAME_CONFIG. When
4061
  // it is false (the default) the actual limit is 3 for both spatial and
4062
  // temporal layers. Given the order of these calls are unpredictable the
4063
  // final check is deferred until encoder_encode() (av1_set_svc_fixed_mode()).
4064
0
  if (number_spatial_layers <= 0 ||
4065
0
      number_spatial_layers > MAX_NUM_SPATIAL_LAYERS)
4066
0
    return AOM_CODEC_INVALID_PARAM;
4067
0
  ctx->ppi->number_spatial_layers = number_spatial_layers;
4068
  // update_encoder_cfg() is somewhat costly and this control may be called
4069
  // multiple times, so update_encoder_cfg() is only called to ensure frame and
4070
  // superblock sizes are updated before they're fixed by the first encode
4071
  // call.
4072
0
  if (!ctx->ppi->seq_params_locked) {
4073
0
    return update_encoder_cfg(ctx);
4074
0
  }
4075
0
  return AOM_CODEC_OK;
4076
0
}
4077
4078
static aom_codec_err_t ctrl_set_layer_id(aom_codec_alg_priv_t *ctx,
4079
0
                                         va_list args) {
4080
0
  aom_svc_layer_id_t *const data = va_arg(args, aom_svc_layer_id_t *);
4081
0
  if (data->spatial_layer_id < 0 || data->temporal_layer_id < 0 ||
4082
0
      data->spatial_layer_id >= (int)ctx->ppi->number_spatial_layers ||
4083
0
      data->temporal_layer_id >= (int)ctx->ppi->number_temporal_layers) {
4084
0
    return AOM_CODEC_INVALID_PARAM;
4085
0
  }
4086
0
  ctx->ppi->cpi->common.spatial_layer_id = data->spatial_layer_id;
4087
0
  ctx->ppi->cpi->common.temporal_layer_id = data->temporal_layer_id;
4088
0
  ctx->ppi->cpi->svc.spatial_layer_id = data->spatial_layer_id;
4089
0
  ctx->ppi->cpi->svc.temporal_layer_id = data->temporal_layer_id;
4090
0
  return AOM_CODEC_OK;
4091
0
}
4092
4093
0
static void disable_svc(AV1_PRIMARY *ppi, AV1_COMP *cpi) {
4094
0
  cpi->svc.number_spatial_layers = 1;
4095
0
  cpi->svc.number_temporal_layers = 1;
4096
0
  ppi->number_spatial_layers = 1;
4097
0
  ppi->number_temporal_layers = 1;
4098
0
  ppi->use_svc = 0;
4099
0
}
4100
4101
static aom_codec_err_t ctrl_set_svc_params(aom_codec_alg_priv_t *ctx,
4102
0
                                           va_list args) {
4103
0
  AV1_PRIMARY *const ppi = ctx->ppi;
4104
0
  AV1_COMP *const cpi = ppi->cpi;
4105
0
  aom_svc_params_t *const params = va_arg(args, aom_svc_params_t *);
4106
0
  volatile int64_t target_bandwidth = 0;
4107
  // Note svc.use_flexible_mode is set by AV1E_SET_SVC_REF_FRAME_CONFIG. When
4108
  // it is false (the default) the actual limit is 3 for both spatial and
4109
  // temporal layers. Given the order of these calls are unpredictable the
4110
  // final check is deferred until encoder_encode() (av1_set_svc_fixed_mode()).
4111
0
  if (params->number_spatial_layers <= 0 ||
4112
0
      params->number_spatial_layers > MAX_NUM_SPATIAL_LAYERS ||
4113
0
      params->number_temporal_layers <= 0 ||
4114
0
      params->number_temporal_layers > MAX_NUM_TEMPORAL_LAYERS) {
4115
0
    return AOM_CODEC_INVALID_PARAM;
4116
0
  }
4117
0
  ppi->number_spatial_layers = params->number_spatial_layers;
4118
0
  ppi->number_temporal_layers = params->number_temporal_layers;
4119
0
  cpi->svc.number_spatial_layers = params->number_spatial_layers;
4120
0
  cpi->svc.number_temporal_layers = params->number_temporal_layers;
4121
  // Sequence parameters (operating_points_cnt_minus_1, operating_point_idc[])
4122
  // need to be updated if the number of layers have changed.
4123
  // Force a keyframe here and update the two relevant sequence parameters.
4124
0
  if (cpi->svc.prev_number_temporal_layers &&
4125
0
      cpi->svc.prev_number_spatial_layers &&
4126
0
      (cpi->svc.number_temporal_layers !=
4127
0
           cpi->svc.prev_number_temporal_layers ||
4128
0
       cpi->svc.number_spatial_layers != cpi->svc.prev_number_spatial_layers)) {
4129
0
    SequenceHeader *const seq_params = &ppi->seq_params;
4130
0
    seq_params->operating_points_cnt_minus_1 =
4131
0
        ppi->number_spatial_layers * ppi->number_temporal_layers - 1;
4132
0
    ctx->next_frame_flags |= AOM_EFLAG_FORCE_KF;
4133
0
    av1_set_svc_seq_params(ppi);
4134
0
    av1_free_svc_cyclic_refresh(cpi);
4135
    // Check for valid values for the spatial/temporal_layer_id here, since
4136
    // there has been a dynamic change in the number_spatial/temporal_layers,
4137
    // and if the ctrl_set_layer_id is not used after this call, the
4138
    // previous (last_encoded) values of spatial/temporal_layer_id will be used,
4139
    // which may be invalid.
4140
0
    cpi->svc.spatial_layer_id =
4141
0
        clamp(cpi->svc.spatial_layer_id, 0, cpi->svc.number_spatial_layers - 1);
4142
0
    cpi->svc.temporal_layer_id = clamp(cpi->svc.temporal_layer_id, 0,
4143
0
                                       cpi->svc.number_temporal_layers - 1);
4144
0
    cpi->common.spatial_layer_id = clamp(cpi->common.spatial_layer_id, 0,
4145
0
                                         cpi->svc.number_spatial_layers - 1);
4146
0
    cpi->common.temporal_layer_id = clamp(cpi->common.temporal_layer_id, 0,
4147
0
                                          cpi->svc.number_temporal_layers - 1);
4148
0
  }
4149
4150
0
  if (ppi->number_spatial_layers > 1 || ppi->number_temporal_layers > 1) {
4151
0
    unsigned int sl, tl;
4152
    // Disable svc for lag_in_frames > 0.
4153
0
    if (cpi->oxcf.gf_cfg.lag_in_frames > 0) return AOM_CODEC_INVALID_PARAM;
4154
0
    const int num_layers =
4155
0
        ppi->number_spatial_layers * ppi->number_temporal_layers;
4156
0
    for (int layer = 0; layer < num_layers; ++layer) {
4157
0
      if (params->max_quantizers[layer] > 63 ||
4158
0
          params->min_quantizers[layer] < 0 ||
4159
0
          params->min_quantizers[layer] > params->max_quantizers[layer]) {
4160
0
        disable_svc(ppi, cpi);
4161
0
        return AOM_CODEC_INVALID_PARAM;
4162
0
      }
4163
0
    }
4164
0
    for (sl = 0; sl < ppi->number_spatial_layers; ++sl) {
4165
      // Check scaling factors: spatial scaling (scaling_factor_num[]/den[]) is
4166
      // always to a lower resolution, so den must be >= num.
4167
0
      if (params->scaling_factor_den[sl] < params->scaling_factor_num[sl]) {
4168
0
        disable_svc(ppi, cpi);
4169
0
        return AOM_CODEC_INVALID_PARAM;
4170
0
      }
4171
0
    }
4172
0
    if (!av1_alloc_layer_context(cpi, num_layers)) return AOM_CODEC_MEM_ERROR;
4173
0
    ppi->use_svc = 1;
4174
4175
0
    for (sl = 0; sl < ppi->number_spatial_layers; ++sl) {
4176
0
      for (tl = 0; tl < ppi->number_temporal_layers; ++tl) {
4177
0
        const int layer = LAYER_IDS_TO_IDX(sl, tl, ppi->number_temporal_layers);
4178
0
        LAYER_CONTEXT *lc = &cpi->svc.layer_context[layer];
4179
0
        lc->max_q = params->max_quantizers[layer];
4180
0
        lc->min_q = params->min_quantizers[layer];
4181
0
        lc->scaling_factor_num = AOMMAX(1, params->scaling_factor_num[sl]);
4182
0
        lc->scaling_factor_den = AOMMAX(1, params->scaling_factor_den[sl]);
4183
0
        const int layer_target_bitrate = params->layer_target_bitrate[layer];
4184
0
        if (layer_target_bitrate > INT_MAX / 1000) {
4185
0
          lc->layer_target_bitrate = INT_MAX;
4186
0
        } else {
4187
0
          lc->layer_target_bitrate = 1000 * layer_target_bitrate;
4188
0
        }
4189
0
        lc->framerate_factor = AOMMAX(1, params->framerate_factor[tl]);
4190
0
        if (tl == ppi->number_temporal_layers - 1)
4191
0
          target_bandwidth += lc->layer_target_bitrate;
4192
0
      }
4193
0
    }
4194
4195
0
    if (ppi->seq_params_locked) {
4196
0
      AV1EncoderConfig *const oxcf = &cpi->oxcf;
4197
      // Keep ctx->oxcf in sync in case further codec controls are made prior
4198
      // to encoding.
4199
0
      ctx->oxcf.rc_cfg.target_bandwidth = oxcf->rc_cfg.target_bandwidth =
4200
0
          target_bandwidth;
4201
0
      set_primary_rc_buffer_sizes(oxcf, ppi);
4202
0
      ENABLE_SETJMP(cpi);
4203
0
      av1_update_layer_context_change_config(cpi, target_bandwidth);
4204
0
      DISABLE_SETJMP(cpi);
4205
0
      check_reset_rc_flag(cpi);
4206
0
    } else {
4207
      // Note av1_init_layer_context() relies on cpi->oxcf. The order of that
4208
      // call and the ones in the other half of this block (which
4209
      // update_encoder_cfg() transitively makes) is important. So we keep
4210
      // ctx->oxcf and cpi->oxcf in sync here as update_encoder_cfg() will
4211
      // overwrite cpi->oxcf with ctx->oxcf.
4212
0
      ctx->oxcf.rc_cfg.target_bandwidth = cpi->oxcf.rc_cfg.target_bandwidth =
4213
0
          target_bandwidth;
4214
0
      SequenceHeader *const seq_params = &ppi->seq_params;
4215
0
      seq_params->operating_points_cnt_minus_1 =
4216
0
          ppi->number_spatial_layers * ppi->number_temporal_layers - 1;
4217
4218
0
      ENABLE_SETJMP(cpi);
4219
0
      av1_init_layer_context(cpi);
4220
0
      DISABLE_SETJMP(cpi);
4221
      // update_encoder_cfg() is somewhat costly and this control may be called
4222
      // multiple times, so update_encoder_cfg() is only called to ensure frame
4223
      // and superblock sizes are updated before they're fixed by the first
4224
      // encode call.
4225
0
      return update_encoder_cfg(ctx);
4226
0
    }
4227
0
  } else if (!ppi->seq_params_locked) {
4228
    // Ensure frame and superblock sizes are updated.
4229
0
    return update_encoder_cfg(ctx);
4230
0
  }
4231
0
  av1_check_fpmt_config(ctx->ppi, &ctx->ppi->cpi->oxcf);
4232
0
  return AOM_CODEC_OK;
4233
0
}
4234
4235
static aom_codec_err_t ctrl_set_svc_ref_frame_config(aom_codec_alg_priv_t *ctx,
4236
0
                                                     va_list args) {
4237
0
  AV1_COMP *const cpi = ctx->ppi->cpi;
4238
0
  aom_svc_ref_frame_config_t *const data =
4239
0
      va_arg(args, aom_svc_ref_frame_config_t *);
4240
0
  cpi->ppi->rtc_ref.set_ref_frame_config = 1;
4241
0
  for (unsigned int i = 0; i < INTER_REFS_PER_FRAME; ++i) {
4242
0
    if (data->reference[i] != 0 && data->reference[i] != 1)
4243
0
      return AOM_CODEC_INVALID_PARAM;
4244
0
    if (data->ref_idx[i] > 7 || data->ref_idx[i] < 0)
4245
0
      return AOM_CODEC_INVALID_PARAM;
4246
0
    cpi->ppi->rtc_ref.reference[i] = data->reference[i];
4247
0
    cpi->ppi->rtc_ref.ref_idx[i] = data->ref_idx[i];
4248
0
  }
4249
0
  for (unsigned int i = 0; i < REF_FRAMES; ++i) {
4250
0
    if (data->refresh[i] != 0 && data->refresh[i] != 1)
4251
0
      return AOM_CODEC_INVALID_PARAM;
4252
0
    cpi->ppi->rtc_ref.refresh[i] = data->refresh[i];
4253
0
  }
4254
0
  cpi->svc.use_flexible_mode = 1;
4255
0
  cpi->svc.ksvc_fixed_mode = 0;
4256
0
  return AOM_CODEC_OK;
4257
0
}
4258
4259
static aom_codec_err_t ctrl_set_svc_ref_frame_comp_pred(
4260
0
    aom_codec_alg_priv_t *ctx, va_list args) {
4261
0
  AV1_COMP *const cpi = ctx->ppi->cpi;
4262
0
  aom_svc_ref_frame_comp_pred_t *const data =
4263
0
      va_arg(args, aom_svc_ref_frame_comp_pred_t *);
4264
0
  cpi->ppi->rtc_ref.ref_frame_comp[0] = data->use_comp_pred[0];
4265
0
  cpi->ppi->rtc_ref.ref_frame_comp[1] = data->use_comp_pred[1];
4266
0
  cpi->ppi->rtc_ref.ref_frame_comp[2] = data->use_comp_pred[2];
4267
0
  return AOM_CODEC_OK;
4268
0
}
4269
4270
static aom_codec_err_t ctrl_set_tune_content(aom_codec_alg_priv_t *ctx,
4271
0
                                             va_list args) {
4272
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
4273
0
  extra_cfg.content = CAST(AV1E_SET_TUNE_CONTENT, args);
4274
0
  return update_extra_cfg(ctx, &extra_cfg);
4275
0
}
4276
4277
static aom_codec_err_t ctrl_set_cdf_update_mode(aom_codec_alg_priv_t *ctx,
4278
0
                                                va_list args) {
4279
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
4280
0
  extra_cfg.cdf_update_mode = CAST(AV1E_SET_CDF_UPDATE_MODE, args);
4281
0
  return update_extra_cfg(ctx, &extra_cfg);
4282
0
}
4283
4284
static aom_codec_err_t ctrl_set_color_primaries(aom_codec_alg_priv_t *ctx,
4285
0
                                                va_list args) {
4286
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
4287
0
  extra_cfg.color_primaries = CAST(AV1E_SET_COLOR_PRIMARIES, args);
4288
0
  return update_extra_cfg(ctx, &extra_cfg);
4289
0
}
4290
4291
static aom_codec_err_t ctrl_set_transfer_characteristics(
4292
0
    aom_codec_alg_priv_t *ctx, va_list args) {
4293
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
4294
0
  extra_cfg.transfer_characteristics =
4295
0
      CAST(AV1E_SET_TRANSFER_CHARACTERISTICS, args);
4296
0
  return update_extra_cfg(ctx, &extra_cfg);
4297
0
}
4298
4299
static aom_codec_err_t ctrl_set_matrix_coefficients(aom_codec_alg_priv_t *ctx,
4300
0
                                                    va_list args) {
4301
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
4302
0
  extra_cfg.matrix_coefficients = CAST(AV1E_SET_MATRIX_COEFFICIENTS, args);
4303
0
  return update_extra_cfg(ctx, &extra_cfg);
4304
0
}
4305
4306
static aom_codec_err_t ctrl_set_chroma_sample_position(
4307
0
    aom_codec_alg_priv_t *ctx, va_list args) {
4308
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
4309
0
  extra_cfg.chroma_sample_position =
4310
0
      CAST(AV1E_SET_CHROMA_SAMPLE_POSITION, args);
4311
0
  return update_extra_cfg(ctx, &extra_cfg);
4312
0
}
4313
4314
static aom_codec_err_t ctrl_set_color_range(aom_codec_alg_priv_t *ctx,
4315
0
                                            va_list args) {
4316
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
4317
0
  extra_cfg.color_range = CAST(AV1E_SET_COLOR_RANGE, args);
4318
0
  return update_extra_cfg(ctx, &extra_cfg);
4319
0
}
4320
4321
static aom_codec_err_t ctrl_set_render_size(aom_codec_alg_priv_t *ctx,
4322
0
                                            va_list args) {
4323
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
4324
0
  int *const render_size = va_arg(args, int *);
4325
0
  extra_cfg.render_width = render_size[0];
4326
0
  extra_cfg.render_height = render_size[1];
4327
0
  return update_extra_cfg(ctx, &extra_cfg);
4328
0
}
4329
4330
static aom_codec_err_t ctrl_set_superblock_size(aom_codec_alg_priv_t *ctx,
4331
0
                                                va_list args) {
4332
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
4333
0
  extra_cfg.superblock_size = CAST(AV1E_SET_SUPERBLOCK_SIZE, args);
4334
0
  return update_extra_cfg(ctx, &extra_cfg);
4335
0
}
4336
4337
static aom_codec_err_t ctrl_set_chroma_subsampling_x(aom_codec_alg_priv_t *ctx,
4338
0
                                                     va_list args) {
4339
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
4340
0
  extra_cfg.chroma_subsampling_x = CAST(AV1E_SET_CHROMA_SUBSAMPLING_X, args);
4341
0
  return update_extra_cfg(ctx, &extra_cfg);
4342
0
}
4343
4344
static aom_codec_err_t ctrl_set_chroma_subsampling_y(aom_codec_alg_priv_t *ctx,
4345
0
                                                     va_list args) {
4346
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
4347
0
  extra_cfg.chroma_subsampling_y = CAST(AV1E_SET_CHROMA_SUBSAMPLING_Y, args);
4348
0
  return update_extra_cfg(ctx, &extra_cfg);
4349
0
}
4350
4351
static aom_codec_err_t ctrl_set_external_rate_control(aom_codec_alg_priv_t *ctx,
4352
0
                                                      va_list args) {
4353
0
  aom_rc_funcs_t funcs = *CAST(AV1E_SET_EXTERNAL_RATE_CONTROL, args);
4354
0
  AV1_COMP *cpi = ctx->ppi->cpi;
4355
0
  AOM_EXT_RATECTRL *ext_ratectrl = &cpi->ext_ratectrl;
4356
0
  const AV1EncoderConfig *oxcf = &cpi->oxcf;
4357
0
  if (oxcf->pass == AOM_RC_SECOND_PASS) {
4358
0
    const FRAME_INFO *frame_info = &cpi->frame_info;
4359
0
    aom_rc_config_t ratectrl_config;
4360
0
    aom_codec_err_t codec_status;
4361
0
    memset(&ratectrl_config, 0, sizeof(ratectrl_config));
4362
4363
0
    ratectrl_config.frame_width = frame_info->frame_width;
4364
0
    ratectrl_config.frame_height = frame_info->frame_height;
4365
0
    ratectrl_config.show_frame_count =
4366
0
        cpi->ppi->twopass.firstpass_info.stats_count;
4367
0
    ratectrl_config.max_gf_interval = ctx->extra_cfg.max_gf_interval;
4368
0
    ratectrl_config.min_gf_interval = ctx->extra_cfg.min_gf_interval;
4369
0
    ratectrl_config.target_bitrate_kbps =
4370
0
        (int)(oxcf->rc_cfg.target_bandwidth / 1000);
4371
0
    ratectrl_config.frame_rate_num = ctx->cfg.g_timebase.den;
4372
0
    ratectrl_config.frame_rate_den = ctx->cfg.g_timebase.num;
4373
0
    ratectrl_config.overshoot_percent = oxcf->rc_cfg.over_shoot_pct;
4374
0
    ratectrl_config.undershoot_percent = oxcf->rc_cfg.under_shoot_pct;
4375
0
    ratectrl_config.min_base_q_index = oxcf->rc_cfg.best_allowed_q;
4376
0
    ratectrl_config.max_base_q_index = oxcf->rc_cfg.worst_allowed_q;
4377
0
    ratectrl_config.base_qp = ctx->extra_cfg.cq_level;
4378
4379
0
    const BLOCK_SIZE sb_size = av1_select_sb_size(
4380
0
        oxcf, frame_info->frame_width, frame_info->frame_height,
4381
0
        cpi->ppi->number_spatial_layers);
4382
0
    ratectrl_config.superblock_size = (sb_size == BLOCK_128X128) ? 128 : 64;
4383
4384
0
    if (ctx->cfg.rc_end_usage == AOM_VBR) {
4385
0
      ratectrl_config.rc_mode = AOM_RC_VBR;
4386
0
    } else if (ctx->cfg.rc_end_usage == AOM_Q) {
4387
0
      ratectrl_config.rc_mode = AOM_RC_QMODE;
4388
0
    } else if (ctx->cfg.rc_end_usage == AOM_CQ) {
4389
0
      ratectrl_config.rc_mode = AOM_RC_CQ;
4390
0
    }
4391
4392
0
    codec_status = av1_extrc_create(funcs, ratectrl_config, ext_ratectrl);
4393
0
    if (codec_status != AOM_CODEC_OK) {
4394
0
      return codec_status;
4395
0
    }
4396
0
  }
4397
0
  return AOM_CODEC_OK;
4398
0
}
4399
4400
static aom_codec_err_t encoder_set_option(aom_codec_alg_priv_t *ctx,
4401
0
                                          const char *name, const char *value) {
4402
0
  if (ctx == NULL || name == NULL || value == NULL)
4403
0
    return AOM_CODEC_INVALID_PARAM;
4404
0
  struct av1_extracfg extra_cfg = ctx->extra_cfg;
4405
  // Used to mock the argv with just one string "--{name}={value}"
4406
0
  char *argv[2] = { NULL, "" };
4407
0
  size_t len = strlen(name) + strlen(value) + 4;
4408
0
  char *const err_string = ctx->ppi->error.detail;
4409
4410
0
  static_assert(sizeof(ctx->ppi->error.detail) >= ARG_ERR_MSG_MAX_LEN,
4411
0
                "The size of the err_msg buffer for arg_match_helper must be "
4412
0
                "at least ARG_ERR_MSG_MAX_LEN");
4413
4414
0
  argv[0] = aom_malloc(len * sizeof(argv[1][0]));
4415
0
  if (!argv[0]) return AOM_CODEC_MEM_ERROR;
4416
0
  snprintf(argv[0], len, "--%s=%s", name, value);
4417
0
  struct arg arg;
4418
0
  aom_codec_err_t err = AOM_CODEC_OK;
4419
4420
0
  int match = 1;
4421
0
  if (arg_match_helper(&arg, &g_av1_codec_arg_defs.enable_keyframe_filtering,
4422
0
                       argv, err_string)) {
4423
0
    extra_cfg.enable_keyframe_filtering =
4424
0
        arg_parse_uint_helper(&arg, err_string);
4425
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.min_gf_interval, argv,
4426
0
                              err_string)) {
4427
0
    extra_cfg.min_gf_interval = arg_parse_uint_helper(&arg, err_string);
4428
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.max_gf_interval, argv,
4429
0
                              err_string)) {
4430
0
    extra_cfg.max_gf_interval = arg_parse_uint_helper(&arg, err_string);
4431
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.gf_min_pyr_height,
4432
0
                              argv, err_string)) {
4433
0
    extra_cfg.gf_min_pyr_height = arg_parse_uint_helper(&arg, err_string);
4434
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.gf_max_pyr_height,
4435
0
                              argv, err_string)) {
4436
0
    extra_cfg.gf_max_pyr_height = arg_parse_uint_helper(&arg, err_string);
4437
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.cpu_used_av1, argv,
4438
0
                              err_string)) {
4439
0
    extra_cfg.cpu_used = arg_parse_uint_helper(&arg, err_string);
4440
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.auto_altref, argv,
4441
0
                              err_string)) {
4442
0
    extra_cfg.enable_auto_alt_ref = arg_parse_uint_helper(&arg, err_string);
4443
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.noise_sens, argv,
4444
0
                              err_string)) {
4445
0
    extra_cfg.noise_sensitivity = arg_parse_uint_helper(&arg, err_string);
4446
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.sharpness, argv,
4447
0
                              err_string)) {
4448
0
    extra_cfg.sharpness = arg_parse_uint_helper(&arg, err_string);
4449
0
  } else if (arg_match_helper(&arg,
4450
0
                              &g_av1_codec_arg_defs.enable_adaptive_sharpness,
4451
0
                              argv, err_string)) {
4452
0
    extra_cfg.enable_adaptive_sharpness =
4453
0
        arg_parse_int_helper(&arg, err_string);
4454
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.static_thresh, argv,
4455
0
                              err_string)) {
4456
0
    extra_cfg.static_thresh = arg_parse_uint_helper(&arg, err_string);
4457
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.rowmtarg, argv,
4458
0
                              err_string)) {
4459
0
    extra_cfg.row_mt = arg_parse_uint_helper(&arg, err_string);
4460
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.fpmtarg, argv,
4461
0
                              err_string)) {
4462
0
    extra_cfg.fp_mt = arg_parse_uint_helper(&arg, err_string);
4463
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.tile_cols, argv,
4464
0
                              err_string)) {
4465
0
    extra_cfg.tile_columns = arg_parse_uint_helper(&arg, err_string);
4466
0
    if (extra_cfg.auto_tiles) {
4467
0
      snprintf(err_string, ARG_ERR_MSG_MAX_LEN,
4468
0
               "Cannot set tile-cols because auto-tiles is already set.");
4469
0
      err = AOM_CODEC_INVALID_PARAM;
4470
0
    }
4471
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.tile_rows, argv,
4472
0
                              err_string)) {
4473
0
    extra_cfg.tile_rows = arg_parse_uint_helper(&arg, err_string);
4474
0
    if (extra_cfg.auto_tiles) {
4475
0
      snprintf(err_string, ARG_ERR_MSG_MAX_LEN,
4476
0
               "Cannot set tile-rows because auto-tiles is already set.");
4477
0
      err = AOM_CODEC_INVALID_PARAM;
4478
0
    }
4479
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.auto_tiles, argv,
4480
0
                              err_string)) {
4481
0
    extra_cfg.auto_tiles = arg_parse_uint_helper(&arg, err_string);
4482
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.enable_tpl_model,
4483
0
                              argv, err_string)) {
4484
0
    extra_cfg.enable_tpl_model = arg_parse_uint_helper(&arg, err_string);
4485
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.arnr_maxframes, argv,
4486
0
                              err_string)) {
4487
0
    extra_cfg.arnr_max_frames = arg_parse_uint_helper(&arg, err_string);
4488
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.arnr_strength, argv,
4489
0
                              err_string)) {
4490
0
    extra_cfg.arnr_strength = arg_parse_uint_helper(&arg, err_string);
4491
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.tune_metric, argv,
4492
0
                              err_string)) {
4493
0
    extra_cfg.tuning = arg_parse_enum_helper(&arg, err_string);
4494
0
    err = handle_tuning(&extra_cfg);
4495
0
  }
4496
#if CONFIG_TUNE_VMAF
4497
  else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.vmaf_model_path, argv,
4498
                            err_string)) {
4499
    err = allocate_and_set_string(value, default_extra_cfg.vmaf_model_path,
4500
                                  &extra_cfg.vmaf_model_path, err_string);
4501
  }
4502
#endif
4503
0
  else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.partition_info_path,
4504
0
                            argv, err_string)) {
4505
0
    err = allocate_and_set_string(value, default_extra_cfg.partition_info_path,
4506
0
                                  &extra_cfg.partition_info_path, err_string);
4507
0
  } else if (arg_match_helper(&arg,
4508
0
                              &g_av1_codec_arg_defs.enable_rate_guide_deltaq,
4509
0
                              argv, err_string)) {
4510
0
    extra_cfg.enable_rate_guide_deltaq =
4511
0
        arg_parse_uint_helper(&arg, err_string);
4512
0
  } else if (arg_match_helper(&arg,
4513
0
                              &g_av1_codec_arg_defs.rate_distribution_info,
4514
0
                              argv, err_string)) {
4515
0
    err =
4516
0
        allocate_and_set_string(value, default_extra_cfg.rate_distribution_info,
4517
0
                                &extra_cfg.rate_distribution_info, err_string);
4518
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.dist_metric, argv,
4519
0
                              err_string)) {
4520
0
    extra_cfg.dist_metric = arg_parse_enum_helper(&arg, err_string);
4521
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.cq_level, argv,
4522
0
                              err_string)) {
4523
0
    extra_cfg.cq_level = arg_parse_uint_helper(&arg, err_string);
4524
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.max_intra_rate_pct,
4525
0
                              argv, err_string)) {
4526
0
    extra_cfg.rc_max_intra_bitrate_pct =
4527
0
        arg_parse_uint_helper(&arg, err_string);
4528
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.max_inter_rate_pct,
4529
0
                              argv, err_string)) {
4530
0
    extra_cfg.rc_max_inter_bitrate_pct =
4531
0
        arg_parse_uint_helper(&arg, err_string);
4532
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.gf_cbr_boost_pct,
4533
0
                              argv, err_string)) {
4534
0
    extra_cfg.gf_cbr_boost_pct = arg_parse_uint_helper(&arg, err_string);
4535
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.lossless, argv,
4536
0
                              err_string)) {
4537
0
    extra_cfg.lossless = arg_parse_uint_helper(&arg, err_string);
4538
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.enable_cdef, argv,
4539
0
                              err_string)) {
4540
0
    extra_cfg.enable_cdef = arg_parse_uint_helper(&arg, err_string);
4541
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.enable_restoration,
4542
0
                              argv, err_string)) {
4543
0
    extra_cfg.enable_restoration = arg_parse_uint_helper(&arg, err_string);
4544
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.force_video_mode,
4545
0
                              argv, err_string)) {
4546
0
    extra_cfg.force_video_mode = arg_parse_uint_helper(&arg, err_string);
4547
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.enable_obmc, argv,
4548
0
                              err_string)) {
4549
0
    extra_cfg.enable_obmc = arg_parse_uint_helper(&arg, err_string);
4550
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.disable_trellis_quant,
4551
0
                              argv, err_string)) {
4552
0
    extra_cfg.disable_trellis_quant = arg_parse_uint_helper(&arg, err_string);
4553
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.enable_qm, argv,
4554
0
                              err_string)) {
4555
0
    extra_cfg.enable_qm = arg_parse_uint_helper(&arg, err_string);
4556
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.qm_max, argv,
4557
0
                              err_string)) {
4558
0
    extra_cfg.qm_max = arg_parse_uint_helper(&arg, err_string);
4559
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.qm_min, argv,
4560
0
                              err_string)) {
4561
0
    extra_cfg.qm_min = arg_parse_uint_helper(&arg, err_string);
4562
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.num_tg, argv,
4563
0
                              err_string)) {
4564
0
    extra_cfg.num_tg = arg_parse_uint_helper(&arg, err_string);
4565
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.mtu_size, argv,
4566
0
                              err_string)) {
4567
0
    extra_cfg.mtu_size = arg_parse_uint_helper(&arg, err_string);
4568
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.timing_info, argv,
4569
0
                              err_string)) {
4570
0
    extra_cfg.timing_info_type = arg_parse_enum_helper(&arg, err_string);
4571
0
  } else if (arg_match_helper(&arg,
4572
0
                              &g_av1_codec_arg_defs.frame_parallel_decoding,
4573
0
                              argv, err_string)) {
4574
0
    extra_cfg.frame_parallel_decoding_mode =
4575
0
        arg_parse_uint_helper(&arg, err_string);
4576
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.enable_dual_filter,
4577
0
                              argv, err_string)) {
4578
0
    extra_cfg.enable_dual_filter = arg_parse_uint_helper(&arg, err_string);
4579
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.enable_chroma_deltaq,
4580
0
                              argv, err_string)) {
4581
0
    extra_cfg.enable_chroma_deltaq = arg_parse_uint_helper(&arg, err_string);
4582
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.aq_mode, argv,
4583
0
                              err_string)) {
4584
0
    extra_cfg.aq_mode = arg_parse_uint_helper(&arg, err_string);
4585
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.deltaq_mode, argv,
4586
0
                              err_string)) {
4587
0
    extra_cfg.deltaq_mode = arg_parse_uint_helper(&arg, err_string);
4588
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.deltaq_strength, argv,
4589
0
                              err_string)) {
4590
0
    extra_cfg.deltaq_strength = arg_parse_uint_helper(&arg, err_string);
4591
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.deltalf_mode, argv,
4592
0
                              err_string)) {
4593
0
    extra_cfg.deltalf_mode = arg_parse_uint_helper(&arg, err_string);
4594
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.frame_periodic_boost,
4595
0
                              argv, err_string)) {
4596
0
    extra_cfg.frame_periodic_boost = arg_parse_uint_helper(&arg, err_string);
4597
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.tune_content, argv,
4598
0
                              err_string)) {
4599
0
    extra_cfg.content = arg_parse_enum_helper(&arg, err_string);
4600
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.input_color_primaries,
4601
0
                              argv, err_string)) {
4602
0
    extra_cfg.color_primaries = arg_parse_enum_helper(&arg, err_string);
4603
0
  } else if (arg_match_helper(
4604
0
                 &arg, &g_av1_codec_arg_defs.input_transfer_characteristics,
4605
0
                 argv, err_string)) {
4606
0
    extra_cfg.transfer_characteristics =
4607
0
        arg_parse_enum_helper(&arg, err_string);
4608
0
  } else if (arg_match_helper(&arg,
4609
0
                              &g_av1_codec_arg_defs.input_matrix_coefficients,
4610
0
                              argv, err_string)) {
4611
0
    extra_cfg.matrix_coefficients = arg_parse_enum_helper(&arg, err_string);
4612
0
  } else if (arg_match_helper(
4613
0
                 &arg, &g_av1_codec_arg_defs.input_chroma_sample_position, argv,
4614
0
                 err_string)) {
4615
0
    extra_cfg.chroma_sample_position = arg_parse_enum_helper(&arg, err_string);
4616
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.superblock_size, argv,
4617
0
                              err_string)) {
4618
0
    extra_cfg.superblock_size = arg_parse_enum_helper(&arg, err_string);
4619
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.error_resilient_mode,
4620
0
                              argv, err_string)) {
4621
0
    extra_cfg.error_resilient_mode = arg_parse_int_helper(&arg, err_string);
4622
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.sframe_mode, argv,
4623
0
                              err_string)) {
4624
0
    extra_cfg.s_frame_mode = arg_parse_int_helper(&arg, err_string);
4625
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.film_grain_test, argv,
4626
0
                              err_string)) {
4627
0
    extra_cfg.film_grain_test_vector = arg_parse_int_helper(&arg, err_string);
4628
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.film_grain_table,
4629
0
                              argv, err_string)) {
4630
0
    if (value == NULL) {
4631
      // this parameter allows NULL as its value
4632
0
      extra_cfg.film_grain_table_filename = value;
4633
0
    } else {
4634
0
      err = allocate_and_set_string(
4635
0
          value, default_extra_cfg.film_grain_table_filename,
4636
0
          &extra_cfg.film_grain_table_filename, err_string);
4637
0
    }
4638
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.cdf_update_mode, argv,
4639
0
                              err_string)) {
4640
0
    extra_cfg.cdf_update_mode = arg_parse_int_helper(&arg, err_string);
4641
0
  } else if (arg_match_helper(&arg,
4642
0
                              &g_av1_codec_arg_defs.enable_rect_partitions,
4643
0
                              argv, err_string)) {
4644
0
    extra_cfg.enable_rect_partitions = arg_parse_int_helper(&arg, err_string);
4645
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.enable_ab_partitions,
4646
0
                              argv, err_string)) {
4647
0
    extra_cfg.enable_ab_partitions = arg_parse_int_helper(&arg, err_string);
4648
0
  } else if (arg_match_helper(&arg,
4649
0
                              &g_av1_codec_arg_defs.enable_1to4_partitions,
4650
0
                              argv, err_string)) {
4651
0
    extra_cfg.enable_1to4_partitions = arg_parse_int_helper(&arg, err_string);
4652
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.min_partition_size,
4653
0
                              argv, err_string)) {
4654
0
    extra_cfg.min_partition_size = arg_parse_int_helper(&arg, err_string);
4655
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.max_partition_size,
4656
0
                              argv, err_string)) {
4657
0
    extra_cfg.max_partition_size = arg_parse_int_helper(&arg, err_string);
4658
0
  } else if (arg_match_helper(&arg,
4659
0
                              &g_av1_codec_arg_defs.enable_intra_edge_filter,
4660
0
                              argv, err_string)) {
4661
0
    extra_cfg.enable_intra_edge_filter =
4662
0
        arg_parse_uint_helper(&arg, err_string);
4663
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.enable_order_hint,
4664
0
                              argv, err_string)) {
4665
0
    extra_cfg.enable_order_hint = arg_parse_int_helper(&arg, err_string);
4666
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.enable_tx64, argv,
4667
0
                              err_string)) {
4668
0
    extra_cfg.enable_tx64 = arg_parse_int_helper(&arg, err_string);
4669
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.enable_flip_idtx,
4670
0
                              argv, err_string)) {
4671
0
    extra_cfg.enable_flip_idtx = arg_parse_int_helper(&arg, err_string);
4672
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.enable_rect_tx, argv,
4673
0
                              err_string)) {
4674
0
    extra_cfg.enable_rect_tx = arg_parse_int_helper(&arg, err_string);
4675
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.enable_dist_wtd_comp,
4676
0
                              argv, err_string)) {
4677
0
    extra_cfg.enable_dist_wtd_comp = arg_parse_int_helper(&arg, err_string);
4678
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.max_reference_frames,
4679
0
                              argv, err_string)) {
4680
0
    extra_cfg.max_reference_frames = arg_parse_int_helper(&arg, err_string);
4681
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.reduced_reference_set,
4682
0
                              argv, err_string)) {
4683
0
    extra_cfg.enable_reduced_reference_set =
4684
0
        arg_parse_int_helper(&arg, err_string);
4685
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.enable_ref_frame_mvs,
4686
0
                              argv, err_string)) {
4687
0
    extra_cfg.enable_ref_frame_mvs = arg_parse_int_helper(&arg, err_string);
4688
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.enable_masked_comp,
4689
0
                              argv, err_string)) {
4690
0
    extra_cfg.enable_masked_comp = arg_parse_int_helper(&arg, err_string);
4691
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.enable_onesided_comp,
4692
0
                              argv, err_string)) {
4693
0
    extra_cfg.enable_onesided_comp = arg_parse_int_helper(&arg, err_string);
4694
0
  } else if (arg_match_helper(&arg,
4695
0
                              &g_av1_codec_arg_defs.enable_interintra_comp,
4696
0
                              argv, err_string)) {
4697
0
    extra_cfg.enable_interintra_comp = arg_parse_int_helper(&arg, err_string);
4698
0
  } else if (arg_match_helper(&arg,
4699
0
                              &g_av1_codec_arg_defs.enable_smooth_interintra,
4700
0
                              argv, err_string)) {
4701
0
    extra_cfg.enable_smooth_interintra = arg_parse_int_helper(&arg, err_string);
4702
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.enable_diff_wtd_comp,
4703
0
                              argv, err_string)) {
4704
0
    extra_cfg.enable_diff_wtd_comp = arg_parse_int_helper(&arg, err_string);
4705
0
  } else if (arg_match_helper(&arg,
4706
0
                              &g_av1_codec_arg_defs.enable_interinter_wedge,
4707
0
                              argv, err_string)) {
4708
0
    extra_cfg.enable_interinter_wedge = arg_parse_int_helper(&arg, err_string);
4709
0
  } else if (arg_match_helper(&arg,
4710
0
                              &g_av1_codec_arg_defs.enable_interintra_wedge,
4711
0
                              argv, err_string)) {
4712
0
    extra_cfg.enable_interintra_wedge = arg_parse_int_helper(&arg, err_string);
4713
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.enable_global_motion,
4714
0
                              argv, err_string)) {
4715
0
    extra_cfg.enable_global_motion = arg_parse_int_helper(&arg, err_string);
4716
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.enable_warped_motion,
4717
0
                              argv, err_string)) {
4718
0
    extra_cfg.enable_warped_motion = arg_parse_int_helper(&arg, err_string);
4719
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.enable_filter_intra,
4720
0
                              argv, err_string)) {
4721
0
    extra_cfg.enable_filter_intra = arg_parse_int_helper(&arg, err_string);
4722
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.enable_smooth_intra,
4723
0
                              argv, err_string)) {
4724
0
    extra_cfg.enable_smooth_intra = arg_parse_int_helper(&arg, err_string);
4725
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.enable_paeth_intra,
4726
0
                              argv, err_string)) {
4727
0
    extra_cfg.enable_paeth_intra = arg_parse_int_helper(&arg, err_string);
4728
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.enable_cfl_intra,
4729
0
                              argv, err_string)) {
4730
0
    extra_cfg.enable_cfl_intra = arg_parse_int_helper(&arg, err_string);
4731
0
  } else if (arg_match_helper(&arg,
4732
0
                              &g_av1_codec_arg_defs.enable_directional_intra,
4733
0
                              argv, err_string)) {
4734
0
    extra_cfg.enable_directional_intra = arg_parse_int_helper(&arg, err_string);
4735
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.enable_diagonal_intra,
4736
0
                              argv, err_string)) {
4737
0
    extra_cfg.enable_diagonal_intra = arg_parse_int_helper(&arg, err_string);
4738
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.enable_overlay, argv,
4739
0
                              err_string)) {
4740
0
    extra_cfg.enable_overlay = arg_parse_int_helper(&arg, err_string);
4741
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.enable_palette, argv,
4742
0
                              err_string)) {
4743
0
    extra_cfg.enable_palette = arg_parse_int_helper(&arg, err_string);
4744
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.enable_intrabc, argv,
4745
0
                              err_string)) {
4746
0
    extra_cfg.enable_intrabc = arg_parse_int_helper(&arg, err_string);
4747
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.enable_angle_delta,
4748
0
                              argv, err_string)) {
4749
0
    extra_cfg.enable_angle_delta = arg_parse_int_helper(&arg, err_string);
4750
0
  } else if (arg_match_helper(
4751
0
                 &arg, &g_av1_codec_arg_defs.enable_low_complexity_decode, argv,
4752
0
                 err_string)) {
4753
0
    extra_cfg.enable_low_complexity_decode =
4754
0
        arg_parse_int_helper(&arg, err_string);
4755
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.reduced_tx_type_set,
4756
0
                              argv, err_string)) {
4757
0
    extra_cfg.reduced_tx_type_set = arg_parse_int_helper(&arg, err_string);
4758
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.use_intra_dct_only,
4759
0
                              argv, err_string)) {
4760
0
    extra_cfg.use_intra_dct_only = arg_parse_int_helper(&arg, err_string);
4761
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.use_inter_dct_only,
4762
0
                              argv, err_string)) {
4763
0
    extra_cfg.use_inter_dct_only = arg_parse_int_helper(&arg, err_string);
4764
0
  } else if (arg_match_helper(&arg,
4765
0
                              &g_av1_codec_arg_defs.use_intra_default_tx_only,
4766
0
                              argv, err_string)) {
4767
0
    extra_cfg.use_intra_default_tx_only =
4768
0
        arg_parse_int_helper(&arg, err_string);
4769
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.quant_b_adapt, argv,
4770
0
                              err_string)) {
4771
0
    extra_cfg.quant_b_adapt = arg_parse_int_helper(&arg, err_string);
4772
0
  } else if (arg_match_helper(&arg,
4773
0
                              &g_av1_codec_arg_defs.vbr_corpus_complexity_lap,
4774
0
                              argv, err_string)) {
4775
0
    extra_cfg.vbr_corpus_complexity_lap =
4776
0
        arg_parse_uint_helper(&arg, err_string);
4777
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.set_tier_mask, argv,
4778
0
                              err_string)) {
4779
0
    extra_cfg.tier_mask = arg_parse_uint_helper(&arg, err_string);
4780
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.set_min_cr, argv,
4781
0
                              err_string)) {
4782
0
    extra_cfg.min_cr = arg_parse_uint_helper(&arg, err_string);
4783
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.coeff_cost_upd_freq,
4784
0
                              argv, err_string)) {
4785
0
    extra_cfg.coeff_cost_upd_freq = arg_parse_uint_helper(&arg, err_string);
4786
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.mode_cost_upd_freq,
4787
0
                              argv, err_string)) {
4788
0
    extra_cfg.mode_cost_upd_freq = arg_parse_uint_helper(&arg, err_string);
4789
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.mv_cost_upd_freq,
4790
0
                              argv, err_string)) {
4791
0
    extra_cfg.mv_cost_upd_freq = arg_parse_uint_helper(&arg, err_string);
4792
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.dv_cost_upd_freq,
4793
0
                              argv, err_string)) {
4794
0
    extra_cfg.dv_cost_upd_freq = arg_parse_uint_helper(&arg, err_string);
4795
0
  }
4796
0
#if CONFIG_DENOISE
4797
0
  else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.denoise_noise_level,
4798
0
                            argv, err_string)) {
4799
0
    extra_cfg.noise_level =
4800
0
        (float)arg_parse_int_helper(&arg, err_string) / 10.0f;
4801
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.denoise_block_size,
4802
0
                              argv, err_string)) {
4803
0
    extra_cfg.noise_block_size = arg_parse_uint_helper(&arg, err_string);
4804
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.enable_dnl_denoising,
4805
0
                              argv, err_string)) {
4806
0
    extra_cfg.enable_dnl_denoising = arg_parse_uint_helper(&arg, err_string);
4807
0
  }
4808
0
#endif
4809
0
  else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.target_seq_level_idx,
4810
0
                            argv, err_string)) {
4811
0
    const int val = arg_parse_int_helper(&arg, err_string);
4812
0
    const int level = val % 100;
4813
0
    const int operating_point_idx = val / 100;
4814
0
    if (operating_point_idx < 0 ||
4815
0
        operating_point_idx >= MAX_NUM_OPERATING_POINTS) {
4816
0
      snprintf(err_string, ARG_ERR_MSG_MAX_LEN,
4817
0
               "Invalid operating point index: %d", operating_point_idx);
4818
0
      err = AOM_CODEC_INVALID_PARAM;
4819
0
    } else {
4820
0
      extra_cfg.target_seq_level_idx[operating_point_idx] = (AV1_LEVEL)level;
4821
0
    }
4822
0
  } else if (arg_match_helper(&arg,
4823
0
                              &g_av1_codec_arg_defs.input_chroma_subsampling_x,
4824
0
                              argv, err_string)) {
4825
0
    extra_cfg.chroma_subsampling_x = arg_parse_uint_helper(&arg, err_string);
4826
0
  } else if (arg_match_helper(&arg,
4827
0
                              &g_av1_codec_arg_defs.input_chroma_subsampling_y,
4828
0
                              argv, err_string)) {
4829
0
    extra_cfg.chroma_subsampling_y = arg_parse_uint_helper(&arg, err_string);
4830
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.passes, argv,
4831
0
                              err_string)) {
4832
0
    extra_cfg.passes = arg_parse_int_helper(&arg, err_string);
4833
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.fwd_kf_dist, argv,
4834
0
                              err_string)) {
4835
0
    extra_cfg.fwd_kf_dist = arg_parse_int_helper(&arg, err_string);
4836
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.two_pass_output, argv,
4837
0
                              err_string)) {
4838
0
    err = allocate_and_set_string(value, default_extra_cfg.two_pass_output,
4839
0
                                  &extra_cfg.two_pass_output, err_string);
4840
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.second_pass_log, argv,
4841
0
                              err_string)) {
4842
0
    err = allocate_and_set_string(value, default_extra_cfg.second_pass_log,
4843
0
                                  &extra_cfg.second_pass_log, err_string);
4844
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.loopfilter_control,
4845
0
                              argv, err_string)) {
4846
0
    extra_cfg.loopfilter_control = arg_parse_int_helper(&arg, err_string);
4847
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.auto_intra_tools_off,
4848
0
                              argv, err_string)) {
4849
0
    extra_cfg.auto_intra_tools_off = arg_parse_uint_helper(&arg, err_string);
4850
0
  } else if (arg_match_helper(&arg,
4851
0
                              &g_av1_codec_arg_defs.strict_level_conformance,
4852
0
                              argv, err_string)) {
4853
0
    extra_cfg.strict_level_conformance = arg_parse_int_helper(&arg, err_string);
4854
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.sb_qp_sweep, argv,
4855
0
                              err_string)) {
4856
0
    extra_cfg.sb_qp_sweep = arg_parse_int_helper(&arg, err_string);
4857
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.kf_max_pyr_height,
4858
0
                              argv, err_string)) {
4859
0
    extra_cfg.kf_max_pyr_height = arg_parse_int_helper(&arg, err_string);
4860
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.tile_width, argv,
4861
0
                              err_string)) {
4862
0
    ctx->cfg.tile_width_count = arg_parse_list_helper(
4863
0
        &arg, ctx->cfg.tile_widths, MAX_TILE_WIDTHS, err_string);
4864
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.tile_height, argv,
4865
0
                              err_string)) {
4866
0
    ctx->cfg.tile_height_count = arg_parse_list_helper(
4867
0
        &arg, ctx->cfg.tile_heights, MAX_TILE_HEIGHTS, err_string);
4868
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.screen_detection_mode,
4869
0
                              argv, err_string)) {
4870
0
    extra_cfg.screen_detection_mode = arg_parse_int_helper(&arg, err_string);
4871
0
  } else if (arg_match_helper(&arg, &g_av1_codec_arg_defs.validate_hbd_input,
4872
0
                              argv, err_string)) {
4873
0
    extra_cfg.validate_hbd_input = arg_parse_int_helper(&arg, err_string);
4874
0
  } else {
4875
0
    match = 0;
4876
0
    snprintf(err_string, ARG_ERR_MSG_MAX_LEN, "Cannot find aom option %s",
4877
0
             name);
4878
0
  }
4879
0
  aom_free(argv[0]);
4880
4881
0
  if (err != AOM_CODEC_OK) {
4882
0
    ctx->base.err_detail = err_string;
4883
0
    return err;
4884
0
  }
4885
4886
0
  if (strlen(err_string) != 0) {
4887
0
    ctx->base.err_detail = err_string;
4888
0
    return AOM_CODEC_INVALID_PARAM;
4889
0
  }
4890
4891
0
  ctx->base.err_detail = NULL;
4892
4893
0
  if (!match) {
4894
0
    return AOM_CODEC_INVALID_PARAM;
4895
0
  }
4896
0
  return update_extra_cfg(ctx, &extra_cfg);
4897
0
}
4898
4899
static aom_codec_err_t ctrl_get_seq_level_idx(aom_codec_alg_priv_t *ctx,
4900
0
                                              va_list args) {
4901
0
  int *const arg = va_arg(args, int *);
4902
0
  if (arg == NULL) return AOM_CODEC_INVALID_PARAM;
4903
0
  return av1_get_seq_level_idx(&ctx->ppi->seq_params, &ctx->ppi->level_params,
4904
0
                               arg);
4905
0
}
4906
4907
static aom_codec_err_t ctrl_get_target_seq_level_idx(aom_codec_alg_priv_t *ctx,
4908
0
                                                     va_list args) {
4909
0
  int *const arg = va_arg(args, int *);
4910
0
  if (arg == NULL) return AOM_CODEC_INVALID_PARAM;
4911
0
  return av1_get_target_seq_level_idx(&ctx->ppi->seq_params,
4912
0
                                      &ctx->ppi->level_params, arg);
4913
0
}
4914
4915
static aom_codec_err_t ctrl_get_num_operating_points(aom_codec_alg_priv_t *ctx,
4916
0
                                                     va_list args) {
4917
0
  int *const arg = va_arg(args, int *);
4918
0
  if (arg == NULL) return AOM_CODEC_INVALID_PARAM;
4919
0
  *arg = ctx->ppi->seq_params.operating_points_cnt_minus_1 + 1;
4920
0
  return AOM_CODEC_OK;
4921
0
}
4922
4923
static aom_codec_err_t ctrl_get_luma_cdef_strength(aom_codec_alg_priv_t *ctx,
4924
0
                                                   va_list args) {
4925
0
  int *arg = va_arg(args, int *);
4926
0
  AV1_COMMON const *cm = &ctx->ppi->cpi->common;
4927
0
  if (arg == NULL) return AOM_CODEC_INVALID_PARAM;
4928
0
  memcpy(arg, cm->cdef_info.cdef_strengths, CDEF_MAX_STRENGTHS * sizeof(*arg));
4929
4930
0
  return AOM_CODEC_OK;
4931
0
}
4932
4933
static aom_codec_err_t ctrl_get_high_motion_content_screen_rtc(
4934
0
    aom_codec_alg_priv_t *ctx, va_list args) {
4935
0
  int *arg = va_arg(args, int *);
4936
0
  AV1_COMP *const cpi = ctx->ppi->cpi;
4937
0
  if (arg == NULL) return AOM_CODEC_INVALID_PARAM;
4938
0
  *arg = cpi->rc.high_motion_content_screen_rtc;
4939
0
  return AOM_CODEC_OK;
4940
0
}
4941
4942
static aom_codec_ctrl_fn_map_t encoder_ctrl_maps[] = {
4943
  { AV1_COPY_REFERENCE, ctrl_copy_reference },
4944
  { AOME_USE_REFERENCE, ctrl_use_reference },
4945
4946
  // Setters
4947
  { AV1_SET_REFERENCE, ctrl_set_reference },
4948
  { AOME_SET_ROI_MAP, ctrl_set_roi_map },
4949
  { AOME_SET_ACTIVEMAP, ctrl_set_active_map },
4950
  { AOME_SET_SCALEMODE, ctrl_set_scale_mode },
4951
  { AOME_SET_SPATIAL_LAYER_ID, ctrl_set_spatial_layer_id },
4952
  { AOME_SET_CPUUSED, ctrl_set_cpuused },
4953
  { AOME_SET_ENABLEAUTOALTREF, ctrl_set_enable_auto_alt_ref },
4954
  { AOME_SET_ENABLEAUTOBWDREF, ctrl_set_enable_auto_bwd_ref },
4955
  { AOME_SET_SHARPNESS, ctrl_set_sharpness },
4956
  { AOME_SET_STATIC_THRESHOLD, ctrl_set_static_thresh },
4957
  { AV1E_SET_ROW_MT, ctrl_set_row_mt },
4958
  { AV1E_SET_FP_MT, ctrl_set_fp_mt },
4959
  { AV1E_SET_TILE_COLUMNS, ctrl_set_tile_columns },
4960
  { AV1E_SET_TILE_ROWS, ctrl_set_tile_rows },
4961
  { AV1E_SET_ENABLE_TPL_MODEL, ctrl_set_enable_tpl_model },
4962
  { AV1E_SET_ENABLE_KEYFRAME_FILTERING, ctrl_set_enable_keyframe_filtering },
4963
  { AOME_SET_ARNR_MAXFRAMES, ctrl_set_arnr_max_frames },
4964
  { AOME_SET_ARNR_STRENGTH, ctrl_set_arnr_strength },
4965
  { AOME_SET_TUNING, ctrl_set_tuning },
4966
  { AOME_SET_CQ_LEVEL, ctrl_set_cq_level },
4967
  { AOME_SET_MAX_INTRA_BITRATE_PCT, ctrl_set_rc_max_intra_bitrate_pct },
4968
  { AOME_SET_NUMBER_SPATIAL_LAYERS, ctrl_set_number_spatial_layers },
4969
  { AV1E_SET_MAX_INTER_BITRATE_PCT, ctrl_set_rc_max_inter_bitrate_pct },
4970
  { AV1E_SET_GF_CBR_BOOST_PCT, ctrl_set_rc_gf_cbr_boost_pct },
4971
  { AV1E_SET_LOSSLESS, ctrl_set_lossless },
4972
  { AV1E_SET_ENABLE_CDEF, ctrl_set_enable_cdef },
4973
  { AV1E_SET_ENABLE_RESTORATION, ctrl_set_enable_restoration },
4974
  { AV1E_SET_FORCE_VIDEO_MODE, ctrl_set_force_video_mode },
4975
  { AV1E_SET_ENABLE_OBMC, ctrl_set_enable_obmc },
4976
  { AV1E_SET_DISABLE_TRELLIS_QUANT, ctrl_set_disable_trellis_quant },
4977
  { AV1E_SET_ENABLE_QM, ctrl_set_enable_qm },
4978
  { AV1E_SET_QM_Y, ctrl_set_qm_y },
4979
  { AV1E_SET_QM_U, ctrl_set_qm_u },
4980
  { AV1E_SET_QM_V, ctrl_set_qm_v },
4981
  { AV1E_SET_QM_MIN, ctrl_set_qm_min },
4982
  { AV1E_SET_QM_MAX, ctrl_set_qm_max },
4983
  { AV1E_SET_NUM_TG, ctrl_set_num_tg },
4984
  { AV1E_SET_MTU, ctrl_set_mtu },
4985
  { AV1E_SET_TIMING_INFO_TYPE, ctrl_set_timing_info_type },
4986
  { AV1E_SET_FRAME_PARALLEL_DECODING, ctrl_set_frame_parallel_decoding_mode },
4987
  { AV1E_SET_ERROR_RESILIENT_MODE, ctrl_set_error_resilient_mode },
4988
  { AV1E_SET_S_FRAME_MODE, ctrl_set_s_frame_mode },
4989
  { AV1E_SET_ENABLE_RECT_PARTITIONS, ctrl_set_enable_rect_partitions },
4990
  { AV1E_SET_ENABLE_AB_PARTITIONS, ctrl_set_enable_ab_partitions },
4991
  { AV1E_SET_ENABLE_1TO4_PARTITIONS, ctrl_set_enable_1to4_partitions },
4992
  { AV1E_SET_MIN_PARTITION_SIZE, ctrl_set_min_partition_size },
4993
  { AV1E_SET_MAX_PARTITION_SIZE, ctrl_set_max_partition_size },
4994
  { AV1E_SET_ENABLE_DUAL_FILTER, ctrl_set_enable_dual_filter },
4995
  { AV1E_SET_ENABLE_CHROMA_DELTAQ, ctrl_set_enable_chroma_deltaq },
4996
  { AV1E_SET_ENABLE_INTRA_EDGE_FILTER, ctrl_set_enable_intra_edge_filter },
4997
  { AV1E_SET_ENABLE_ORDER_HINT, ctrl_set_enable_order_hint },
4998
  { AV1E_SET_ENABLE_TX64, ctrl_set_enable_tx64 },
4999
  { AV1E_SET_ENABLE_FLIP_IDTX, ctrl_set_enable_flip_idtx },
5000
  { AV1E_SET_ENABLE_RECT_TX, ctrl_set_enable_rect_tx },
5001
  { AV1E_SET_ENABLE_DIST_WTD_COMP, ctrl_set_enable_dist_wtd_comp },
5002
  { AV1E_SET_MAX_REFERENCE_FRAMES, ctrl_set_max_reference_frames },
5003
  { AV1E_SET_REDUCED_REFERENCE_SET, ctrl_set_enable_reduced_reference_set },
5004
  { AV1E_SET_ENABLE_REF_FRAME_MVS, ctrl_set_enable_ref_frame_mvs },
5005
  { AV1E_SET_ALLOW_REF_FRAME_MVS, ctrl_set_allow_ref_frame_mvs },
5006
  { AV1E_SET_ENABLE_MASKED_COMP, ctrl_set_enable_masked_comp },
5007
  { AV1E_SET_ENABLE_ONESIDED_COMP, ctrl_set_enable_onesided_comp },
5008
  { AV1E_SET_ENABLE_INTERINTRA_COMP, ctrl_set_enable_interintra_comp },
5009
  { AV1E_SET_ENABLE_SMOOTH_INTERINTRA, ctrl_set_enable_smooth_interintra },
5010
  { AV1E_SET_ENABLE_DIFF_WTD_COMP, ctrl_set_enable_diff_wtd_comp },
5011
  { AV1E_SET_ENABLE_INTERINTER_WEDGE, ctrl_set_enable_interinter_wedge },
5012
  { AV1E_SET_ENABLE_INTERINTRA_WEDGE, ctrl_set_enable_interintra_wedge },
5013
  { AV1E_SET_ENABLE_GLOBAL_MOTION, ctrl_set_enable_global_motion },
5014
  { AV1E_SET_ENABLE_WARPED_MOTION, ctrl_set_enable_warped_motion },
5015
  { AV1E_SET_ALLOW_WARPED_MOTION, ctrl_set_allow_warped_motion },
5016
  { AV1E_SET_ENABLE_FILTER_INTRA, ctrl_set_enable_filter_intra },
5017
  { AV1E_SET_ENABLE_SMOOTH_INTRA, ctrl_set_enable_smooth_intra },
5018
  { AV1E_SET_ENABLE_PAETH_INTRA, ctrl_set_enable_paeth_intra },
5019
  { AV1E_SET_ENABLE_CFL_INTRA, ctrl_set_enable_cfl_intra },
5020
  { AV1E_SET_ENABLE_DIRECTIONAL_INTRA, ctrl_set_enable_directional_intra },
5021
  { AV1E_SET_ENABLE_DIAGONAL_INTRA, ctrl_set_enable_diagonal_intra },
5022
  { AV1E_SET_ENABLE_SUPERRES, ctrl_set_enable_superres },
5023
  { AV1E_SET_ENABLE_OVERLAY, ctrl_set_enable_overlay },
5024
  { AV1E_SET_ENABLE_PALETTE, ctrl_set_enable_palette },
5025
  { AV1E_SET_ENABLE_INTRABC, ctrl_set_enable_intrabc },
5026
  { AV1E_SET_ENABLE_ANGLE_DELTA, ctrl_set_enable_angle_delta },
5027
  { AV1E_SET_AQ_MODE, ctrl_set_aq_mode },
5028
  { AV1E_SET_REDUCED_TX_TYPE_SET, ctrl_set_reduced_tx_type_set },
5029
  { AV1E_SET_INTRA_DCT_ONLY, ctrl_set_intra_dct_only },
5030
  { AV1E_SET_INTER_DCT_ONLY, ctrl_set_inter_dct_only },
5031
  { AV1E_SET_INTRA_DEFAULT_TX_ONLY, ctrl_set_intra_default_tx_only },
5032
  { AV1E_SET_QUANT_B_ADAPT, ctrl_set_quant_b_adapt },
5033
  { AV1E_SET_COEFF_COST_UPD_FREQ, ctrl_set_coeff_cost_upd_freq },
5034
  { AV1E_SET_MODE_COST_UPD_FREQ, ctrl_set_mode_cost_upd_freq },
5035
  { AV1E_SET_MV_COST_UPD_FREQ, ctrl_set_mv_cost_upd_freq },
5036
  { AV1E_SET_DELTAQ_MODE, ctrl_set_deltaq_mode },
5037
  { AV1E_SET_DELTAQ_STRENGTH, ctrl_set_deltaq_strength },
5038
  { AV1E_SET_DELTALF_MODE, ctrl_set_deltalf_mode },
5039
  { AV1E_SET_FRAME_PERIODIC_BOOST, ctrl_set_frame_periodic_boost },
5040
  { AV1E_SET_TUNE_CONTENT, ctrl_set_tune_content },
5041
  { AV1E_SET_CDF_UPDATE_MODE, ctrl_set_cdf_update_mode },
5042
  { AV1E_SET_COLOR_PRIMARIES, ctrl_set_color_primaries },
5043
  { AV1E_SET_TRANSFER_CHARACTERISTICS, ctrl_set_transfer_characteristics },
5044
  { AV1E_SET_MATRIX_COEFFICIENTS, ctrl_set_matrix_coefficients },
5045
  { AV1E_SET_CHROMA_SAMPLE_POSITION, ctrl_set_chroma_sample_position },
5046
  { AV1E_SET_COLOR_RANGE, ctrl_set_color_range },
5047
  { AV1E_SET_NOISE_SENSITIVITY, ctrl_set_noise_sensitivity },
5048
  { AV1E_SET_MIN_GF_INTERVAL, ctrl_set_min_gf_interval },
5049
  { AV1E_SET_MAX_GF_INTERVAL, ctrl_set_max_gf_interval },
5050
  { AV1E_SET_GF_MIN_PYRAMID_HEIGHT, ctrl_set_gf_min_pyr_height },
5051
  { AV1E_SET_GF_MAX_PYRAMID_HEIGHT, ctrl_set_gf_max_pyr_height },
5052
  { AV1E_SET_RENDER_SIZE, ctrl_set_render_size },
5053
  { AV1E_SET_SUPERBLOCK_SIZE, ctrl_set_superblock_size },
5054
  { AV1E_SET_SINGLE_TILE_DECODING, ctrl_set_single_tile_decoding },
5055
  { AV1E_SET_VMAF_MODEL_PATH, ctrl_set_vmaf_model_path },
5056
  { AV1E_SET_PARTITION_INFO_PATH, ctrl_set_partition_info_path },
5057
  { AV1E_ENABLE_RATE_GUIDE_DELTAQ, ctrl_enable_rate_guide_deltaq },
5058
  { AV1E_SET_RATE_DISTRIBUTION_INFO, ctrl_set_rate_distribution_info },
5059
  { AV1E_SET_FILM_GRAIN_TEST_VECTOR, ctrl_set_film_grain_test_vector },
5060
  { AV1E_SET_FILM_GRAIN_TABLE, ctrl_set_film_grain_table },
5061
  { AV1E_SET_DENOISE_NOISE_LEVEL, ctrl_set_denoise_noise_level },
5062
  { AV1E_SET_DENOISE_BLOCK_SIZE, ctrl_set_denoise_block_size },
5063
  { AV1E_SET_ENABLE_DNL_DENOISING, ctrl_set_enable_dnl_denoising },
5064
  { AV1E_ENABLE_MOTION_VECTOR_UNIT_TEST, ctrl_enable_motion_vector_unit_test },
5065
  { AV1E_SET_FP_MT_UNIT_TEST, ctrl_enable_fpmt_unit_test },
5066
  { AV1E_ENABLE_EXT_TILE_DEBUG, ctrl_enable_ext_tile_debug },
5067
  { AV1E_SET_TARGET_SEQ_LEVEL_IDX, ctrl_set_target_seq_level_idx },
5068
  { AV1E_SET_TIER_MASK, ctrl_set_tier_mask },
5069
  { AV1E_SET_MIN_CR, ctrl_set_min_cr },
5070
  { AV1E_SET_SVC_LAYER_ID, ctrl_set_layer_id },
5071
  { AV1E_SET_SVC_PARAMS, ctrl_set_svc_params },
5072
  { AV1E_SET_SVC_REF_FRAME_CONFIG, ctrl_set_svc_ref_frame_config },
5073
  { AV1E_SET_SVC_REF_FRAME_COMP_PRED, ctrl_set_svc_ref_frame_comp_pred },
5074
  { AV1E_SET_VBR_CORPUS_COMPLEXITY_LAP, ctrl_set_vbr_corpus_complexity_lap },
5075
  { AV1E_ENABLE_SB_MULTIPASS_UNIT_TEST, ctrl_enable_sb_multipass_unit_test },
5076
  { AV1E_ENABLE_SB_QP_SWEEP, ctrl_enable_sb_qp_sweep },
5077
  { AV1E_SET_DV_COST_UPD_FREQ, ctrl_set_dv_cost_upd_freq },
5078
  { AV1E_SET_EXTERNAL_PARTITION, ctrl_set_external_partition },
5079
  { AV1E_SET_ENABLE_TX_SIZE_SEARCH, ctrl_set_enable_tx_size_search },
5080
  { AV1E_SET_LOOPFILTER_CONTROL, ctrl_set_loopfilter_control },
5081
  { AV1E_SET_SKIP_POSTPROC_FILTERING, ctrl_set_skip_postproc_filtering },
5082
  { AV1E_SET_AUTO_INTRA_TOOLS_OFF, ctrl_set_auto_intra_tools_off },
5083
  { AV1E_SET_RTC_EXTERNAL_RC, ctrl_set_rtc_external_rc },
5084
  { AV1E_SET_QUANTIZER_ONE_PASS, ctrl_set_quantizer_one_pass },
5085
  { AV1E_SET_BITRATE_ONE_PASS_CBR, ctrl_set_bitrate_one_pass_cbr },
5086
  { AV1E_SET_MAX_CONSEC_FRAME_DROP_CBR, ctrl_set_max_consec_frame_drop_cbr },
5087
  { AV1E_SET_SVC_FRAME_DROP_MODE, ctrl_set_svc_frame_drop_mode },
5088
  { AV1E_SET_AUTO_TILES, ctrl_set_auto_tiles },
5089
  { AV1E_SET_POSTENCODE_DROP_RTC, ctrl_set_postencode_drop_rtc },
5090
  { AV1E_SET_MAX_CONSEC_FRAME_DROP_MS_CBR,
5091
    ctrl_set_max_consec_frame_drop_ms_cbr },
5092
  { AV1E_SET_ENABLE_LOW_COMPLEXITY_DECODE,
5093
    ctrl_set_enable_low_complexity_decode },
5094
  { AV1E_SET_SCREEN_CONTENT_DETECTION_MODE,
5095
    ctrl_set_screen_content_detection_mode },
5096
  { AV1E_SET_ENABLE_ADAPTIVE_SHARPNESS, ctrl_set_enable_adaptive_sharpness },
5097
  { AV1E_SET_EXTERNAL_RATE_CONTROL, ctrl_set_external_rate_control },
5098
  { AOME_SET_VALIDATE_HBD_INPUT, ctrl_set_validate_hbd_input },
5099
5100
  // Getters
5101
  { AOME_GET_LAST_QUANTIZER, ctrl_get_quantizer },
5102
  { AOME_GET_LAST_QUANTIZER_64, ctrl_get_quantizer64 },
5103
  { AOME_GET_LOOPFILTER_LEVEL, ctrl_get_loopfilter_level },
5104
  { AV1_GET_REFERENCE, ctrl_get_reference },
5105
  { AV1E_GET_ACTIVEMAP, ctrl_get_active_map },
5106
  { AV1_GET_NEW_FRAME_IMAGE, ctrl_get_new_frame_image },
5107
  { AV1_COPY_NEW_FRAME_IMAGE, ctrl_copy_new_frame_image },
5108
  { AV1E_SET_CHROMA_SUBSAMPLING_X, ctrl_set_chroma_subsampling_x },
5109
  { AV1E_SET_CHROMA_SUBSAMPLING_Y, ctrl_set_chroma_subsampling_y },
5110
  { AV1E_GET_SEQ_LEVEL_IDX, ctrl_get_seq_level_idx },
5111
  { AV1E_GET_BASELINE_GF_INTERVAL, ctrl_get_baseline_gf_interval },
5112
  { AV1E_GET_TARGET_SEQ_LEVEL_IDX, ctrl_get_target_seq_level_idx },
5113
  { AV1E_GET_NUM_OPERATING_POINTS, ctrl_get_num_operating_points },
5114
  { AV1E_GET_LUMA_CDEF_STRENGTH, ctrl_get_luma_cdef_strength },
5115
  { AV1E_GET_HIGH_MOTION_CONTENT_SCREEN_RTC,
5116
    ctrl_get_high_motion_content_screen_rtc },
5117
  { AV1E_GET_GOP_INFO, ctrl_get_gop_info },
5118
5119
  CTRL_MAP_END,
5120
};
5121
5122
static const aom_codec_enc_cfg_t encoder_usage_cfg[] = {
5123
#if !CONFIG_REALTIME_ONLY
5124
  {
5125
      // NOLINT
5126
      AOM_USAGE_GOOD_QUALITY,  // g_usage - non-realtime usage
5127
      0,                       // g_threads
5128
      0,                       // g_profile
5129
5130
      320,         // g_w
5131
      240,         // g_h
5132
      0,           // g_limit
5133
      0,           // g_forced_max_frame_width
5134
      0,           // g_forced_max_frame_height
5135
      AOM_BITS_8,  // g_bit_depth
5136
      8,           // g_input_bit_depth
5137
5138
      { 1, 30 },  // g_timebase
5139
5140
      0,  // g_error_resilient
5141
5142
      AOM_RC_ONE_PASS,  // g_pass
5143
5144
      35,  // g_lag_in_frames
5145
5146
      0,                // rc_dropframe_thresh
5147
      RESIZE_NONE,      // rc_resize_mode
5148
      SCALE_NUMERATOR,  // rc_resize_denominator
5149
      SCALE_NUMERATOR,  // rc_resize_kf_denominator
5150
5151
      AOM_SUPERRES_NONE,  // rc_superres_mode
5152
      SCALE_NUMERATOR,    // rc_superres_denominator
5153
      SCALE_NUMERATOR,    // rc_superres_kf_denominator
5154
      63,                 // rc_superres_qthresh
5155
      32,                 // rc_superres_kf_qthresh
5156
5157
      AOM_VBR,      // rc_end_usage
5158
      { NULL, 0 },  // rc_twopass_stats_in
5159
      { NULL, 0 },  // rc_firstpass_mb_stats_in
5160
      256,          // rc_target_bitrate
5161
      0,            // rc_min_quantizer
5162
      63,           // rc_max_quantizer
5163
      25,           // rc_undershoot_pct
5164
      25,           // rc_overshoot_pct
5165
5166
      6000,  // rc_buf_sz
5167
      4000,  // rc_buf_initial_sz
5168
      5000,  // rc_buf_optimal_sz
5169
5170
      50,    // rc_2pass_vbr_bias_pct
5171
      0,     // rc_2pass_vbr_minsection_pct
5172
      2000,  // rc_2pass_vbr_maxsection_pct
5173
5174
      // keyframing settings (kf)
5175
      0,                       // fwd_kf_enabled
5176
      AOM_KF_AUTO,             // kf_mode
5177
      0,                       // kf_min_dist
5178
      9999,                    // kf_max_dist
5179
      0,                       // sframe_dist
5180
      1,                       // sframe_mode
5181
      0,                       // large_scale_tile
5182
      0,                       // monochrome
5183
      0,                       // full_still_picture_hdr
5184
      0,                       // save_as_annexb
5185
      0,                       // tile_width_count
5186
      0,                       // tile_height_count
5187
      { 0 },                   // tile_widths
5188
      { 0 },                   // tile_heights
5189
      0,                       // use_fixed_qp_offsets
5190
      { -1, -1, -1, -1, -1 },  // fixed_qp_offsets
5191
      { 0, 128, 128, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5192
        0, 0,   0,   0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },  // encoder_cfg
5193
  },
5194
#endif  // !CONFIG_REALTIME_ONLY
5195
  {
5196
      // NOLINT
5197
      AOM_USAGE_REALTIME,  // g_usage - real-time usage
5198
      0,                   // g_threads
5199
      0,                   // g_profile
5200
5201
      320,         // g_w
5202
      240,         // g_h
5203
      0,           // g_limit
5204
      0,           // g_forced_max_frame_width
5205
      0,           // g_forced_max_frame_height
5206
      AOM_BITS_8,  // g_bit_depth
5207
      8,           // g_input_bit_depth
5208
5209
      { 1, 30 },  // g_timebase
5210
5211
      0,  // g_error_resilient
5212
5213
      AOM_RC_ONE_PASS,  // g_pass
5214
5215
      0,  // g_lag_in_frames
5216
5217
      0,                // rc_dropframe_thresh
5218
      RESIZE_NONE,      // rc_resize_mode
5219
      SCALE_NUMERATOR,  // rc_resize_denominator
5220
      SCALE_NUMERATOR,  // rc_resize_kf_denominator
5221
5222
      AOM_SUPERRES_NONE,  // rc_superres_mode
5223
      SCALE_NUMERATOR,    // rc_superres_denominator
5224
      SCALE_NUMERATOR,    // rc_superres_kf_denominator
5225
      63,                 // rc_superres_qthresh
5226
      32,                 // rc_superres_kf_qthresh
5227
5228
      AOM_CBR,      // rc_end_usage
5229
      { NULL, 0 },  // rc_twopass_stats_in
5230
      { NULL, 0 },  // rc_firstpass_mb_stats_in
5231
      256,          // rc_target_bitrate
5232
      0,            // rc_min_quantizer
5233
      63,           // rc_max_quantizer
5234
      50,           // rc_undershoot_pct
5235
      50,           // rc_overshoot_pct
5236
5237
      1000,  // rc_buf_sz
5238
      600,   // rc_buf_initial_sz
5239
      600,   // rc_buf_optimal_sz
5240
5241
      50,    // rc_2pass_vbr_bias_pct
5242
      0,     // rc_2pass_vbr_minsection_pct
5243
      2000,  // rc_2pass_vbr_maxsection_pct
5244
5245
      // keyframing settings (kf)
5246
      0,                       // fwd_kf_enabled
5247
      AOM_KF_AUTO,             // kf_mode
5248
      0,                       // kf_min_dist
5249
      9999,                    // kf_max_dist
5250
      0,                       // sframe_dist
5251
      1,                       // sframe_mode
5252
      0,                       // large_scale_tile
5253
      0,                       // monochrome
5254
      0,                       // full_still_picture_hdr
5255
      0,                       // save_as_annexb
5256
      0,                       // tile_width_count
5257
      0,                       // tile_height_count
5258
      { 0 },                   // tile_widths
5259
      { 0 },                   // tile_heights
5260
      0,                       // use_fixed_qp_offsets
5261
      { -1, -1, -1, -1, -1 },  // fixed_qp_offsets
5262
      { 0, 128, 128, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5263
        0, 0,   0,   0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },  // encoder_cfg
5264
  },
5265
#if !CONFIG_REALTIME_ONLY
5266
  {
5267
      // NOLINT
5268
      AOM_USAGE_ALL_INTRA,  // g_usage - all intra usage
5269
      0,                    // g_threads
5270
      0,                    // g_profile
5271
5272
      320,         // g_w
5273
      240,         // g_h
5274
      0,           // g_limit
5275
      0,           // g_forced_max_frame_width
5276
      0,           // g_forced_max_frame_height
5277
      AOM_BITS_8,  // g_bit_depth
5278
      8,           // g_input_bit_depth
5279
5280
      { 1, 30 },  // g_timebase
5281
5282
      0,  // g_error_resilient
5283
5284
      AOM_RC_ONE_PASS,  // g_pass
5285
5286
      0,  // g_lag_in_frames
5287
5288
      0,                // rc_dropframe_thresh
5289
      RESIZE_NONE,      // rc_resize_mode
5290
      SCALE_NUMERATOR,  // rc_resize_denominator
5291
      SCALE_NUMERATOR,  // rc_resize_kf_denominator
5292
5293
      AOM_SUPERRES_NONE,  // rc_superres_mode
5294
      SCALE_NUMERATOR,    // rc_superres_denominator
5295
      SCALE_NUMERATOR,    // rc_superres_kf_denominator
5296
      63,                 // rc_superres_qthresh
5297
      32,                 // rc_superres_kf_qthresh
5298
5299
      AOM_Q,        // rc_end_usage
5300
      { NULL, 0 },  // rc_twopass_stats_in
5301
      { NULL, 0 },  // rc_firstpass_mb_stats_in
5302
      256,          // rc_target_bitrate
5303
      0,            // rc_min_quantizer
5304
      63,           // rc_max_quantizer
5305
      25,           // rc_undershoot_pct
5306
      25,           // rc_overshoot_pct
5307
5308
      6000,  // rc_buf_sz
5309
      4000,  // rc_buf_initial_sz
5310
      5000,  // rc_buf_optimal_sz
5311
5312
      50,    // rc_2pass_vbr_bias_pct
5313
      0,     // rc_2pass_vbr_minsection_pct
5314
      2000,  // rc_2pass_vbr_maxsection_pct
5315
5316
      // keyframing settings (kf)
5317
      0,                       // fwd_kf_enabled
5318
      AOM_KF_DISABLED,         // kf_mode
5319
      0,                       // kf_min_dist
5320
      0,                       // kf_max_dist
5321
      0,                       // sframe_dist
5322
      1,                       // sframe_mode
5323
      0,                       // large_scale_tile
5324
      0,                       // monochrome
5325
      0,                       // full_still_picture_hdr
5326
      0,                       // save_as_annexb
5327
      0,                       // tile_width_count
5328
      0,                       // tile_height_count
5329
      { 0 },                   // tile_widths
5330
      { 0 },                   // tile_heights
5331
      0,                       // use_fixed_qp_offsets
5332
      { -1, -1, -1, -1, -1 },  // fixed_qp_offsets
5333
      { 0, 128, 128, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5334
        0, 0,   0,   0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },  // encoder_cfg
5335
  },
5336
#endif  // !CONFIG_REALTIME_ONLY
5337
};
5338
5339
// This data structure and function are exported in aom/aomcx.h
5340
#ifndef VERSION_STRING
5341
#define VERSION_STRING
5342
#endif
5343
aom_codec_iface_t aom_codec_av1_cx_algo = {
5344
  "AOMedia Project AV1 Encoder" VERSION_STRING,
5345
  AOM_CODEC_INTERNAL_ABI_VERSION,
5346
  (CONFIG_AV1_HIGHBITDEPTH ? AOM_CODEC_CAP_HIGHBITDEPTH : 0) |
5347
      AOM_CODEC_CAP_ENCODER | AOM_CODEC_CAP_PSNR,  // aom_codec_caps_t
5348
  encoder_init,                                    // aom_codec_init_fn_t
5349
  encoder_destroy,                                 // aom_codec_destroy_fn_t
5350
  encoder_ctrl_maps,                               // aom_codec_ctrl_fn_map_t
5351
  {
5352
      // NOLINT
5353
      NULL,  // aom_codec_peek_si_fn_t
5354
      NULL,  // aom_codec_get_si_fn_t
5355
      NULL,  // aom_codec_decode_fn_t
5356
      NULL,  // aom_codec_get_frame_fn_t
5357
      NULL   // aom_codec_set_fb_fn_t
5358
  },
5359
  {
5360
      // NOLINT
5361
      NELEMENTS(encoder_usage_cfg),  // cfg_count
5362
      encoder_usage_cfg,             // aom_codec_enc_cfg_t
5363
      encoder_encode,                // aom_codec_encode_fn_t
5364
      encoder_get_cxdata,            // aom_codec_get_cx_data_fn_t
5365
      encoder_set_config,            // aom_codec_enc_config_set_fn_t
5366
      encoder_get_global_headers,    // aom_codec_get_global_headers_fn_t
5367
      encoder_get_preview            // aom_codec_get_preview_frame_fn_t
5368
  },
5369
  encoder_set_option  // aom_codec_set_option_fn_t
5370
};
5371
5372
0
aom_codec_iface_t *aom_codec_av1_cx(void) { return &aom_codec_av1_cx_algo; }