Coverage Report

Created: 2026-04-01 07:49

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