Coverage Report

Created: 2026-07-30 06:27

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/work/svt-av1/Source/Lib/Globals/enc_settings.c
Line
Count
Source
1
/*
2
* Copyright(c) 2022 Intel Corporation
3
*
4
* This source code is subject to the terms of the BSD 3-Clause Clear License and
5
* the Alliance for Open Media Patent License 1.0. If the BSD 3-Clause Clear License
6
* was not distributed with this source code in the LICENSE file, you can
7
* obtain it at https://www.aomedia.org/license. 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 https://www.aomedia.org/license/patent-license.
10
*/
11
// SUMMARY
12
//   Contains the encoder settings API functions
13
14
/**************************************
15
 * Includes
16
 **************************************/
17
#include <stdbool.h>
18
#include <stdlib.h>
19
#include <stdio.h>
20
#include <stdint.h>
21
#include "EbVersion.h"
22
#include "definitions.h"
23
#include "EbSvtAv1Enc.h"
24
#include "EbSvtAv1Metadata.h"
25
#include "enc_settings.h"
26
#include "entropy_coding.h"
27
28
#include "svt_log.h"
29
#include "utility.h"
30
31
#ifdef _WIN32
32
#include <windows.h>
33
#else
34
#include <errno.h>
35
#include <pthread.h>
36
#include <unistd.h>
37
#endif
38
39
/******************************************
40
* Verify Settings
41
******************************************/
42
485
EbErrorType svt_av1_verify_settings(SequenceControlSet* scs) {
43
485
    EbErrorType               return_error = EB_ErrorNone;
44
485
    EbSvtAv1EncConfiguration* config       = &scs->static_config;
45
485
    if (config->enc_mode > MAX_ENC_PRESET || config->enc_mode < MIN_ENC_PRESET) {
46
0
        SVT_ERROR("EncoderMode must be in the range of [%d-%d]\n", MIN_ENC_PRESET, MAX_ENC_PRESET);
47
0
        return_error = EB_ErrorBadParameter;
48
0
    }
49
485
    if (scs->max_input_luma_width < 1) {
50
0
        SVT_ERROR("Source Width must be at least 1\n");
51
0
        return_error = EB_ErrorBadParameter;
52
0
    }
53
485
    if (scs->max_input_luma_height < 1) {
54
0
        SVT_ERROR("Source Height must be at least 1\n");
55
0
        return_error = EB_ErrorBadParameter;
56
0
    }
57
485
    if (config->pred_structure > RANDOM_ACCESS) {
58
0
        SVT_ERROR("Pred Structure must be [%d (ALL_INTRA), %d (LOW_DELAY), or %d (RANDOM_ACCESS)]\n",
59
0
                  ALL_INTRA,
60
0
                  LOW_DELAY,
61
0
                  RANDOM_ACCESS);
62
0
        return_error = EB_ErrorBadParameter;
63
0
    }
64
485
    if (config->pred_structure == LOW_DELAY && config->pass > 0) {
65
0
        SVT_ERROR("Multi-passes is not support with Low Delay mode \n");
66
0
        return_error = EB_ErrorBadParameter;
67
0
    }
68
485
    if (config->maximum_buffer_size_ms < 20 || config->maximum_buffer_size_ms > 10000) {
69
0
        SVT_ERROR("The maximum buffer size must be between [20, 10000]\n");
70
0
        return_error = EB_ErrorBadParameter;
71
0
    }
72
73
485
    if (config->starting_buffer_level_ms < 20 || config->starting_buffer_level_ms > 10000) {
74
0
        SVT_ERROR("The initial buffer size must be between [20, 10000] \n");
75
0
        return_error = EB_ErrorBadParameter;
76
485
    } else if (config->starting_buffer_level_ms >= config->maximum_buffer_size_ms) {
77
0
        SVT_WARN(
78
0
            "The initial buffer size must be less than maximum buffer size. Defaulting optimal "
79
0
            "buffer size to maximum buffer size - 1 (%u)\n",
80
0
            config->maximum_buffer_size_ms - 1);
81
0
        config->starting_buffer_level_ms = (config->maximum_buffer_size_ms - 1);
82
0
    }
83
84
485
    if (config->optimal_buffer_level_ms < 20 || config->optimal_buffer_level_ms > 10000) {
85
0
        SVT_ERROR("The optimal buffer size must be between [20, 10000]\n");
86
0
        return_error = EB_ErrorBadParameter;
87
485
    } else if (config->optimal_buffer_level_ms >= config->maximum_buffer_size_ms) {
88
0
        SVT_WARN(
89
0
            "The optimal buffer size must be less than maximum buffer size. Defaulting optimal "
90
0
            "buffer size to maximum buffer size - 1 (%u)\n",
91
0
            config->maximum_buffer_size_ms - 1);
92
0
        config->optimal_buffer_level_ms = (config->maximum_buffer_size_ms - 1);
93
0
    }
94
95
485
    if (config->over_shoot_pct > 100) {
96
0
        SVT_ERROR("The overshoot percentage must be between [0, 100] \n");
97
0
        return_error = EB_ErrorBadParameter;
98
0
    }
99
100
485
    if (config->mbr_over_shoot_pct > 100) {
101
0
        SVT_ERROR("The max bitrate overshoot percentage must be between [0, 100] \n");
102
0
        return_error = EB_ErrorBadParameter;
103
0
    }
104
105
485
    if (config->under_shoot_pct > 100) {
106
0
        SVT_ERROR("The undershoot percentage must be between [0, 100] \n");
107
0
        return_error = EB_ErrorBadParameter;
108
0
    }
109
110
485
    if (config->target_bit_rate > 100000000) {
111
0
        SVT_ERROR("The target bit rate must be between [0, 100000] kbps \n");
112
0
        return_error = EB_ErrorBadParameter;
113
0
    }
114
485
    if (config->max_bit_rate > 100000000) {
115
0
        SVT_ERROR("The maximum bit rate must be between [0, 100000] kbps \n");
116
0
        return_error = EB_ErrorBadParameter;
117
0
    }
118
485
    if (config->vbr_max_section_pct > 10000) {
119
0
        SVT_ERROR("The max section percentage must be between [0, 10000] \n");
120
0
        return_error = EB_ErrorBadParameter;
121
0
    }
122
123
485
    if (config->vbr_min_section_pct > 100) {
124
0
        SVT_ERROR("he min section percentage must be between [0, 100] \n");
125
0
        return_error = EB_ErrorBadParameter;
126
0
    }
127
485
    if (config->gop_constraint_rc &&
128
0
        ((config->rate_control_mode != SVT_AV1_RC_MODE_VBR) || config->intra_period_length < 119)) {
129
0
        SVT_ERROR(
130
0
            "Gop constraint rc is only supported with VBR mode when Gop size is "
131
0
            "greater than 119 \n");
132
0
        return_error = EB_ErrorBadParameter;
133
0
    }
134
485
    if (config->gop_constraint_rc) {
135
0
        SVT_WARN(
136
0
            "The GoP constraint RC mode is a work-in-progress project, and is only "
137
0
            "available for demos, experimentation, and further development uses and should not be "
138
0
            "used for benchmarking until fully implemented.\n");
139
0
    }
140
141
485
    if (config->force_key_frames &&
142
0
        (config->rate_control_mode == SVT_AV1_RC_MODE_CBR || config->pred_structure == LOW_DELAY)) {
143
0
        SVT_WARN(
144
0
            "Force key frames is now supported for lowdelay but the force_key_frames flag"
145
0
            " does not need to be set be on. Please follow the app samples shown by the FTR_KF_ON_FLY_SAMPLE"
146
0
            " macro on how to use it. force_key_frames will now be set to 0 \n");
147
0
        config->force_key_frames = 0;
148
0
    }
149
485
    if (config->force_key_frames && config->rate_control_mode == SVT_AV1_RC_MODE_VBR) {
150
0
        SVT_ERROR("Force key frames is not supported for VBR mode \n");
151
0
        return_error = EB_ErrorBadParameter;
152
0
    }
153
485
    if (config->rate_control_mode != SVT_AV1_RC_MODE_CQP_OR_CRF && (config->max_bit_rate != 0)) {
154
0
        SVT_ERROR("Max Bitrate only supported with CRF mode\n");
155
0
        return_error = EB_ErrorBadParameter;
156
0
    }
157
485
    if (config->rate_control_mode == SVT_AV1_RC_MODE_CBR && config->pred_structure != LOW_DELAY) {
158
0
        SVT_ERROR("CBR Rate control is currently not supported for RANDOM_ACCESS/ALL_INTRA, use VBR mode\n");
159
0
        return_error = EB_ErrorBadParameter;
160
0
    }
161
    // Ref-frame management validation: ABI cap + LD-CBR-only when enabled.
162
485
    if (config->max_managed_refs > 4) {
163
0
        SVT_ERROR("max_managed_refs must be in [0, 4] (got %u)\n", (unsigned)config->max_managed_refs);
164
0
        return_error = EB_ErrorBadParameter;
165
0
    }
166
485
    if (config->max_managed_refs > 0 && config->pred_structure != LOW_DELAY) {
167
0
        SVT_ERROR("max_managed_refs > 0 requires pred_structure == LOW_DELAY\n");
168
0
        return_error = EB_ErrorBadParameter;
169
0
    }
170
485
    if (config->max_managed_refs > 0 && config->rate_control_mode != SVT_AV1_RC_MODE_CBR) {
171
        // Only LD-CBR is implemented; LD-CRF's shifted lay1_offset would
172
        // collide with the STORE-safe slot pool. See pd_process.c.
173
0
        SVT_ERROR("max_managed_refs > 0 requires rate_control_mode == CBR (got %u)\n",
174
0
                  (unsigned)config->rate_control_mode);
175
0
        return_error = EB_ErrorBadParameter;
176
0
    }
177
485
    if (config->rate_control_mode == SVT_AV1_RC_MODE_VBR && config->pred_structure == LOW_DELAY) {
178
0
        SVT_ERROR("VBR Rate control is currently not supported for LOW_DELAY, use CBR mode\n");
179
0
        return_error = EB_ErrorBadParameter;
180
0
    }
181
485
    if (config->rate_control_mode == SVT_AV1_RC_MODE_CQP_OR_CRF && config->target_bit_rate != DEFAULT_TBR) {
182
0
        SVT_ERROR("Target Bitrate only supported when --rc is  1/2 (VBR/CBR). Current --rc: %d\n",
183
0
                  config->rate_control_mode);
184
0
        return_error = EB_ErrorBadParameter;
185
0
    }
186
187
485
    if (scs->max_input_luma_width > 16384) {
188
0
        SVT_ERROR("Source Width must be less than or equal to 16384\n");
189
0
        return_error = EB_ErrorBadParameter;
190
0
    }
191
192
485
    if (scs->max_input_luma_height > 8704) {
193
0
        SVT_ERROR("Source Height must be less than or equal to 8704)\n");
194
0
        return_error = EB_ErrorBadParameter;
195
0
    }
196
197
485
    if (scs->seq_header.max_frame_width < 1) {
198
0
        SVT_ERROR("Forced Max Width must be at least 1\n");
199
0
        return_error = EB_ErrorBadParameter;
200
0
    }
201
485
    if (scs->seq_header.max_frame_height < 1) {
202
0
        SVT_ERROR("Forced Max Height must be at least 1\n");
203
0
        return_error = EB_ErrorBadParameter;
204
0
    }
205
485
    if (scs->seq_header.max_frame_width > 16384) {
206
0
        SVT_ERROR("Forced Max Width must be less than or equal to 16384\n");
207
0
        return_error = EB_ErrorBadParameter;
208
0
    }
209
485
    if (scs->seq_header.max_frame_height > 8704) {
210
0
        SVT_ERROR("Forced Max Height must be less than or equal to 8704)\n");
211
0
        return_error = EB_ErrorBadParameter;
212
0
    }
213
214
    // This is not an AV1 spec limitation, but an implementation limitation in the encoder
215
    // This check will stay in place until restoration filtering can handle these dimensions
216
485
    if ((scs->max_input_luma_width >= 1 && scs->max_input_luma_width < 64) ||
217
485
        (scs->max_input_luma_height >= 1 && scs->max_input_luma_height < 64)) {
218
0
        if (config->aq_mode != 0) {
219
0
            SVT_WARN("AQ mode %i is unsupported with source dimensions (%i / %i), setting AQ mode to 0\n",
220
0
                     config->aq_mode,
221
0
                     scs->max_input_luma_width,
222
0
                     scs->max_input_luma_height);
223
0
            config->aq_mode = 0;
224
0
        }
225
0
        if (config->enable_restoration_filtering != 0) {
226
0
            SVT_WARN(
227
0
                "Restoration Filtering is unsupported with source dimensions (%i / %i), disabling "
228
0
                "Restoration Filtering\n",
229
0
                scs->max_input_luma_width,
230
0
                scs->max_input_luma_height);
231
0
            config->enable_restoration_filtering = 0;
232
0
        }
233
0
    }
234
235
485
    if ((scs->max_input_luma_width > scs->seq_header.max_frame_width) ||
236
485
        (scs->max_input_luma_height > scs->seq_header.max_frame_height)) {
237
0
        SVT_ERROR(
238
0
            "Source Width/Height must be less than or equal to Forced Max "
239
0
            "Width/Height\n");
240
0
        return_error = EB_ErrorBadParameter;
241
0
    }
242
243
485
    if (config->level != 0) {
244
0
        BitstreamLevel bl;
245
0
        bl.major = config->level / 10;
246
0
        bl.minor = config->level % 10;
247
        // Defined AV1 levels only have major versions 2-9 and minor versions 0-3
248
0
        if (bl.minor > LEVEL_MINOR_MAX || bl.major < LEVEL_MAJOR_MIN || bl.major > LEVEL_MAJOR_MAX) {
249
0
            SVT_ERROR("Invalid or undefined level specified: %d.%d. See AV1 spec Annex A for defined levels.\n",
250
0
                      bl.major,
251
0
                      bl.minor);
252
0
            return_error = EB_ErrorBadParameter;
253
0
        } else {
254
            // Some levels in the allowable range are undefined by the spec.
255
0
            const uint8_t seq_level_idx = major_minor_to_seq_level_idx(bl);
256
0
            if (!is_valid_seq_level_idx(seq_level_idx)) {
257
0
                SVT_ERROR("Invalid or undefined level specified: %d.%d. See AV1 spec Annex A for defined levels.\n",
258
0
                          bl.major,
259
0
                          bl.minor);
260
0
                return_error = EB_ErrorBadParameter;
261
0
            }
262
0
        }
263
0
    }
264
265
485
    if (config->qp > MAX_QP_VALUE) {
266
0
        SVT_ERROR("%s must be [0 - %d]\n", config->aq_mode ? "CRF" : "QP", MAX_QP_VALUE);
267
0
        return_error = EB_ErrorBadParameter;
268
0
    }
269
270
485
    if ((config->qp == MAX_QP_VALUE && config->extended_crf_qindex_offset > (7 * 4))) {
271
0
        SVT_ERROR("%s must be [0 - %d]\n", "CRF", 70);
272
0
        return_error = EB_ErrorBadParameter;
273
0
    }
274
275
485
    if (config->hierarchical_levels > 5) {
276
0
        SVT_ERROR("Hierarchical Levels supported: [0-5]\n");
277
0
        return_error = EB_ErrorBadParameter;
278
485
    } else {
279
1.94k
        for (uint8_t i = 0; i < config->hierarchical_levels + 1; ++i) {
280
1.45k
            if (config->qindex_offsets[i] < -64 || config->qindex_offsets[i] > 63) {
281
0
                SVT_ERROR(
282
0
                    "Invalid qindex_offsets for hierarchical level %d. Found %d, qindex_offsets must be [-64 - 63]\n",
283
0
                    i,
284
0
                    config->qindex_offsets[i]);
285
0
                return_error = EB_ErrorBadParameter;
286
0
            }
287
1.45k
        }
288
1.94k
        for (uint8_t i = 0; i < config->hierarchical_levels + 1; ++i) {
289
1.45k
            if (config->chroma_qindex_offsets[i] < -64 || config->chroma_qindex_offsets[i] > 63) {
290
0
                SVT_ERROR(
291
0
                    "Invalid chroma_qindex_offsets for hierarchical level %d. Found %d, chroma_qindex_offsets must be "
292
0
                    "[-64 - 63]\n",
293
0
                    i,
294
0
                    config->chroma_qindex_offsets[i]);
295
0
                return_error = EB_ErrorBadParameter;
296
0
            }
297
1.45k
        }
298
485
    }
299
485
    if ((config->intra_period_length < -2 || config->intra_period_length > 2 * ((1 << 30) - 1)) &&
300
0
        config->rate_control_mode == SVT_AV1_RC_MODE_CQP_OR_CRF) {
301
0
        SVT_ERROR("The intra period must be [-2, 2^31-2]\n");
302
0
        return_error = EB_ErrorBadParameter;
303
0
    }
304
485
    if ((config->intra_period_length < 0) && config->rate_control_mode == SVT_AV1_RC_MODE_VBR) {
305
0
        SVT_ERROR("The intra period must be > 0 for RateControlMode %d\n", config->rate_control_mode);
306
0
        return_error = EB_ErrorBadParameter;
307
0
    }
308
309
485
    if (config->intra_refresh_type > 2 || config->intra_refresh_type < 1) {
310
0
        SVT_ERROR("Invalid intra Refresh Type [1-2]\n");
311
0
        return_error = EB_ErrorBadParameter;
312
0
    }
313
314
485
    if (config->enable_dlf_flag > 2) {
315
0
        SVT_ERROR("Invalid LoopFilterEnable. LoopFilterEnable must be [0 - 2]\n");
316
0
        return_error = EB_ErrorBadParameter;
317
0
    }
318
319
485
    if (config->rate_control_mode > SVT_AV1_RC_MODE_CBR &&
320
0
        (config->pass == ENC_FIRST_PASS || config->rc_stats_buffer.buf)) {
321
0
        SVT_ERROR("Only rate control mode 0~2 are supported for 2-pass \n");
322
0
        return_error = EB_ErrorBadParameter;
323
0
    }
324
    // Stats file is checked by the app in handle_stats_file, but must be re-checked here since ffmpeg calls
325
    // the library but not the app
326
485
    if (config->rate_control_mode == SVT_AV1_RC_MODE_VBR && config->pass == ENC_SECOND_PASS) {
327
0
        if (!config->rc_stats_buffer.buf) {
328
0
            SVT_ERROR("RC stats buffer not available \n");
329
0
            return_error = EB_ErrorBadParameter;
330
0
        } else if (config->rc_stats_buffer.sz == 0) {
331
0
            SVT_ERROR("RC stats buffer size is 0 \n");
332
0
            return_error = EB_ErrorBadParameter;
333
0
        }
334
0
    }
335
485
    if (config->profile > 2) {
336
0
        SVT_ERROR("The maximum allowed profile value is 2 \n");
337
0
        return_error = EB_ErrorBadParameter;
338
0
    }
339
340
    // Check if the current input video is conformant with the Level constraint
341
485
    if (scs->frame_rate > 240) {
342
0
        SVT_ERROR("The maximum allowed frame rate is 240 fps\n");
343
0
        return_error = EB_ErrorBadParameter;
344
0
    }
345
    // Check that the frame_rate is non-zero
346
485
    if (!scs->frame_rate) {
347
0
        SVT_ERROR("The frame rate should be greater than 0 fps \n");
348
0
        return_error = EB_ErrorBadParameter;
349
0
    }
350
485
    if (scs->static_config.frame_rate_numerator == 0 || scs->static_config.frame_rate_denominator == 0) {
351
0
        SVT_ERROR("The frame_rate_numerator and frame_rate_denominator must be greater than 0\n");
352
0
        return_error = EB_ErrorBadParameter;
353
0
    }
354
485
    if (config->recode_loop > 4) {
355
0
        SVT_ERROR("The recode_loop must be [0 - 4] \n");
356
0
        return_error = EB_ErrorBadParameter;
357
0
    }
358
485
    if (config->rate_control_mode > SVT_AV1_RC_MODE_CBR) {
359
0
        SVT_ERROR("The rate control mode must be [0 - 2] \n");
360
0
        return_error = EB_ErrorBadParameter;
361
0
    }
362
485
    if (config->look_ahead_distance > MAX_LAD && config->look_ahead_distance != (uint32_t)~0) {
363
0
        SVT_ERROR("The lookahead distance must be [0 - %d] \n", MAX_LAD);
364
365
0
        return_error = EB_ErrorBadParameter;
366
0
    }
367
485
    if ((unsigned)config->tile_rows > 6 || (unsigned)config->tile_columns > 6) {
368
0
        SVT_ERROR("Log2Tile rows/cols must be [0 - 6] \n");
369
0
        return_error = EB_ErrorBadParameter;
370
0
    }
371
485
    if ((1u << config->tile_rows) * (1u << config->tile_columns) > 128 || config->tile_columns > 4) {
372
0
        SVT_ERROR("MaxTiles is 128 and MaxTileCols is 16 (Annex A.3) \n");
373
0
        return_error = EB_ErrorBadParameter;
374
0
    }
375
485
    if (config->max_qp_allowed > MAX_QP_VALUE) {
376
0
        SVT_ERROR("MaxQpAllowed must be [0 - %d]\n", MAX_QP_VALUE);
377
0
        return_error = EB_ErrorBadParameter;
378
485
    } else if (config->min_qp_allowed > MAX_QP_VALUE) {
379
0
        SVT_ERROR("MinQpAllowed must be [0 - %d]\n", MAX_QP_VALUE);
380
0
        return_error = EB_ErrorBadParameter;
381
485
    } else if (config->min_qp_allowed > config->max_qp_allowed) {
382
0
        SVT_ERROR("MinQpAllowed must be smaller than or equal to MaxQpAllowed\n");
383
0
        return_error = EB_ErrorBadParameter;
384
0
    }
385
485
    if (config->use_fixed_qindex_offsets > 2) {
386
0
        SVT_ERROR("The use_fixed_qindex_offsets must be [0 - 2] \n");
387
0
        return_error = EB_ErrorBadParameter;
388
0
    }
389
390
485
    if (config->key_frame_qindex_offset < -64 || config->key_frame_qindex_offset > 63) {
391
0
        SVT_ERROR("Invalid key_frame_qindex_offset. key_frame_qindex_offset must be [-64 - 63]\n");
392
0
        return_error = EB_ErrorBadParameter;
393
0
    }
394
395
485
    if (config->key_frame_chroma_qindex_offset < -64 || config->key_frame_chroma_qindex_offset > 63) {
396
0
        SVT_ERROR(
397
0
            "Invalid key_frame_chroma_qindex_offset. key_frame_chroma_qindex_offset "
398
0
            "must be [-64 - 63]\n");
399
0
        return_error = EB_ErrorBadParameter;
400
0
    }
401
485
    if (config->luma_y_dc_qindex_offset < -64 || config->luma_y_dc_qindex_offset > 63) {
402
0
        SVT_ERROR(
403
0
            "Invalid luma_y_dc_qindex_offset. luma_y_dc_qindex_offset "
404
0
            "must be [-64 - 63]\n");
405
0
        return_error = EB_ErrorBadParameter;
406
0
    }
407
485
    if (config->chroma_u_dc_qindex_offset < -64 || config->chroma_u_dc_qindex_offset > 63) {
408
0
        SVT_ERROR(
409
0
            "Invalid chroma_u_dc_qindex_offset. chroma_u_dc_qindex_offset "
410
0
            "must be [-64 - 63]\n");
411
0
        return_error = EB_ErrorBadParameter;
412
0
    }
413
485
    if (config->chroma_u_ac_qindex_offset < -64 || config->chroma_u_ac_qindex_offset > 63) {
414
0
        SVT_ERROR(
415
0
            "Invalid chroma_u_ac_qindex_offset. chroma_u_ac_qindex_offset "
416
0
            "must be [-64 - 63]\n");
417
0
        return_error = EB_ErrorBadParameter;
418
0
    }
419
485
    if (config->chroma_v_dc_qindex_offset < -64 || config->chroma_v_dc_qindex_offset > 63) {
420
0
        SVT_ERROR(
421
0
            "Invalid chroma_v_dc_qindex_offset. chroma_v_dc_qindex_offset "
422
0
            "must be [-64 - 63]\n");
423
0
        return_error = EB_ErrorBadParameter;
424
0
    }
425
485
    if (config->chroma_v_ac_qindex_offset < -64 || config->chroma_v_ac_qindex_offset > 63) {
426
0
        SVT_ERROR(
427
0
            "Invalid chroma_v_ac_qindex_offset. chroma_v_ac_qindex_offset "
428
0
            "must be [-64 - 63]\n");
429
0
        return_error = EB_ErrorBadParameter;
430
0
    }
431
432
485
    if (config->startup_qp_offset < -63 || config->startup_qp_offset > 63) {
433
0
        SVT_ERROR("Invalid startup_qp_offset. startup_qp_offset must be [-63 - 63]\n");
434
0
        return_error = EB_ErrorBadParameter;
435
0
    }
436
485
    if (config->stat_report == 1) {
437
0
        SVT_WARN("Enabling StatReport can decrease encoding speed\n");
438
0
    }
439
440
485
    if (config->stat_report > 1) {
441
0
        SVT_ERROR("Invalid StatReport. StatReport must be [0 - 1]\n");
442
0
        return_error = EB_ErrorBadParameter;
443
0
    }
444
485
    if (config->screen_content_mode > 3) {
445
0
        SVT_ERROR("Invalid screen_content_mode. screen_content_mode must be [0 - 3]\n");
446
0
        return_error = EB_ErrorBadParameter;
447
0
    }
448
449
485
    if (scs->static_config.aq_mode > 2) {
450
0
        SVT_ERROR("Invalid adaptive quantization (AQ) mode. AQ mode must be [0-2]\n");
451
0
        return_error = EB_ErrorBadParameter;
452
0
    }
453
454
485
    if ((SVT_EFFECTIVE_BIT_DEPTH(config->encoder_bit_depth) != 8) &&
455
0
        (SVT_EFFECTIVE_BIT_DEPTH(config->encoder_bit_depth) != 10)) {
456
0
        SVT_ERROR("Encoder Bit Depth shall be only 8 or 10 \n");
457
0
        return_error = EB_ErrorBadParameter;
458
0
    }
459
    // Check if the EncoderBitDepth is conformant with the Profile constraint
460
485
    if ((config->profile == 0 || config->profile == 1) && SVT_EFFECTIVE_BIT_DEPTH(config->encoder_bit_depth) > 10) {
461
0
        SVT_ERROR("The encoder bit depth shall be equal to 8 or 10 for Main/High Profile\n");
462
0
        return_error = EB_ErrorBadParameter;
463
0
    }
464
465
485
    if (config->encoder_color_format != EB_YUV420) {
466
0
        SVT_ERROR("Only support 420 now \n");
467
0
        return_error = EB_ErrorBadParameter;
468
0
    }
469
470
485
    if (config->profile == 0 && config->encoder_color_format > EB_YUV420) {
471
0
        SVT_ERROR("Non 420 color format requires profile 1 or 2\n");
472
0
        return_error = EB_ErrorBadParameter;
473
0
    }
474
475
485
    if (config->profile == 1 && config->encoder_color_format != EB_YUV444) {
476
0
        SVT_ERROR("Profile 1 requires 4:4:4 color format\n");
477
0
        return_error = EB_ErrorBadParameter;
478
0
    }
479
480
485
    if (config->profile == 2 && SVT_EFFECTIVE_BIT_DEPTH(config->encoder_bit_depth) <= 10 &&
481
0
        config->encoder_color_format != EB_YUV422) {
482
0
        SVT_ERROR("Profile 2 bit-depth < 10 requires 4:2:2 color format\n");
483
0
        return_error = EB_ErrorBadParameter;
484
0
    }
485
486
485
    if (config->use_cpu_flags & EB_CPU_FLAGS_INVALID) {
487
#ifdef ARCH_AARCH64
488
        SVT_ERROR(
489
            "param '--asm' have invalid value.\n"
490
            "Value should be [0 - 6] or [c, neon, crc32, neon_dotprod, neon_i8mm, sve, sve2, max]\n");
491
#else
492
0
        SVT_ERROR(
493
0
            "param '--asm' have invalid value.\n"
494
0
            "Value should be [0 - 11] or [c, mmx, sse, sse2, sse3, ssse3, sse4_1, sse4_2, avx, "
495
0
            "avx2, avx512, avx512icl, max]\n");
496
0
#endif
497
0
        return_error = EB_ErrorBadParameter;
498
0
    }
499
500
    // HBD mode decision
501
485
    if (scs->enable_hbd_mode_decision < (int8_t)(-1) || scs->enable_hbd_mode_decision > 2) {
502
0
        SVT_ERROR("Invalid HBD mode decision flag [-1 - 2], your input: %d\n", scs->enable_hbd_mode_decision);
503
0
        return_error = EB_ErrorBadParameter;
504
0
    }
505
506
    // CDEF
507
485
    if (config->cdef_level > 10 || config->cdef_level < -1) {
508
0
        SVT_ERROR("Invalid CDEF level [0 - 10, -1 for auto], your input: %d\n", config->cdef_level);
509
0
        return_error = EB_ErrorBadParameter;
510
0
    }
511
512
    // Restoration Filtering
513
485
    if (config->enable_restoration_filtering != 0 && config->enable_restoration_filtering != 1 &&
514
485
        config->enable_restoration_filtering != -1) {
515
0
        SVT_ERROR("Invalid restoration flag [0 - 1, -1 for auto], your input: %d\n",
516
0
                  config->enable_restoration_filtering);
517
0
        return_error = EB_ErrorBadParameter;
518
0
    }
519
520
485
    if (config->enable_mfmv != 0 && config->enable_mfmv != 1 && config->enable_mfmv != -1) {
521
0
        SVT_ERROR(
522
0
            "Invalid motion field motion vector flag [0/1 or -1 for auto], your "
523
0
            "input: %d\n",
524
0
            config->enable_mfmv);
525
0
        return_error = EB_ErrorBadParameter;
526
0
    }
527
485
    if (config->fast_decode > 2) {
528
0
        SVT_ERROR(
529
0
            "Invalid fast decode flag [0 - 2, 0 for no decoder-targeted optimization], your "
530
0
            "input: %d\n",
531
0
            config->fast_decode);
532
0
        return_error = EB_ErrorBadParameter;
533
0
    }
534
485
    if (config->tune > TUNE_VMAF) {
535
0
        SVT_ERROR(
536
0
            "Invalid tune flag [0 - 5, 0 for VQ, 1 for PSNR, 2 for SSIM, 3 for IQ, 4 for MS_SSIM, and 5 for VMAF], "
537
0
            "your input: "
538
0
            "%d\n",
539
0
            config->tune);
540
0
        return_error = EB_ErrorBadParameter;
541
0
    }
542
    // RC: SSIM, IQ, MS_SSIM, VMAF -> CRF only (VBR, CBR not supported)
543
485
    if (config->tune == TUNE_SSIM || config->tune == TUNE_IQ || config->tune == TUNE_MS_SSIM ||
544
485
        config->tune == TUNE_VMAF) {
545
0
        if (config->rate_control_mode != 0) {
546
0
            SVT_ERROR("Tune %s only supports CRF rate control mode\n",
547
0
                      config->tune == TUNE_SSIM       ? "SSIM"
548
0
                          : config->tune == TUNE_IQ   ? "IQ"
549
0
                          : config->tune == TUNE_VMAF ? "VMAF"
550
0
                                                      : "MS_SSIM");
551
0
            return_error = EB_ErrorBadParameter;
552
0
        }
553
0
    }
554
555
    // pred_struct: SSIM, MS_SSIM -> ALL_INTRA and RA only (LOW_DELAY not supported)
556
485
    if (config->tune == TUNE_SSIM || config->tune == TUNE_MS_SSIM) {
557
0
        if (config->pred_structure == LOW_DELAY) {
558
0
            SVT_ERROR("Tune %s only supports all-intra and random access prediction structures\n",
559
0
                      config->tune == TUNE_SSIM ? "SSIM" : "MS_SSIM");
560
0
            return_error = EB_ErrorBadParameter;
561
0
        }
562
0
    }
563
564
    // pred_struct: VMAF -> RA only (ALL_INTRA and LOW_DELAY not supported)
565
485
    if (config->tune == TUNE_VMAF && (config->pred_structure == ALL_INTRA || config->pred_structure == LOW_DELAY)) {
566
0
        SVT_ERROR("Tune VMAF only supports random access prediction structure\n");
567
0
        return_error = EB_ErrorBadParameter;
568
0
    }
569
570
    // pred_struct: IQ -> ALL_INTRA and LOW_DELAY only (RA not supported); LOW_DELAY is experimental
571
485
    if (config->tune == TUNE_IQ && config->pred_structure == RANDOM_ACCESS) {
572
0
        SVT_ERROR("Tune IQ only supports all-intra and low delay (experimental) prediction structures\n");
573
0
        return_error = EB_ErrorBadParameter;
574
0
    }
575
485
    if (config->tune == TUNE_IQ && config->pred_structure == LOW_DELAY) {
576
0
        SVT_WARN("Tune IQ with low delay prediction structure is experimental\n");
577
0
    }
578
579
485
    if (config->superres_mode > SUPERRES_AUTO) {
580
0
        SVT_ERROR("invalid superres-mode %d, should be in the range [%d - %d]\n",
581
0
                  config->superres_mode,
582
0
                  SUPERRES_NONE,
583
0
                  SUPERRES_AUTO);
584
0
        return_error = EB_ErrorBadParameter;
585
0
    }
586
485
    if (config->superres_mode > 0 && ((config->rc_stats_buffer.sz || config->pass == ENC_FIRST_PASS))) {
587
0
        SVT_ERROR("superres is not supported for 2-pass\n");
588
0
        return_error = EB_ErrorBadParameter;
589
0
    }
590
591
485
    if (config->superres_qthres > MAX_QP_VALUE) {
592
0
        SVT_ERROR("Invalid superres-qthres %d, should be in the range [%d - %d]\n",
593
0
                  config->superres_qthres,
594
0
                  MIN_QP_VALUE,
595
0
                  MAX_QP_VALUE);
596
0
        return_error = EB_ErrorBadParameter;
597
0
    }
598
599
485
    if (config->superres_kf_qthres > MAX_QP_VALUE) {
600
0
        SVT_ERROR("Invalid superres-kf-qthres %d, should be in the range [%d - %d]\n",
601
0
                  config->superres_kf_qthres,
602
0
                  MIN_QP_VALUE,
603
0
                  MAX_QP_VALUE);
604
0
        return_error = EB_ErrorBadParameter;
605
0
    }
606
607
485
    if (config->superres_kf_denom < MIN_SUPERRES_DENOM || config->superres_kf_denom > MAX_SUPERRES_DENOM) {
608
0
        SVT_ERROR("Invalid superres-kf-denom %d, should be in the range [%d - %d]\n",
609
0
                  config->superres_kf_denom,
610
0
                  MIN_SUPERRES_DENOM,
611
0
                  MAX_SUPERRES_DENOM);
612
0
        return_error = EB_ErrorBadParameter;
613
0
    }
614
615
485
    if (config->superres_denom < MIN_SUPERRES_DENOM || config->superres_denom > MAX_SUPERRES_DENOM) {
616
0
        SVT_ERROR("Invalid superres-denom %d, should be in the range [%d - %d]\n",
617
0
                  config->superres_denom,
618
0
                  MIN_SUPERRES_DENOM,
619
0
                  MAX_SUPERRES_DENOM);
620
0
        return_error = EB_ErrorBadParameter;
621
0
    }
622
623
485
    if (config->resize_mode > RESIZE_RANDOM_ACCESS) {
624
0
        SVT_ERROR("Invalid resize-mode %d, should be in the range [%d - %d]\n",
625
0
                  config->resize_mode,
626
0
                  RESIZE_NONE,
627
0
                  RESIZE_RANDOM_ACCESS);
628
0
        return_error = EB_ErrorBadParameter;
629
0
    }
630
631
485
    if (config->resize_kf_denom < MIN_RESIZE_DENOM || config->resize_kf_denom > MAX_RESIZE_DENOM) {
632
0
        SVT_ERROR("Invalid resize-kf-denom %d, should be in the range [%d - %d]\n",
633
0
                  config->resize_kf_denom,
634
0
                  MIN_RESIZE_DENOM,
635
0
                  MAX_RESIZE_DENOM);
636
0
        return_error = EB_ErrorBadParameter;
637
0
    }
638
639
485
    if (config->resize_denom < MIN_RESIZE_DENOM || config->resize_denom > MAX_RESIZE_DENOM) {
640
0
        SVT_ERROR("Invalid resize-denom %d, should be in the range [%d - %d]\n",
641
0
                  config->resize_denom,
642
0
                  MIN_RESIZE_DENOM,
643
0
                  MAX_RESIZE_DENOM);
644
0
        return_error = EB_ErrorBadParameter;
645
0
    }
646
647
485
    if (config->matrix_coefficients == 0 && config->encoder_color_format != EB_YUV444) {
648
0
        SVT_ERROR(
649
0
            "Identity matrix (matrix_coefficient = 0) may be used only with 4:4:4 "
650
0
            "color format.\n");
651
0
        return_error = EB_ErrorBadParameter;
652
0
    }
653
654
485
    if (config->rate_control_mode == SVT_AV1_RC_MODE_VBR && config->intra_period_length == -1) {
655
0
        SVT_ERROR(
656
0
            "keyint = -1 is not supported for modes other than CRF rate control "
657
0
            "encoding modes.\n");
658
0
        return_error = EB_ErrorBadParameter;
659
0
    }
660
    // Block the use of M4 or lower for resolutions higher than 4K, unless allintra coding is used (due to memory constraints)
661
485
    if (!scs->allintra && (uint64_t)(scs->max_input_luma_width * scs->max_input_luma_height) > INPUT_SIZE_4K_TH &&
662
0
        config->enc_mode <= ENC_M4) {
663
0
        SVT_ERROR("8k+ resolution support is limited to M5 and faster presets.\n");
664
0
        return_error = EB_ErrorBadParameter;
665
0
    }
666
485
    if (config->pass > 0 && scs->static_config.enable_overlays) {
667
0
        SVT_ERROR(
668
0
            "The overlay frames feature is currently not supported with multi-pass "
669
0
            "encoding\n");
670
0
        return_error = EB_ErrorBadParameter;
671
0
    }
672
485
    int pass = config->pass;
673
674
485
    if (pass < 0 || pass > 2) {
675
0
        SVT_ERROR("%d pass encode is not supported. --pass has a range of [0-2]\n", pass);
676
0
        return_error = EB_ErrorBadParameter;
677
0
    }
678
679
485
    if (config->intra_refresh_type != 2 && pass > 0) {
680
0
        SVT_ERROR("Multi-pass encode only supports closed-gop configurations.\n");
681
0
        return_error = EB_ErrorBadParameter;
682
0
    }
683
485
    if (config->pass > 1 && config->rate_control_mode == SVT_AV1_RC_MODE_CQP_OR_CRF) {
684
0
        SVT_ERROR("CRF does not support multi-pass. Use single pass.\n");
685
0
        return_error = EB_ErrorBadParameter;
686
0
    }
687
688
485
    if (config->aq_mode == 0 && config->rate_control_mode) {
689
0
        SVT_ERROR("Adaptive quantization can not be turned OFF when RC ON\n");
690
0
        return_error = EB_ErrorBadParameter;
691
0
    }
692
693
485
    if (config->sframe_dist < 0) {
694
0
        SVT_ERROR("Switch frame interval must be >= 0\n");
695
0
        return_error = EB_ErrorBadParameter;
696
0
    }
697
485
    if (config->sframe_dist > 0 && config->hierarchical_levels == 0) {
698
0
        SVT_ERROR("Switch frame feature does not support flat IPPP\n");
699
0
        return_error = EB_ErrorBadParameter;
700
0
    }
701
485
    if (config->sframe_dist > 0 &&
702
0
        (config->sframe_mode < SFRAME_STRICT_BASE || config->sframe_mode > SFRAME_DEC_POSI_BASE)) {
703
0
        SVT_ERROR("Invalid switch frame mode %d, should be in the range [%d - %d]\n",
704
0
                  config->sframe_mode,
705
0
                  SFRAME_STRICT_BASE,
706
0
                  SFRAME_DEC_POSI_BASE);
707
0
        return_error = EB_ErrorBadParameter;
708
0
    }
709
485
    if (config->sframe_posi.sframe_posis && !IS_SFRAME_FLEXIBLE_INSERT(config->sframe_mode)) {
710
0
        SVT_ERROR("S-Frame positions are only supported in S-Frame Flexible ARF mode\n");
711
0
        return_error = EB_ErrorBadParameter;
712
0
    }
713
485
    if (config->sframe_posi.sframe_qp_num && config->rate_control_mode != SVT_AV1_RC_MODE_CQP_OR_CRF) {
714
0
        SVT_ERROR("S-Frame QP feature only supports CRF/CQP rate control mode\n");
715
0
        return_error = EB_ErrorBadParameter;
716
0
    }
717
485
    if ((config->sframe_posi.sframe_qps && config->sframe_posi.sframe_qp_offsets) ||
718
485
        (config->sframe_qp > 0 && config->sframe_qp_offset != 0)) {
719
0
        SVT_ERROR("S-Frame QP feature cannot support QP value and QP offset at same time\n");
720
0
        return_error = EB_ErrorBadParameter;
721
0
    }
722
723
    /* Warnings about the use of features that are incomplete */
724
485
    if (config->aq_mode == 1) {
725
0
        SVT_WARN(
726
0
            "The adaptive quantization mode using segmentation is at a support level "
727
0
            "only to be available for demos, experimentation, and further development uses and "
728
0
            "should not be used for benchmarking until fully implemented.\n");
729
0
    }
730
731
    // color description
732
485
    if (config->color_primaries == 0 || config->color_primaries == 3 ||
733
485
        (config->color_primaries >= 13 && config->color_primaries <= 21) || config->color_primaries > 22) {
734
0
        SVT_WARN("Value %u for color_primaries is reserved and not recommended for usage.\n", config->color_primaries);
735
0
    }
736
485
    if (config->transfer_characteristics == 0 || config->transfer_characteristics == 3 ||
737
485
        config->transfer_characteristics > 18) {
738
0
        SVT_WARN("Value %u for transfer_characteristics is reserved and not recommended for usage.\n",
739
0
                 config->transfer_characteristics);
740
0
    }
741
742
485
    if (config->matrix_coefficients == 3 || config->matrix_coefficients > 14) {
743
0
        SVT_WARN("Value %u for matrix_coefficients is reserved and not recommended for usage.\n",
744
0
                 config->matrix_coefficients);
745
0
    }
746
747
485
    if (config->chroma_sample_position < EB_CSP_UNKNOWN || config->chroma_sample_position > EB_CSP_COLOCATED) {
748
0
        if (config->chroma_sample_position != EB_CSP_RESERVED) {
749
0
            SVT_ERROR("Chroma sample position %d is unknown.\n", config->chroma_sample_position);
750
0
            return_error = EB_ErrorBadParameter;
751
0
        } else {
752
0
            SVT_WARN(
753
0
                "Value %d for chroma_sample_position is reserved "
754
0
                "and not recommended for usage.\n",
755
0
                config->chroma_sample_position);
756
0
        }
757
0
    }
758
759
485
    if (config->film_grain_denoise_strength > 0 && config->enc_mode > 6) {
760
0
        SVT_WARN(
761
0
            "It is recommended to not use Film Grain for presets greater than 6 as it "
762
0
            "produces a significant compute overhead. This combination should only be used for "
763
0
            "debug purposes.\n");
764
0
    }
765
766
485
    if (config->film_grain_denoise_strength > 50) {
767
0
        SVT_ERROR(
768
0
            "Film grain denoise strength is only supported for values between "
769
0
            "[0,50]\n");
770
0
        return_error = EB_ErrorBadParameter;
771
0
    }
772
773
485
    if (config->film_grain_denoise_apply != 0 && config->film_grain_denoise_apply != 1) {
774
0
        SVT_ERROR("The film grain denoise apply signal can only have a value of 0 or 1\n");
775
0
        return_error = EB_ErrorBadParameter;
776
0
    }
777
778
    // Limit 8K & 16K support
779
485
    if ((uint64_t)(scs->max_input_luma_width * scs->max_input_luma_height) > INPUT_SIZE_4K_TH) {
780
0
        SVT_WARN(
781
0
            "8K and higher resolution support is currently a work-in-progress "
782
0
            "project, and is only available for demos, experimentation, and further development "
783
0
            "uses and should not be used for benchmarking until fully implemented.\n");
784
0
    }
785
786
485
    if (config->pred_structure == LOW_DELAY) {
787
0
        if (config->tune == TUNE_VQ) {
788
0
            SVT_WARN("Tune 0 is not applicable for low-delay, tune will be forced to 1.\n");
789
0
            config->tune = TUNE_PSNR;
790
0
        }
791
792
0
        if (config->superres_mode != 0) {
793
0
            SVT_ERROR("Superres is not supported for low-delay.\n");
794
0
            return_error = EB_ErrorBadParameter;
795
0
        }
796
797
0
        if (config->enable_overlays) {
798
0
            SVT_ERROR("Overlay is not supported for low-delay.\n");
799
0
            return_error = EB_ErrorBadParameter;
800
0
        }
801
0
    }
802
803
485
    if (!config->rtc && config->enc_mode >= ENC_M10) {
804
0
        SVT_WARN("Non-RTC M10+ are meant for automation tooling usage. Visual artifacts may occur otherwise.\n");
805
0
    }
806
807
485
    if (scs->static_config.scene_change_detection) {
808
0
        scs->static_config.scene_change_detection = 0;
809
0
        SVT_WARN(
810
0
            "SVT-AV1 has an integrated mode decision mechanism to handle scene changes and will "
811
0
            "not insert a key frame at scene changes\n");
812
0
    }
813
485
    if ((config->tile_columns > 0 || config->tile_rows > 0)) {
814
485
        SVT_WARN(
815
485
            "If you are using tiles with the intent of increasing the decoder speed, please also "
816
485
            "consider using --fast-decode 1 or 2, especially if the intended decoder is running with "
817
485
            "limited multi-threading capabilities.\n");
818
485
    }
819
485
    if (config->tune == TUNE_VQ && config->fast_decode > 0) {
820
0
        SVT_WARN(
821
0
            "--fast-decode has been developed and optimized with --tune 1. "
822
0
            "Please use it with caution when encoding with --tune 0. You can also consider using "
823
0
            "--tile-columns 1 if you are targeting a high quality encode and a multi-core "
824
0
            "high-performance decoder HW\n");
825
0
    }
826
485
    if (config->enable_qm && config->min_qm_level > config->max_qm_level) {
827
0
        SVT_ERROR("Min quant matrix level must not greater than max quant matrix level\n");
828
0
        return_error = EB_ErrorBadParameter;
829
0
    }
830
485
    if (config->enable_qm && config->min_chroma_qm_level > config->max_chroma_qm_level) {
831
0
        SVT_ERROR("Min chroma quant matrix level must not greater than max chroma quant matrix level\n");
832
0
        return_error = EB_ErrorBadParameter;
833
0
    }
834
485
    if (config->startup_mg_size != 0 && config->startup_mg_size != 2 && config->startup_mg_size != 3 &&
835
0
        config->startup_mg_size != 4) {
836
0
        SVT_ERROR("Startup MG size supported [0, 2, 3, 4]\n");
837
0
        return_error = EB_ErrorBadParameter;
838
0
    }
839
485
    if (config->startup_mg_size > config->hierarchical_levels) {
840
0
        SVT_ERROR("Startup MG size must less than or equal to hierarchical levels\n");
841
0
        return_error = EB_ErrorBadParameter;
842
0
    }
843
485
    if (config->startup_mg_size != 0 && config->rate_control_mode != SVT_AV1_RC_MODE_CQP_OR_CRF) {
844
0
        SVT_ERROR("Startup MG size feature only supports CRF/CQP rate control mode\n");
845
0
        return_error = EB_ErrorBadParameter;
846
0
    }
847
485
    if (config->startup_qp_offset != 0 && config->rate_control_mode != 0) {
848
0
        SVT_ERROR("Startup QP offset only supports CRF/CQP rate control mode\n");
849
0
        return_error = EB_ErrorBadParameter;
850
0
    }
851
852
485
    if (config->variance_boost_strength < 1 || config->variance_boost_strength > 4) {
853
0
        SVT_ERROR("Variance Boost strength must be between 1 and 4\n");
854
0
        return_error = EB_ErrorBadParameter;
855
0
    }
856
857
485
    if (config->variance_octile < 1 || config->variance_octile > 8) {
858
0
        SVT_ERROR("Variance Boost octile must be between 1 and 8\n");
859
0
        return_error = EB_ErrorBadParameter;
860
0
    }
861
862
485
    if (config->tf_strength > 4) {
863
0
        SVT_ERROR("Temporal filtering strength must be between 0 and 4\n");
864
0
        return_error = EB_ErrorBadParameter;
865
0
    }
866
867
485
    if (config->variance_boost_curve > 2) {
868
0
        SVT_ERROR("Variance Boost curve must be between 0 and 2\n");
869
0
        return_error = EB_ErrorBadParameter;
870
0
    }
871
872
485
    if (config->luminance_qp_bias > 100) {
873
0
        SVT_ERROR("Luminance-based QP bias value must be between 0 and 100\n");
874
0
        return_error = EB_ErrorBadParameter;
875
0
    }
876
877
485
    if (config->sharpness > 7 || config->sharpness < -7) {
878
0
        SVT_ERROR("Sharpness level must be between -7 and 7\n");
879
0
        return_error = EB_ErrorBadParameter;
880
0
    }
881
882
485
    if (config->qp_scale_compress_strength > 3) {
883
0
        SVT_ERROR("QP scale compress strength must be between 0 and 3\n");
884
0
        return_error = EB_ErrorBadParameter;
885
0
    }
886
887
485
    if (config->max_tx_size != 32 && config->max_tx_size != 64) {
888
0
        SVT_ERROR("Supported Max TX size values are 32 and 64\n");
889
0
        return_error = EB_ErrorBadParameter;
890
0
    }
891
892
485
    if (config->ac_bias > 8.0 || config->ac_bias < 0.0) {
893
0
        SVT_ERROR("AC bias strength must be between 0.0 and 8.0\n");
894
0
        return_error = EB_ErrorBadParameter;
895
0
    }
896
897
    //User configurable High Bit Depth Mode Decision Setting
898
485
    if (config->hbd_mds < -1 || config->hbd_mds > 2) {
899
0
        SVT_ERROR("hbd-mds must be -1 (preset default), 0, 1, or 2\n");
900
0
        return_error = EB_ErrorBadParameter;
901
0
    }
902
903
485
    if (SVT_EFFECTIVE_BIT_DEPTH(config->encoder_bit_depth) == 8 && (config->hbd_mds == 1 || config->hbd_mds == 2)) {
904
0
        SVT_WARN("Please use 10-bit encoding if you want to take advantage of hbd-mds 1 and 2.\n");
905
0
        SVT_ERROR("Full high bit depth and hybrid 8/10 mode decision are not supported when encoder bit depth is 8\n");
906
0
        return_error = EB_ErrorBadParameter;
907
0
    }
908
909
485
    return return_error;
910
485
}
911
912
/**********************************
913
Set Default Library Params
914
**********************************/
915
485
EbErrorType svt_av1_set_default_params(EbSvtAv1EncConfiguration* config_ptr) {
916
485
    EbErrorType return_error = EB_ErrorNone;
917
918
485
    if (!config_ptr) {
919
0
        SVT_ERROR("The EbSvtAv1EncConfiguration structure is empty!\n");
920
0
        return EB_ErrorBadParameter;
921
0
    }
922
485
    config_ptr->frame_rate_numerator     = 60000;
923
485
    config_ptr->frame_rate_denominator   = 1000;
924
485
    config_ptr->encoder_bit_depth        = 8;
925
485
    config_ptr->source_width             = 0;
926
485
    config_ptr->source_height            = 0;
927
485
    config_ptr->forced_max_frame_width   = 0;
928
485
    config_ptr->forced_max_frame_height  = 0;
929
485
    config_ptr->stat_report              = 0;
930
485
    config_ptr->tile_rows                = DEFAULT;
931
485
    config_ptr->tile_columns             = DEFAULT;
932
485
    config_ptr->qp                       = DEFAULT_QP;
933
485
    config_ptr->use_qp_file              = false;
934
485
    config_ptr->use_fixed_qindex_offsets = 0;
935
485
    memset(config_ptr->qindex_offsets, 0, sizeof(config_ptr->qindex_offsets));
936
485
    config_ptr->key_frame_chroma_qindex_offset = 0;
937
485
    config_ptr->key_frame_qindex_offset        = 0;
938
485
    memset(config_ptr->chroma_qindex_offsets, 0, sizeof(config_ptr->chroma_qindex_offsets));
939
485
    config_ptr->luma_y_dc_qindex_offset   = 0;
940
485
    config_ptr->chroma_u_dc_qindex_offset = 0;
941
485
    config_ptr->chroma_u_ac_qindex_offset = 0;
942
485
    config_ptr->chroma_v_dc_qindex_offset = 0;
943
485
    config_ptr->chroma_v_ac_qindex_offset = 0;
944
945
3.88k
    for (int i = 0; i < SVT_AV1_FRAME_UPDATE_TYPES; i++) {
946
3.39k
        config_ptr->lambda_scale_factors[i] = 128;
947
3.39k
    }
948
949
485
    config_ptr->scene_change_detection       = 0;
950
485
    config_ptr->rate_control_mode            = SVT_AV1_RC_MODE_CQP_OR_CRF;
951
485
    config_ptr->look_ahead_distance          = (uint32_t)~0;
952
485
    config_ptr->target_bit_rate              = DEFAULT_TBR;
953
485
    config_ptr->max_bit_rate                 = 0;
954
485
    config_ptr->max_qp_allowed               = 63;
955
485
    config_ptr->min_qp_allowed               = MIN_QP_AUTO;
956
485
    config_ptr->aq_mode                      = 2;
957
485
    config_ptr->enc_mode                     = ENC_M8;
958
485
    config_ptr->intra_period_length          = -2;
959
485
    config_ptr->multiply_keyint              = false;
960
485
    config_ptr->intra_refresh_type           = 2;
961
485
    config_ptr->hierarchical_levels          = HIERARCHICAL_LEVELS_AUTO;
962
485
    config_ptr->pred_structure               = RANDOM_ACCESS;
963
485
    config_ptr->enable_dlf_flag              = 1;
964
485
    config_ptr->cdef_level                   = DEFAULT;
965
485
    config_ptr->enable_restoration_filtering = DEFAULT;
966
485
    config_ptr->enable_mfmv                  = DEFAULT;
967
485
    config_ptr->enable_dg                    = 1;
968
485
    config_ptr->fast_decode                  = 0;
969
485
    config_ptr->encoder_color_format         = EB_YUV420;
970
485
    config_ptr->rtc                          = 0;
971
    // Rate control options
972
    // Set the default value toward more flexible rate allocation
973
485
    config_ptr->vbr_min_section_pct      = 0;
974
485
    config_ptr->vbr_max_section_pct      = 2000;
975
485
    config_ptr->under_shoot_pct          = (uint32_t)DEFAULT;
976
485
    config_ptr->over_shoot_pct           = (uint32_t)DEFAULT;
977
485
    config_ptr->mbr_over_shoot_pct       = 50;
978
485
    config_ptr->max_intra_bitrate_pct    = 300;
979
485
    config_ptr->max_inter_bitrate_pct    = 0;
980
485
    config_ptr->gop_constraint_rc        = 0;
981
485
    config_ptr->maximum_buffer_size_ms   = 1000; // default settings for CBR
982
485
    config_ptr->starting_buffer_level_ms = 600; // default settings for CBR
983
485
    config_ptr->optimal_buffer_level_ms  = 600; // default settings for CBR
984
485
    config_ptr->recode_loop              = ALLOW_RECODE_DEFAULT;
985
485
    config_ptr->screen_content_mode      = 2;
986
485
    config_ptr->enable_intrabc           = true;
987
988
    // Annex A parameters
989
485
    config_ptr->profile = 0;
990
485
    config_ptr->tier    = 0;
991
485
    config_ptr->level   = 0;
992
993
    // Film grain denoising
994
485
    config_ptr->film_grain_denoise_strength = 0;
995
485
    config_ptr->film_grain_denoise_apply    = 0;
996
997
    // CPU Flags
998
485
    config_ptr->use_cpu_flags = EB_CPU_FLAGS_ALL;
999
1000
    // Channel info
1001
485
    config_ptr->level_of_parallelism = 0;
1002
1003
    // Debug info
1004
485
    config_ptr->recon_enabled = 0;
1005
1006
    // Alt-Ref default values
1007
485
    config_ptr->enable_tf       = 1;
1008
485
    config_ptr->enable_tf_key   = 1;
1009
485
    config_ptr->enable_overlays = false;
1010
485
    config_ptr->tune            = 1;
1011
    // Super-resolution default values
1012
485
    config_ptr->superres_mode      = SUPERRES_NONE;
1013
485
    config_ptr->superres_denom     = SCALE_NUMERATOR;
1014
485
    config_ptr->superres_kf_denom  = SCALE_NUMERATOR;
1015
485
    config_ptr->superres_qthres    = 43; // random threshold, change
1016
485
    config_ptr->superres_kf_qthres = 43; // random threshold, change
1017
1018
    // Reference Scaling default values
1019
485
    config_ptr->resize_mode     = RESIZE_NONE;
1020
485
    config_ptr->resize_denom    = SCALE_NUMERATOR;
1021
485
    config_ptr->resize_kf_denom = SCALE_NUMERATOR;
1022
1023
    // Color description default values
1024
485
    config_ptr->color_primaries          = 2;
1025
485
    config_ptr->transfer_characteristics = 2;
1026
485
    config_ptr->matrix_coefficients      = 2;
1027
485
    config_ptr->color_range              = EB_CR_STUDIO_RANGE;
1028
485
    config_ptr->chroma_sample_position   = EB_CSP_UNKNOWN;
1029
485
    config_ptr->pass                     = 0;
1030
485
    memset(&config_ptr->mastering_display, 0, sizeof(config_ptr->mastering_display));
1031
485
    memset(&config_ptr->content_light_level, 0, sizeof(config_ptr->content_light_level));
1032
1033
    // Switch frame default values
1034
485
    config_ptr->sframe_dist      = 0;
1035
485
    config_ptr->sframe_mode      = SFRAME_NEAREST_BASE;
1036
485
    config_ptr->force_key_frames = 0;
1037
1038
    // Quant Matrices (QM)
1039
485
    config_ptr->enable_qm           = 0;
1040
485
    config_ptr->min_qm_level        = 8;
1041
485
    config_ptr->max_qm_level        = 15;
1042
485
    config_ptr->min_chroma_qm_level = 8;
1043
485
    config_ptr->max_chroma_qm_level = 15;
1044
1045
485
    config_ptr->startup_mg_size                   = 0;
1046
485
    config_ptr->startup_qp_offset                 = 0;
1047
485
    config_ptr->frame_scale_evts.evt_num          = 0;
1048
485
    config_ptr->frame_scale_evts.resize_denoms    = NULL;
1049
485
    config_ptr->frame_scale_evts.resize_kf_denoms = NULL;
1050
485
    config_ptr->frame_scale_evts.start_frame_nums = NULL;
1051
485
    config_ptr->enable_roi_map                    = false;
1052
485
    config_ptr->fgs_table                         = NULL;
1053
485
    config_ptr->enable_variance_boost             = false;
1054
485
    config_ptr->variance_boost_strength           = 2;
1055
485
    config_ptr->variance_octile                   = 5;
1056
485
    config_ptr->tf_strength                       = 3;
1057
485
    config_ptr->variance_boost_curve              = 0;
1058
485
    config_ptr->luminance_qp_bias                 = 0;
1059
485
    config_ptr->sharpness                         = 0;
1060
485
    config_ptr->lossless                          = false;
1061
485
    config_ptr->avif                              = false;
1062
485
    config_ptr->qp_scale_compress_strength        = 0;
1063
485
    config_ptr->sframe_posi.sframe_num            = 0;
1064
485
    config_ptr->sframe_posi.sframe_posis          = NULL;
1065
485
    config_ptr->sframe_posi.sframe_qp_num         = 0;
1066
485
    config_ptr->sframe_posi.sframe_qps            = NULL;
1067
485
    config_ptr->sframe_posi.sframe_qp_offsets     = NULL;
1068
485
    config_ptr->sframe_qp                         = 0;
1069
485
    config_ptr->sframe_qp_offset                  = 0;
1070
485
    config_ptr->adaptive_film_grain               = true;
1071
485
    config_ptr->max_tx_size                       = 64;
1072
485
    config_ptr->extended_crf_qindex_offset        = 0;
1073
485
    config_ptr->ac_bias                           = 0.0;
1074
485
    config_ptr->hbd_mds                           = DEFAULT;
1075
1076
    // Ref-frame management disabled by default → legacy bit-exact behavior
1077
    // and no extra ref-buffer memory allocated.
1078
485
    config_ptr->max_managed_refs = 0;
1079
1080
485
    return return_error;
1081
485
}
1082
1083
485
static const char* tier_to_str(unsigned in) {
1084
485
    if (!in) {
1085
485
        return "(auto)";
1086
485
    }
1087
0
    static char ret[11];
1088
0
    snprintf(ret, 11, "%u", in);
1089
0
    return ret;
1090
485
}
1091
1092
485
static const char* level_to_str(unsigned in) {
1093
485
    if (!in) {
1094
485
        return "(auto)";
1095
485
    }
1096
0
    static char ret[313];
1097
0
    snprintf(ret, 313, "%.1f", in / 10.0);
1098
0
    return ret;
1099
485
}
1100
1101
290
static double get_extended_crf(EbSvtAv1EncConfiguration* config_ptr) {
1102
290
    return (double)config_ptr->qp + (double)config_ptr->extended_crf_qindex_offset / 4;
1103
290
}
1104
1105
//#define DEBUG_BUFFERS
1106
485
void svt_av1_print_lib_params(SequenceControlSet* scs) {
1107
485
    EbSvtAv1EncConfiguration* config = &scs->static_config;
1108
1109
485
    SVT_INFO("-------------------------------------------\n");
1110
485
    if (config->pass == ENC_FIRST_PASS) {
1111
0
        SVT_INFO("SVT [config]: preset \t\t\t\t\t\t\t: Pass 1\n");
1112
485
    } else {
1113
485
        SVT_INFO("SVT [config]: %s\ttier %s\tlevel %s\n",
1114
485
                 config->profile == MAIN_PROFILE               ? "main profile"
1115
485
                     : config->profile == HIGH_PROFILE         ? "high profile"
1116
485
                     : config->profile == PROFESSIONAL_PROFILE ? "professional profile"
1117
485
                                                               : "Unknown profile",
1118
485
                 tier_to_str(config->tier),
1119
485
                 level_to_str(config->level));
1120
485
        SVT_INFO(
1121
485
            "SVT [config]: width / height / fps numerator / fps denominator \t\t: %d / %d / %d / "
1122
485
            "%d\n",
1123
485
            config->source_width,
1124
485
            config->source_height,
1125
485
            config->frame_rate_numerator,
1126
485
            config->frame_rate_denominator);
1127
485
        SVT_INFO(
1128
485
            "SVT [config]: bit-depth / color format \t\t\t\t\t: %d / "
1129
485
            "%s\n",
1130
485
            config->encoder_bit_depth,
1131
485
            config->encoder_color_format == EB_YUV400       ? "YUV400"
1132
485
                : config->encoder_color_format == EB_YUV420 ? "YUV420"
1133
485
                : config->encoder_color_format == EB_YUV422 ? "YUV422"
1134
485
                : config->encoder_color_format == EB_YUV444 ? "YUV444"
1135
485
                                                            : "Unknown color format");
1136
1137
485
        SVT_INFO("SVT [config]: preset / tune / pred struct \t\t\t\t\t: %d / %s / %s\n",
1138
485
                 config->enc_mode,
1139
485
                 config->tune == TUNE_VQ            ? "VQ"
1140
485
                     : config->tune == TUNE_PSNR    ? "PSNR"
1141
485
                     : config->tune == TUNE_SSIM    ? "SSIM"
1142
485
                     : config->tune == TUNE_MS_SSIM ? "MS_SSIM"
1143
485
                     : config->tune == TUNE_VMAF    ? "VMAF"
1144
485
                                                    : "IQ",
1145
485
                 config->pred_structure == LOW_DELAY           ? "low delay"
1146
485
                     : config->pred_structure == RANDOM_ACCESS ? "random access"
1147
485
                     : config->pred_structure == ALL_INTRA     ? "all intra"
1148
485
                                                               : "Unknown pred structure");
1149
485
        SVT_INFO(
1150
485
            "SVT [config]: gop size / mini-gop size / key-frame type \t\t\t: "
1151
485
            "%d / %d / %s\n",
1152
485
            config->intra_period_length + 1,
1153
485
            (1 << config->hierarchical_levels),
1154
485
            config->intra_refresh_type == SVT_AV1_FWDKF_REFRESH    ? "FWD key frame"
1155
485
                : config->intra_refresh_type == SVT_AV1_KF_REFRESH ? "key frame"
1156
485
                                                                   : "Unknown key frame type");
1157
485
        if (config->lossless) {
1158
195
            SVT_INFO("SVT [config]: BRC mode\t\t\t\t\t\t\t: Lossless Coding \n");
1159
290
        } else {
1160
290
            switch (config->rate_control_mode) {
1161
290
            case SVT_AV1_RC_MODE_CQP_OR_CRF:
1162
290
                if (config->max_bit_rate) {
1163
0
                    SVT_INFO(
1164
0
                        "SVT [config]: BRC mode / %s / max bitrate (kbps)\t\t\t: %s / %.2f / "
1165
0
                        "%d\n",
1166
0
                        scs->tpl || scs->static_config.enable_variance_boost ? "rate factor" : "CQP Assignment",
1167
0
                        scs->tpl || scs->static_config.enable_variance_boost ? "capped CRF" : "CQP",
1168
0
                        get_extended_crf(config),
1169
0
                        (int)config->max_bit_rate / 1000);
1170
290
                } else {
1171
290
                    SVT_INFO("SVT [config]: BRC mode / %s \t\t\t\t\t: %s / %.2f \n",
1172
290
                             scs->tpl || scs->static_config.enable_variance_boost ? "rate factor" : "CQP Assignment",
1173
290
                             scs->tpl || scs->static_config.enable_variance_boost ? "CRF" : "CQP",
1174
290
                             get_extended_crf(config));
1175
290
                }
1176
290
                break;
1177
0
            case SVT_AV1_RC_MODE_VBR:
1178
0
                SVT_INFO("SVT [config]: BRC mode / target bitrate (kbps)\t\t\t\t: VBR / %d \n",
1179
0
                         (int)config->target_bit_rate / 1000);
1180
0
                break;
1181
0
            case SVT_AV1_RC_MODE_CBR:
1182
0
                SVT_INFO(
1183
0
                    "SVT [config]: BRC mode / target bitrate (kbps)\t\t\t\t: CBR "
1184
0
                    "/ %d\n",
1185
0
                    (int)config->target_bit_rate / 1000);
1186
0
                break;
1187
290
            }
1188
290
        }
1189
485
        if (config->rate_control_mode != SVT_AV1_RC_MODE_CBR) {
1190
485
            if (!config->enable_variance_boost) {
1191
485
                SVT_INFO("SVT [config]: AQ mode / Variance Boost \t\t\t\t\t: %d / %d\n",
1192
485
                         config->aq_mode,
1193
485
                         config->enable_variance_boost);
1194
485
            } else {
1195
0
                SVT_INFO("SVT [config]: AQ mode / Variance Boost strength / octile / curve \t\t: %d / %d / %d / %d\n",
1196
0
                         config->aq_mode,
1197
0
                         config->variance_boost_strength,
1198
0
                         config->variance_octile,
1199
0
                         config->variance_boost_curve);
1200
0
            }
1201
485
        }
1202
1203
485
        if (config->film_grain_denoise_strength != 0) {
1204
0
            if (config->adaptive_film_grain) {
1205
0
                SVT_INFO(
1206
0
                    "SVT [config]: film grain synth / denoising / level / adaptive blocksize \t: %d / %d / %d / True\n",
1207
0
                    1,
1208
0
                    config->film_grain_denoise_apply,
1209
0
                    config->film_grain_denoise_strength);
1210
0
            } else {
1211
0
                SVT_INFO(
1212
0
                    "SVT [config]: film grain synth / denoising / level / adaptive blocksize \t: %d / %d / %d / "
1213
0
                    "False\n",
1214
0
                    1,
1215
0
                    config->film_grain_denoise_apply,
1216
0
                    config->film_grain_denoise_strength);
1217
0
            }
1218
0
        }
1219
485
        SVT_INFO("SVT [config]: sharpness / luminance-based QP bias \t\t\t\t: %d / %d\n",
1220
485
                 config->sharpness,
1221
485
                 config->luminance_qp_bias);
1222
1223
485
        switch (config->enable_tf) {
1224
0
        case 1:
1225
0
            if (config->tf_strength != 3) {
1226
0
                SVT_INFO("SVT [config]: temporal filtering strength \t\t\t\t\t: %d\n", config->tf_strength);
1227
0
            }
1228
0
            break;
1229
0
        case 2:
1230
0
            SVT_INFO("SVT [config]: temporal filtering strength \t\t\t\t\t: auto\n");
1231
0
            break;
1232
485
        default:
1233
485
            break;
1234
485
        }
1235
1236
485
        SVT_INFO("SVT [config]: QP scale compress strength \t\t\t\t\t: %d\n", config->qp_scale_compress_strength);
1237
1238
485
        if (config->ac_bias) {
1239
0
            SVT_INFO("SVT [config]: AC Bias Strength \t\t\t\t\t\t: %.2f\n", config->ac_bias);
1240
0
        }
1241
1242
485
        if (config->hbd_mds != DEFAULT) {
1243
0
            SVT_INFO("SVT [config]: High Bit Depth Mode Decision setting \t\t\t\t\t: %d\n", config->hbd_mds);
1244
0
        }
1245
485
    }
1246
#if DEBUG_BUFFERS
1247
    SVT_INFO("SVT [config]: INPUT / OUTPUT \t\t\t\t\t\t\t: %d / %d\n",
1248
             scs->input_buffer_fifo_init_count,
1249
             scs->output_stream_buffer_fifo_init_count);
1250
    SVT_INFO("SVT [config]: CPCS / PAREF / REF / ME\t\t\t\t\t\t: %d / %d / %d / %d\n",
1251
             scs->picture_control_set_pool_init_count_child,
1252
             scs->pa_reference_picture_buffer_init_count,
1253
             scs->reference_picture_buffer_init_count,
1254
             scs->me_pool_init_count);
1255
    SVT_INFO("SVT [config]: ME_SEG_W / ME_SEG_H \t\t\t: %u / %u\n",
1256
             scs->me_segment_col_count_array,
1257
             scs->me_segment_row_count_array);
1258
    SVT_INFO("SVT [config]: ENC_DEC_SEG_W / ENC_DEC_SEG_H \t\t\t: %u / %u\n",
1259
             scs->enc_dec_segment_col_count_array,
1260
             scs->enc_dec_segment_row_count_array);
1261
    SVT_INFO(
1262
        "SVT [config]: PA_P / ME_P / SBO_P / MDC_P / ED_P / EC_P \t\t\t: %d / %d / %d / %d / %d / "
1263
        "%d\n",
1264
        scs->picture_analysis_process_init_count,
1265
        scs->motion_estimation_process_init_count,
1266
        scs->source_based_operations_process_init_count,
1267
        scs->mode_decision_configuration_process_init_count,
1268
        scs->enc_dec_process_init_count,
1269
        scs->entropy_coding_process_init_count);
1270
    SVT_INFO("SVT [config]: DLF_P / CDEF_P / REST_P \t\t\t\t\t\t: %d / %d / %d\n",
1271
             scs->dlf_process_init_count,
1272
             scs->cdef_process_init_count,
1273
             scs->rest_process_init_count);
1274
#endif
1275
485
    SVT_INFO("-------------------------------------------\n");
1276
1277
485
    fflush(stdout);
1278
485
}
1279
1280
/**********************************
1281
* Parse Single Parameter
1282
**********************************/
1283
1284
0
static EbErrorType str_to_int64(const char* nptr, int64_t* out, char** nextptr) {
1285
0
    char*   endptr;
1286
0
    int64_t val;
1287
1288
0
    val = strtoll(nptr, &endptr, 0);
1289
1290
0
    if (endptr == nptr || (!nextptr && *endptr)) {
1291
0
        return EB_ErrorBadParameter;
1292
0
    }
1293
1294
0
    *out = val;
1295
0
    if (nextptr) {
1296
0
        *nextptr = endptr;
1297
0
    }
1298
0
    return EB_ErrorNone;
1299
0
}
1300
1301
0
static EbErrorType str_to_int(const char* nptr, int32_t* out, char** nextptr) {
1302
0
    char*   endptr;
1303
0
    int32_t val;
1304
1305
0
    val = strtol(nptr, &endptr, 0);
1306
1307
0
    if (endptr == nptr || (!nextptr && *endptr)) {
1308
0
        return EB_ErrorBadParameter;
1309
0
    }
1310
1311
0
    *out = val;
1312
0
    if (nextptr) {
1313
0
        *nextptr = endptr;
1314
0
    }
1315
0
    return EB_ErrorNone;
1316
0
}
1317
1318
0
static EbErrorType str_to_uint64(const char* nptr, uint64_t* out, char** nextptr) {
1319
0
    char*    endptr;
1320
0
    uint64_t val;
1321
1322
0
    if (strtoll(nptr, NULL, 0) < 0) {
1323
0
        return EB_ErrorBadParameter;
1324
0
    }
1325
1326
0
    val = strtoull(nptr, &endptr, 0);
1327
1328
0
    if (endptr == nptr || (!nextptr && *endptr)) {
1329
0
        return EB_ErrorBadParameter;
1330
0
    }
1331
1332
0
    *out = val;
1333
0
    if (nextptr) {
1334
0
        *nextptr = endptr;
1335
0
    }
1336
0
    return EB_ErrorNone;
1337
0
}
1338
1339
0
static EbErrorType str_to_uint(const char* nptr, uint32_t* out, char** nextptr) {
1340
0
    char*    endptr;
1341
0
    uint32_t val;
1342
1343
0
    if (strtol(nptr, NULL, 0) < 0) {
1344
0
        return EB_ErrorBadParameter;
1345
0
    }
1346
1347
0
    val = strtoul(nptr, &endptr, 0);
1348
1349
0
    if (endptr == nptr || (!nextptr && *endptr)) {
1350
0
        return EB_ErrorBadParameter;
1351
0
    }
1352
1353
0
    *out = val;
1354
0
    if (nextptr) {
1355
0
        *nextptr = endptr;
1356
0
    }
1357
0
    return EB_ErrorNone;
1358
0
}
1359
1360
0
static EbErrorType str_to_int8(const char* nptr, int8_t* out, char** nextptr) {
1361
0
    char*   endptr;
1362
0
    int32_t val;
1363
1364
0
    val = strtol(nptr, &endptr, 0);
1365
1366
0
    if (endptr == nptr || (!nextptr && *endptr)) {
1367
0
        return EB_ErrorBadParameter;
1368
0
    }
1369
1370
    // check for the range
1371
0
    if (val < INT8_MIN || val > INT8_MAX) {
1372
0
        return EB_ErrorBadParameter;
1373
0
    }
1374
1375
0
    *out = (int8_t)val;
1376
0
    if (nextptr) {
1377
0
        *nextptr = endptr;
1378
0
    }
1379
0
    return EB_ErrorNone;
1380
0
}
1381
1382
0
static EbErrorType str_to_uint8(const char* nptr, uint8_t* out, char** nextptr) {
1383
0
    char*    endptr;
1384
0
    uint32_t val;
1385
1386
0
    if (strtol(nptr, NULL, 0) < 0) {
1387
0
        return EB_ErrorBadParameter;
1388
0
    }
1389
1390
0
    val = strtoul(nptr, &endptr, 0);
1391
1392
0
    if (endptr == nptr || (!nextptr && *endptr)) {
1393
0
        return EB_ErrorBadParameter;
1394
0
    }
1395
1396
    // check for the range
1397
0
    if (val > UINT8_MAX) {
1398
0
        return EB_ErrorBadParameter;
1399
0
    }
1400
1401
0
    *out = (uint8_t)val;
1402
0
    if (nextptr) {
1403
0
        *nextptr = endptr;
1404
0
    }
1405
0
    return EB_ErrorNone;
1406
0
}
1407
1408
0
#define str_to_int32 str_to_int
1409
0
#define str_to_uint32 str_to_uint
1410
1411
0
static EbErrorType str_to_double(const char* nptr, double* out, char** nextptr) {
1412
0
    char*  endptr;
1413
0
    double val;
1414
1415
0
    val = strtod(nptr, &endptr);
1416
1417
0
    if (endptr == nptr || (!nextptr && *endptr)) {
1418
0
        return EB_ErrorBadParameter;
1419
0
    }
1420
1421
0
    *out = val;
1422
0
    if (nextptr) {
1423
0
        *nextptr = endptr;
1424
0
    }
1425
0
    return EB_ErrorNone;
1426
0
}
1427
1428
//assume the input list of values are in the format of "[v1,v2,v3,...]"
1429
#define PARSE_LIST(list_type)                                                                    \
1430
0
    static EbErrorType parse_list_##list_type(const char* nptr, list_type##_t* list, size_t n) { \
1431
0
        const char* ptr = nptr;                                                                  \
1432
0
        char*       endptr;                                                                      \
1433
0
        size_t      i = 0;                                                                       \
1434
0
        memset(list, 0, n * sizeof(*list));                                                      \
1435
0
        while (*ptr) {                                                                           \
1436
0
            if (*ptr == '[' || *ptr == ']') {                                                    \
1437
0
                ptr++;                                                                           \
1438
0
                continue;                                                                        \
1439
0
            }                                                                                    \
1440
0
            list_type##_t rawval;                                                                \
1441
0
            EbErrorType   err = str_to_##list_type(ptr, &rawval, &endptr);                       \
1442
0
            if (err != EB_ErrorNone)                                                             \
1443
0
                return err;                                                                      \
1444
0
            if (i >= n) {                                                                        \
1445
0
                return EB_ErrorBadParameter;                                                     \
1446
0
            } else if (*endptr == ',' || *endptr == ']') {                                       \
1447
0
                endptr++;                                                                        \
1448
0
            } else if (*endptr) {                                                                \
1449
0
                return EB_ErrorBadParameter;                                                     \
1450
0
            }                                                                                    \
1451
0
            list[i++] = rawval;                                                                  \
1452
0
            ptr       = endptr;                                                                  \
1453
0
        }                                                                                        \
1454
0
        return EB_ErrorNone;                                                                     \
1455
0
    }
Unexecuted instantiation: enc_settings.c:parse_list_int32
Unexecuted instantiation: enc_settings.c:parse_list_uint64
Unexecuted instantiation: enc_settings.c:parse_list_uint32
Unexecuted instantiation: enc_settings.c:parse_list_uint8
Unexecuted instantiation: enc_settings.c:parse_list_int8
1456
PARSE_LIST(int8)
1457
PARSE_LIST(uint8)
1458
PARSE_LIST(int32)
1459
PARSE_LIST(uint32)
1460
PARSE_LIST(uint64)
1461
1462
0
static uint32_t count_params(const char* nptr) {
1463
0
    const char* ptr = nptr;
1464
0
    char*       endptr;
1465
0
    uint32_t    i = 0;
1466
0
    while (*ptr) {
1467
0
        if (*ptr == '[' || *ptr == ']') {
1468
0
            ptr++;
1469
0
            continue;
1470
0
        }
1471
1472
0
        strtoll(ptr, &endptr, 10);
1473
0
        if (*endptr == ',' || *endptr == ']') {
1474
0
            endptr++;
1475
0
        } else if (*endptr) {
1476
0
            return i;
1477
0
        }
1478
0
        i++;
1479
0
        ptr = endptr;
1480
0
    }
1481
0
    return i;
1482
0
}
1483
1484
#ifdef _MSC_VER
1485
#define strcasecmp _stricmp
1486
#endif
1487
0
static EbErrorType str_to_bool(const char* nptr, bool* out) {
1488
0
    bool val;
1489
0
    if (!strcmp(nptr, "1") || !strcasecmp(nptr, "true") || !strcasecmp(nptr, "yes")) {
1490
0
        val = true;
1491
0
    } else if (!strcmp(nptr, "0") || !strcasecmp(nptr, "false") || !strcasecmp(nptr, "no")) {
1492
0
        val = false;
1493
0
    } else {
1494
0
        return EB_ErrorBadParameter;
1495
0
    }
1496
1497
0
    *out = val;
1498
0
    return EB_ErrorNone;
1499
0
}
1500
1501
0
static EbErrorType str_to_crf(const char* nptr, EbSvtAv1EncConfiguration* config_struct) {
1502
0
    double      crf;
1503
0
    EbErrorType return_error;
1504
1505
0
    return_error = str_to_double(nptr, &crf, NULL);
1506
1507
0
    if (return_error == EB_ErrorBadParameter) {
1508
0
        return return_error;
1509
0
    }
1510
0
    if (crf < 0) {
1511
0
        return EB_ErrorBadParameter;
1512
0
    }
1513
1514
0
    uint32_t extended_q_index           = (uint32_t)(crf * 4);
1515
0
    uint32_t qp                         = AOMMIN(MAX_QP_VALUE, (uint32_t)crf);
1516
0
    uint32_t extended_crf_qindex_offset = extended_q_index - qp * 4;
1517
1518
0
    config_struct->qp                         = qp;
1519
0
    config_struct->rate_control_mode          = SVT_AV1_RC_MODE_CQP_OR_CRF;
1520
0
    config_struct->aq_mode                    = 2;
1521
0
    config_struct->extended_crf_qindex_offset = extended_crf_qindex_offset;
1522
1523
0
    return EB_ErrorNone;
1524
0
}
1525
1526
0
static EbErrorType str_to_cqp(const char* nptr, EbSvtAv1EncConfiguration* config_struct) {
1527
0
    double      cqp;
1528
0
    EbErrorType return_error;
1529
1530
0
    return_error = str_to_double(nptr, &cqp, NULL);
1531
1532
0
    if (return_error == EB_ErrorBadParameter) {
1533
0
        return return_error;
1534
0
    }
1535
0
    if (cqp < 0) {
1536
0
        return EB_ErrorBadParameter;
1537
0
    }
1538
1539
0
    uint32_t extended_q_index           = (uint32_t)(cqp * 4);
1540
0
    uint32_t qp                         = AOMMIN(MAX_QP_VALUE, (uint32_t)cqp);
1541
0
    uint32_t extended_crf_qindex_offset = extended_q_index - qp * 4;
1542
1543
0
    config_struct->qp                         = qp;
1544
0
    config_struct->rate_control_mode          = SVT_AV1_RC_MODE_CQP_OR_CRF;
1545
0
    config_struct->aq_mode                    = 0;
1546
0
    config_struct->extended_crf_qindex_offset = extended_crf_qindex_offset;
1547
1548
0
    return EB_ErrorNone;
1549
0
}
1550
1551
0
static EbErrorType str_to_keyint(const char* nptr, int32_t* out, bool* multi) {
1552
0
    char*      suff;
1553
0
    const long keyint = strtol(nptr, &suff, 0);
1554
1555
0
    if (keyint > INT32_MAX || keyint < -2) {
1556
0
        return EB_ErrorBadParameter;
1557
0
    }
1558
1559
0
    switch (*suff) {
1560
0
    case 's':
1561
        // signal we need to multiply keyint * frame_rate
1562
0
        *multi = true;
1563
0
        *out   = keyint;
1564
0
        break;
1565
0
    case '\0':
1566
0
        *multi = false;
1567
0
        *out   = keyint < 0 ? keyint : keyint - 1;
1568
0
        break;
1569
0
    default:
1570
        // else leave as untouched, we have an invalid keyint
1571
0
        SVT_ERROR("Invalid keyint value: %s\n", nptr);
1572
0
        return EB_ErrorBadParameter;
1573
0
    }
1574
1575
0
    return EB_ErrorNone;
1576
0
}
1577
1578
0
static EbErrorType str_to_bitrate(const char* nptr, uint32_t* out) {
1579
0
    char*        suff;
1580
0
    const double bitrate = strtod(nptr, &suff);
1581
1582
0
    if (bitrate < 0 || bitrate > UINT32_MAX) {
1583
0
        SVT_ERROR("Invalid bitrate value: %s\n", nptr);
1584
0
        return EB_ErrorBadParameter;
1585
0
    }
1586
1587
0
    switch (*suff) {
1588
0
    case 'b':
1589
0
    case 'B':
1590
0
        *out = (uint32_t)bitrate;
1591
0
        break;
1592
0
    case '\0':
1593
0
    case 'k':
1594
0
    case 'K':
1595
0
        *out = (uint32_t)(1000 * bitrate);
1596
0
        break;
1597
0
    case 'm':
1598
0
    case 'M':
1599
0
        *out = (uint32_t)(1000000 * bitrate);
1600
0
        break;
1601
0
    default:
1602
0
        return EB_ErrorBadParameter;
1603
0
    }
1604
0
    if (*out > 100000000) {
1605
0
        *out = 100000000;
1606
0
        SVT_WARN("Bitrate value: %s has been set to 100000000\n", nptr);
1607
0
    }
1608
0
    return EB_ErrorNone;
1609
0
}
1610
1611
0
static EbErrorType str_to_profile(const char* nptr, EbAv1SeqProfile* out) {
1612
0
    const struct {
1613
0
        const char*     name;
1614
0
        EbAv1SeqProfile profile;
1615
0
    } profiles[] = {
1616
0
        {"main", MAIN_PROFILE},
1617
0
        {"high", HIGH_PROFILE},
1618
0
        {"professional", PROFESSIONAL_PROFILE},
1619
0
    };
1620
1621
0
    const size_t profiles_size = sizeof(profiles) / sizeof(profiles[0]);
1622
1623
0
    for (size_t i = 0; i < profiles_size; i++) {
1624
0
        if (!strcmp(nptr, profiles[i].name)) {
1625
0
            *out = profiles[i].profile;
1626
0
            return EB_ErrorNone;
1627
0
        }
1628
0
    }
1629
1630
0
    return EB_ErrorBadParameter;
1631
0
}
1632
1633
0
static EbErrorType str_to_color_fmt(const char* nptr, EbColorFormat* out) {
1634
0
    const struct {
1635
0
        const char*   name;
1636
0
        EbColorFormat fmt;
1637
0
    } color_formats[] = {
1638
0
        {"mono", EB_YUV400},
1639
0
        {"400", EB_YUV400},
1640
0
        {"420", EB_YUV420},
1641
0
        {"422", EB_YUV422},
1642
0
        {"444", EB_YUV444},
1643
0
    };
1644
1645
0
    const size_t color_format_size = sizeof(color_formats) / sizeof(color_formats[0]);
1646
1647
0
    for (size_t i = 0; i < color_format_size; i++) {
1648
0
        if (!strcmp(nptr, color_formats[i].name)) {
1649
0
            *out = color_formats[i].fmt;
1650
0
            return EB_ErrorNone;
1651
0
        }
1652
0
    }
1653
1654
0
    return EB_ErrorBadParameter;
1655
0
}
1656
1657
0
static EbErrorType str_to_intra_rt(const char* nptr, SvtAv1IntraRefreshType* out) {
1658
0
    const struct {
1659
0
        const char*            name;
1660
0
        SvtAv1IntraRefreshType type;
1661
0
    } refresh_types[] = {
1662
0
        {"cra", SVT_AV1_FWDKF_REFRESH},
1663
0
        {"fwdkf", SVT_AV1_FWDKF_REFRESH},
1664
0
        {"idr", SVT_AV1_KF_REFRESH},
1665
0
        {"kf", SVT_AV1_KF_REFRESH},
1666
0
    };
1667
1668
0
    const size_t refresh_type_size = sizeof(refresh_types) / sizeof(refresh_types[0]);
1669
1670
0
    for (size_t i = 0; i < refresh_type_size; i++) {
1671
0
        if (!strcmp(nptr, refresh_types[i].name)) {
1672
0
            *out = refresh_types[i].type;
1673
0
            return EB_ErrorNone;
1674
0
        }
1675
0
    }
1676
1677
0
    return EB_ErrorBadParameter;
1678
0
}
1679
1680
0
static EbErrorType str_to_asm(const char* nptr, EbCpuFlags* out) {
1681
    // need to handle numbers in here since the numbers to no match the
1682
    // internal representation
1683
0
    const struct {
1684
0
        const char* name;
1685
0
        EbCpuFlags  flag;
1686
0
    } simds[] = {
1687
0
        {"c", 0},
1688
0
        {"0", 0},
1689
#ifdef ARCH_X86_64
1690
        {"mmx", (EB_CPU_FLAGS_MMX << 1) - 1},
1691
        {"1", (EB_CPU_FLAGS_MMX << 1) - 1},
1692
        {"sse", (EB_CPU_FLAGS_SSE << 1) - 1},
1693
        {"2", (EB_CPU_FLAGS_SSE << 1) - 1},
1694
        {"sse2", (EB_CPU_FLAGS_SSE2 << 1) - 1},
1695
        {"3", (EB_CPU_FLAGS_SSE2 << 1) - 1},
1696
        {"sse3", (EB_CPU_FLAGS_SSE3 << 1) - 1},
1697
        {"4", (EB_CPU_FLAGS_SSE3 << 1) - 1},
1698
        {"ssse3", (EB_CPU_FLAGS_SSSE3 << 1) - 1},
1699
        {"5", (EB_CPU_FLAGS_SSSE3 << 1) - 1},
1700
        {"sse4_1", (EB_CPU_FLAGS_SSE4_1 << 1) - 1},
1701
        {"6", (EB_CPU_FLAGS_SSE4_1 << 1) - 1},
1702
        {"sse4_2", (EB_CPU_FLAGS_SSE4_2 << 1) - 1},
1703
        {"7", (EB_CPU_FLAGS_SSE4_2 << 1) - 1},
1704
        {"avx", (EB_CPU_FLAGS_AVX << 1) - 1},
1705
        {"8", (EB_CPU_FLAGS_AVX << 1) - 1},
1706
        {"avx2", (EB_CPU_FLAGS_AVX2 << 1) - 1},
1707
        {"9", (EB_CPU_FLAGS_AVX2 << 1) - 1},
1708
        {"avx512", (EB_CPU_FLAGS_AVX512VL << 1) - 1},
1709
        {"10", (EB_CPU_FLAGS_AVX512VL << 1) - 1},
1710
        {"avx512icl", (EB_CPU_FLAGS_AVX512ICL << 1) - 1},
1711
        {"11", (EB_CPU_FLAGS_AVX512ICL << 1) - 1},
1712
#elif defined(ARCH_AARCH64)
1713
        {"neon", (EB_CPU_FLAGS_NEON << 1) - 1},
1714
        {"1", (EB_CPU_FLAGS_NEON << 1) - 1},
1715
        {"crc32", (EB_CPU_FLAGS_ARM_CRC32 << 1) - 1},
1716
        {"2", (EB_CPU_FLAGS_ARM_CRC32 << 1) - 1},
1717
        {"neon_dotprod", (EB_CPU_FLAGS_NEON_DOTPROD << 1) - 1},
1718
        {"3", (EB_CPU_FLAGS_NEON_DOTPROD << 1) - 1},
1719
        {"neon_i8mm", (EB_CPU_FLAGS_NEON_I8MM << 1) - 1},
1720
        {"4", (EB_CPU_FLAGS_NEON_I8MM << 1) - 1},
1721
        {"sve", (EB_CPU_FLAGS_SVE << 1) - 1},
1722
        {"5", (EB_CPU_FLAGS_SVE << 1) - 1},
1723
        {"sve2", (EB_CPU_FLAGS_SVE2 << 1) - 1},
1724
        {"6", (EB_CPU_FLAGS_SVE2 << 1) - 1},
1725
#endif
1726
0
        {"max", EB_CPU_FLAGS_ALL},
1727
0
        {"100", EB_CPU_FLAGS_ALL},
1728
0
    };
1729
0
    const size_t simds_size = sizeof(simds) / sizeof(simds[0]);
1730
1731
0
    for (size_t i = 0; i < simds_size; i++) {
1732
0
        if (!strcmp(nptr, simds[i].name)) {
1733
0
            *out = simds[i].flag;
1734
0
            return EB_ErrorNone;
1735
0
        }
1736
0
    }
1737
1738
0
    *out = EB_CPU_FLAGS_INVALID;
1739
1740
0
    return EB_ErrorBadParameter;
1741
0
}
1742
1743
0
static EbErrorType str_to_color_primaries(const char* nptr, EbColorPrimaries* out) {
1744
0
    const struct {
1745
0
        const char*      name;
1746
0
        EbColorPrimaries primaries;
1747
0
    } color_primaries[] = {
1748
0
        {"bt709", EB_CICP_CP_BT_709},
1749
0
        {"bt470m", EB_CICP_CP_BT_470_M},
1750
0
        {"bt470bg", EB_CICP_CP_BT_470_B_G},
1751
0
        {"bt601", EB_CICP_CP_BT_601},
1752
0
        {"smpte240", EB_CICP_CP_SMPTE_240},
1753
0
        {"film", EB_CICP_CP_GENERIC_FILM},
1754
0
        {"bt2020", EB_CICP_CP_BT_2020},
1755
0
        {"xyz", EB_CICP_CP_XYZ},
1756
0
        {"smpte431", EB_CICP_CP_SMPTE_431},
1757
0
        {"smpte432", EB_CICP_CP_SMPTE_432},
1758
0
        {"ebu3213", EB_CICP_CP_EBU_3213},
1759
0
    };
1760
1761
0
    const size_t color_primaries_size = sizeof(color_primaries) / sizeof(color_primaries[0]);
1762
1763
0
    for (size_t i = 0; i < color_primaries_size; i++) {
1764
0
        if (!strcmp(nptr, color_primaries[i].name)) {
1765
0
            *out = color_primaries[i].primaries;
1766
0
            return EB_ErrorNone;
1767
0
        }
1768
0
    }
1769
1770
0
    return EB_ErrorBadParameter;
1771
0
}
1772
1773
0
static EbErrorType str_to_transfer_characteristics(const char* nptr, EbTransferCharacteristics* out) {
1774
0
    const struct {
1775
0
        const char*               name;
1776
0
        EbTransferCharacteristics tfc;
1777
0
    } transfer_characteristics[] = {
1778
0
        {"bt709", EB_CICP_TC_BT_709},
1779
0
        {"bt470m", EB_CICP_TC_BT_470_M},
1780
0
        {"bt470bg", EB_CICP_TC_BT_470_B_G},
1781
0
        {"bt601", EB_CICP_TC_BT_601},
1782
0
        {"smpte240", EB_CICP_TC_SMPTE_240},
1783
0
        {"linear", EB_CICP_TC_LINEAR},
1784
0
        {"log100", EB_CICP_TC_LOG_100},
1785
0
        {"log100-sqrt10", EB_CICP_TC_LOG_100_SQRT10},
1786
0
        {"iec61966", EB_CICP_TC_IEC_61966},
1787
0
        {"bt1361", EB_CICP_TC_BT_1361},
1788
0
        {"srgb", EB_CICP_TC_SRGB},
1789
0
        {"bt2020-10", EB_CICP_TC_BT_2020_10_BIT},
1790
0
        {"bt2020-12", EB_CICP_TC_BT_2020_12_BIT},
1791
0
        {"smpte2084", EB_CICP_TC_SMPTE_2084},
1792
0
        {"smpte428", EB_CICP_TC_SMPTE_428},
1793
0
        {"hlg", EB_CICP_TC_HLG},
1794
0
    };
1795
1796
0
    const size_t transfer_characteristics_size = sizeof(transfer_characteristics) / sizeof(transfer_characteristics[0]);
1797
1798
0
    for (size_t i = 0; i < transfer_characteristics_size; i++) {
1799
0
        if (!strcmp(nptr, transfer_characteristics[i].name)) {
1800
0
            *out = transfer_characteristics[i].tfc;
1801
0
            return EB_ErrorNone;
1802
0
        }
1803
0
    }
1804
1805
0
    return EB_ErrorBadParameter;
1806
0
}
1807
1808
0
static EbErrorType str_to_matrix_coefficients(const char* nptr, EbMatrixCoefficients* out) {
1809
0
    const struct {
1810
0
        const char*          name;
1811
0
        EbMatrixCoefficients coeff;
1812
0
    } matrix_coefficients[] = {
1813
0
        {"identity", EB_CICP_MC_IDENTITY},
1814
0
        {"bt709", EB_CICP_MC_BT_709},
1815
0
        {"fcc", EB_CICP_MC_FCC},
1816
0
        {"bt470bg", EB_CICP_MC_BT_470_B_G},
1817
0
        {"bt601", EB_CICP_MC_BT_601},
1818
0
        {"smpte240", EB_CICP_MC_SMPTE_240},
1819
0
        {"ycgco", EB_CICP_MC_SMPTE_YCGCO},
1820
0
        {"bt2020-ncl", EB_CICP_MC_BT_2020_NCL},
1821
0
        {"bt2020-cl", EB_CICP_MC_BT_2020_CL},
1822
0
        {"smpte2085", EB_CICP_MC_SMPTE_2085},
1823
0
        {"chroma-ncl", EB_CICP_MC_CHROMAT_NCL},
1824
0
        {"chroma-cl", EB_CICP_MC_CHROMAT_CL},
1825
0
        {"ictcp", EB_CICP_MC_ICTCP},
1826
0
    };
1827
1828
0
    const size_t matrix_coefficients_size = sizeof(matrix_coefficients) / sizeof(matrix_coefficients[0]);
1829
1830
0
    for (size_t i = 0; i < matrix_coefficients_size; i++) {
1831
0
        if (!strcmp(nptr, matrix_coefficients[i].name)) {
1832
0
            *out = matrix_coefficients[i].coeff;
1833
0
            return EB_ErrorNone;
1834
0
        }
1835
0
    }
1836
1837
0
    return EB_ErrorBadParameter;
1838
0
}
1839
1840
0
static EbErrorType str_to_color_range(const char* nptr, EbColorRange* out) {
1841
0
    const struct {
1842
0
        const char*  name;
1843
0
        EbColorRange range;
1844
0
    } color_range[] = {
1845
0
        {"studio", EB_CR_STUDIO_RANGE},
1846
0
        {"full", EB_CR_FULL_RANGE},
1847
0
    };
1848
1849
0
    const size_t color_range_size = sizeof(color_range) / sizeof(color_range[0]);
1850
1851
0
    for (size_t i = 0; i < color_range_size; i++) {
1852
0
        if (!strcmp(nptr, color_range[i].name)) {
1853
0
            *out = color_range[i].range;
1854
0
            return EB_ErrorNone;
1855
0
        }
1856
0
    }
1857
1858
0
    return EB_ErrorBadParameter;
1859
0
}
1860
1861
0
static EbErrorType str_to_chroma_sample_position(const char* nptr, EbChromaSamplePosition* out) {
1862
0
    const struct {
1863
0
        const char*            name;
1864
0
        EbChromaSamplePosition pos;
1865
0
    } chroma_sample_positions[] = {
1866
0
        {"unknown", EB_CSP_UNKNOWN},
1867
0
        {"vertical", EB_CSP_VERTICAL},
1868
0
        {"left", EB_CSP_VERTICAL},
1869
0
        {"colocated", EB_CSP_COLOCATED},
1870
0
        {"topleft", EB_CSP_COLOCATED},
1871
0
    };
1872
1873
0
    const size_t chroma_sample_positions_size = sizeof(chroma_sample_positions) / sizeof(chroma_sample_positions[0]);
1874
1875
0
    for (size_t i = 0; i < chroma_sample_positions_size; i++) {
1876
0
        if (!strcmp(nptr, chroma_sample_positions[i].name)) {
1877
0
            *out = chroma_sample_positions[i].pos;
1878
0
            return EB_ErrorNone;
1879
0
        }
1880
0
    }
1881
1882
0
    return EB_ErrorBadParameter;
1883
0
}
1884
1885
0
static EbErrorType str_to_sframe_mode(const char* nptr, EbSFrameMode* out) {
1886
0
    const struct {
1887
0
        const char*  name;
1888
0
        EbSFrameMode mode;
1889
0
    } sframe_mode[] = {
1890
0
        {"strict", SFRAME_STRICT_BASE},
1891
0
        {"nearest", SFRAME_NEAREST_BASE},
1892
0
        {"flexible", SFRAME_FLEXIBLE_BASE},
1893
0
        {"decposi", SFRAME_DEC_POSI_BASE},
1894
0
    };
1895
1896
0
    const size_t sframe_mode_size = sizeof(sframe_mode) / sizeof(sframe_mode[0]);
1897
1898
0
    for (size_t i = 0; i < sframe_mode_size; i++) {
1899
0
        if (!strcmp(nptr, sframe_mode[i].name)) {
1900
0
            *out = sframe_mode[i].mode;
1901
0
            return EB_ErrorNone;
1902
0
        }
1903
0
    }
1904
1905
0
    return EB_ErrorBadParameter;
1906
0
}
1907
1908
0
static EbErrorType str_to_rc_mode(const char* nptr, uint8_t* out, uint8_t* aq_mode) {
1909
    // separate rc mode enum to distinguish between cqp and crf modes
1910
0
    enum rc_modes {
1911
0
        RC_MODE_ZERO = 0, // unique mode in case user passes a literal 0
1912
0
        RC_MODE_CQP,
1913
0
        RC_MODE_CRF,
1914
0
        RC_MODE_VBR,
1915
0
        RC_MODE_CBR,
1916
0
        RC_MODE_INVALID,
1917
0
    };
1918
1919
0
    const struct {
1920
0
        const char* name;
1921
0
        uint32_t    mode;
1922
0
    } rc_mode[] = {
1923
0
        {"0", RC_MODE_ZERO},
1924
0
        {"1", RC_MODE_VBR},
1925
0
        {"2", RC_MODE_CBR},
1926
0
        {"cqp", RC_MODE_CQP},
1927
0
        {"crf", RC_MODE_CRF},
1928
0
        {"vbr", RC_MODE_VBR},
1929
0
        {"cbr", RC_MODE_CBR},
1930
0
    };
1931
1932
0
    const size_t rc_mode_size = sizeof(rc_mode) / sizeof(rc_mode[0]);
1933
1934
0
    enum rc_modes mode = RC_MODE_INVALID;
1935
1936
0
    for (size_t i = 0; i < rc_mode_size; i++) {
1937
0
        if (!strcmp(nptr, rc_mode[i].name)) {
1938
0
            mode = rc_mode[i].mode;
1939
0
            break;
1940
0
        }
1941
0
    }
1942
1943
0
    switch (mode) {
1944
0
    case RC_MODE_ZERO:
1945
0
        *out = 0;
1946
0
        break;
1947
0
    case RC_MODE_CQP:
1948
0
        *out     = SVT_AV1_RC_MODE_CQP_OR_CRF;
1949
0
        *aq_mode = 0;
1950
0
        break;
1951
0
    case RC_MODE_CRF:
1952
0
        *out     = SVT_AV1_RC_MODE_CQP_OR_CRF;
1953
0
        *aq_mode = 2;
1954
0
        break;
1955
0
    case RC_MODE_VBR:
1956
0
        *out = SVT_AV1_RC_MODE_VBR;
1957
0
        break;
1958
0
    case RC_MODE_CBR:
1959
0
        *out = SVT_AV1_RC_MODE_CBR;
1960
0
        break;
1961
0
    default:
1962
0
        SVT_ERROR("Invalid rc mode: %s\n", nptr);
1963
0
        return EB_ErrorBadParameter;
1964
0
    }
1965
0
    return EB_ErrorNone;
1966
0
}
1967
1968
0
static EbErrorType str_to_pred_struct(const char* nptr, PredStructure* pred_structure) {
1969
0
    const struct {
1970
0
        const char*   name;
1971
0
        PredStructure mode;
1972
0
    } pred_structs[] = {{"0", ALL_INTRA},
1973
0
                        {"all-intra", ALL_INTRA},
1974
0
                        {"ai", ALL_INTRA},
1975
0
                        {"1", LOW_DELAY},
1976
0
                        {"low-delay", LOW_DELAY},
1977
0
                        {"ld", LOW_DELAY},
1978
0
                        {"2", RANDOM_ACCESS},
1979
0
                        {"random-access", RANDOM_ACCESS},
1980
0
                        {"ra", RANDOM_ACCESS}};
1981
1982
0
    const size_t pred_structs_size = sizeof(pred_structs) / sizeof(pred_structs[0]);
1983
1984
0
    for (size_t i = 0; i < pred_structs_size; i++) {
1985
0
        if (!strcmp(nptr, pred_structs[i].name)) {
1986
0
            *pred_structure = pred_structs[i].mode;
1987
0
            return EB_ErrorNone;
1988
0
        }
1989
0
    }
1990
1991
0
    SVT_ERROR("Invalid pred struct: %s\n", nptr);
1992
0
    return EB_ErrorBadParameter;
1993
0
}
1994
1995
0
static EbErrorType str_to_frm_resz_evts(const char* nptr, SvtAv1FrameScaleEvts* evts) {
1996
0
    const uint32_t param_count = count_params(nptr);
1997
0
    if ((evts->evt_num != 0 && evts->evt_num != param_count) || param_count == 0) {
1998
0
        SVT_ERROR("Error: Size for the list passed to %s doesn't match %u\n", "frame-resz-events", evts->evt_num);
1999
0
        return EB_ErrorBadParameter;
2000
0
    }
2001
0
    if (evts->start_frame_nums) {
2002
0
        EB_FREE(evts->start_frame_nums);
2003
0
    }
2004
0
    EB_MALLOC(evts->start_frame_nums, param_count * sizeof(uint64_t));
2005
0
    evts->evt_num = param_count;
2006
0
    return parse_list_uint64(nptr, evts->start_frame_nums, param_count);
2007
0
}
2008
2009
0
static EbErrorType str_to_resz_kf_denoms(const char* nptr, SvtAv1FrameScaleEvts* evts) {
2010
0
    const uint32_t param_count = count_params(nptr);
2011
0
    if ((evts->evt_num != 0 && evts->evt_num != param_count) || param_count == 0) {
2012
0
        SVT_ERROR("Error: Size for the list passed to %s doesn't match %u\n", "frame-resz-kf-denoms", evts->evt_num);
2013
0
        return EB_ErrorBadParameter;
2014
0
    }
2015
0
    if (evts->resize_kf_denoms) {
2016
0
        EB_FREE(evts->resize_kf_denoms);
2017
0
    }
2018
0
    EB_MALLOC(evts->resize_kf_denoms, param_count * sizeof(uint32_t));
2019
0
    evts->evt_num = param_count;
2020
0
    return parse_list_uint32(nptr, evts->resize_kf_denoms, param_count);
2021
0
}
2022
2023
0
static EbErrorType str_to_resz_denoms(const char* nptr, SvtAv1FrameScaleEvts* evts) {
2024
0
    const uint32_t param_count = count_params(nptr);
2025
0
    if ((evts->evt_num != 0 && evts->evt_num != param_count) || param_count == 0) {
2026
0
        SVT_ERROR("Error: Size for the list passed to %s doesn't match %u\n", "frame-resz-denoms", evts->evt_num);
2027
0
        return EB_ErrorBadParameter;
2028
0
    }
2029
0
    if (evts->resize_denoms) {
2030
0
        EB_FREE(evts->resize_denoms);
2031
0
    }
2032
0
    EB_MALLOC(evts->resize_denoms, param_count * sizeof(uint32_t));
2033
0
    evts->evt_num = param_count;
2034
0
    return parse_list_uint32(nptr, evts->resize_denoms, param_count);
2035
0
}
2036
2037
0
static EbErrorType str_to_sframe_posi(const char* nptr, SvtAv1SFramePositions* posis) {
2038
0
    const uint32_t param_count = count_params(nptr);
2039
0
    if ((posis->sframe_num != 0 && posis->sframe_num != param_count) || param_count == 0) {
2040
0
        SVT_ERROR("Error: Size for the list passed to %s doesn't match %u\n", "sframe-posi", posis->sframe_num);
2041
0
        return EB_ErrorBadParameter;
2042
0
    }
2043
0
    if (posis->sframe_posis) {
2044
0
        EB_FREE(posis->sframe_posis);
2045
0
    }
2046
0
    EB_MALLOC(posis->sframe_posis, param_count * sizeof(uint64_t));
2047
0
    posis->sframe_num = param_count;
2048
0
    return parse_list_uint64(nptr, posis->sframe_posis, param_count);
2049
0
}
2050
2051
0
static EbErrorType str_to_sframe_qp(const char* nptr, SvtAv1SFramePositions* posis, uint8_t* qp) {
2052
0
    const uint32_t param_count = count_params(nptr);
2053
0
    if ((posis->sframe_num != 0 && posis->sframe_num != param_count && param_count != 1) || param_count == 0) {
2054
0
        SVT_ERROR("Error: Size for the list passed to %s doesn't match %u\n", "sframe-qp", posis->sframe_num);
2055
0
        return EB_ErrorBadParameter;
2056
0
    }
2057
0
    if (posis->sframe_qps) {
2058
0
        EB_FREE(posis->sframe_qps);
2059
0
    }
2060
0
    EB_MALLOC(posis->sframe_qps, param_count * sizeof(uint8_t));
2061
0
    posis->sframe_qp_num = param_count;
2062
0
    EbErrorType err      = parse_list_uint8(nptr, posis->sframe_qps, param_count);
2063
    // check if the QP values are valid
2064
0
    for (uint32_t i = 0; i < posis->sframe_qp_num; ++i) {
2065
0
        if (posis->sframe_qps[i] < 1 || posis->sframe_qps[i] > 63) {
2066
0
            SVT_ERROR("Error: Invalid S-Frame QP value. QPs must be [1 - 63]\n");
2067
0
            EB_FREE(posis->sframe_qps);
2068
0
            posis->sframe_qp_num = 0;
2069
0
            err                  = EB_ErrorBadParameter;
2070
0
        }
2071
0
    }
2072
    // If sframe-qp parameter contains only one value, apply it to all S-frames
2073
0
    if (err == EB_ErrorNone && param_count == 1) {
2074
0
        *qp = posis->sframe_qps[0];
2075
0
    }
2076
0
    return err;
2077
0
}
2078
2079
0
static EbErrorType str_to_sframe_qp_offset(const char* nptr, SvtAv1SFramePositions* posis, int8_t* qp_offset) {
2080
0
    const uint32_t param_count = count_params(nptr);
2081
0
    if ((posis->sframe_num != 0 && posis->sframe_num != param_count && param_count != 1) || param_count == 0) {
2082
0
        SVT_ERROR("Error: Size for the list passed to %s doesn't match %u\n", "sframe-qp-offset", posis->sframe_num);
2083
0
        return EB_ErrorBadParameter;
2084
0
    }
2085
0
    if (posis->sframe_qp_offsets) {
2086
0
        EB_FREE(posis->sframe_qp_offsets);
2087
0
    }
2088
0
    EB_MALLOC(posis->sframe_qp_offsets, param_count * sizeof(int8_t));
2089
0
    posis->sframe_qp_num = param_count;
2090
0
    EbErrorType err      = parse_list_int8(nptr, posis->sframe_qp_offsets, param_count);
2091
    // check if the QP offset values are valid
2092
0
    for (uint32_t i = 0; i < posis->sframe_qp_num; ++i) {
2093
0
        if (posis->sframe_qp_offsets[i] < -63 || posis->sframe_qp_offsets[i] > 63) {
2094
0
            SVT_ERROR("Error: Invalid S-Frame QP offset value. QP offsets must be [-63 - 63]\n");
2095
0
            EB_FREE(posis->sframe_qp_offsets);
2096
0
            posis->sframe_qp_num = 0;
2097
0
            err                  = EB_ErrorBadParameter;
2098
0
        }
2099
0
    }
2100
    // If sframe-qp-offset parameter contains only one value, apply it to all S-frames
2101
0
    if (err == EB_ErrorNone && param_count == 1) {
2102
0
        *qp_offset = posis->sframe_qp_offsets[0];
2103
0
    }
2104
0
    return err;
2105
0
}
2106
2107
#define COLOR_OPT(par, opt)                                          \
2108
0
    do {                                                             \
2109
0
        if (!strcmp(name, par)) {                                    \
2110
0
            return_error = str_to_##opt(value, &config_struct->opt); \
2111
0
            if (return_error == EB_ErrorNone)                        \
2112
0
                return return_error;                                 \
2113
0
            uint32_t val;                                            \
2114
0
            return_error = str_to_uint(value, &val, NULL);           \
2115
0
            if (return_error == EB_ErrorNone)                        \
2116
0
                config_struct->opt = val;                            \
2117
0
            return return_error;                                     \
2118
0
        }                                                            \
2119
0
    } while (0)
2120
2121
#define COLOR_METADATA_OPT(par, opt)                                                                      \
2122
0
    do {                                                                                                  \
2123
0
        if (!strcmp(name, par))                                                                           \
2124
0
            return svt_aom_parse_##opt(&config_struct->opt, value) ? EB_ErrorNone : EB_ErrorBadParameter; \
2125
0
    } while (0)
2126
2127
EB_API EbErrorType svt_av1_enc_parse_parameter(EbSvtAv1EncConfiguration* config_struct, const char* name,
2128
0
                                               const char* value) {
2129
0
    if (config_struct == NULL || name == NULL || value == NULL) {
2130
0
        return EB_ErrorBadParameter;
2131
0
    }
2132
2133
0
    EbErrorType return_error = EB_ErrorBadParameter;
2134
2135
0
    if (!strcmp(name, "keyint")) {
2136
0
        return str_to_keyint(value, &config_struct->intra_period_length, &config_struct->multiply_keyint);
2137
0
    }
2138
2139
0
    if (!strcmp(name, "tbr")) {
2140
0
        return str_to_bitrate(value, &config_struct->target_bit_rate);
2141
0
    }
2142
2143
0
    if (!strcmp(name, "mbr")) {
2144
0
        return str_to_bitrate(value, &config_struct->max_bit_rate);
2145
0
    }
2146
2147
    // options updating more than one field
2148
0
    if (!strcmp(name, "crf")) {
2149
0
        return str_to_crf(value, config_struct);
2150
0
    }
2151
2152
0
    if (!strcmp(name, "cqp")) {
2153
0
        return str_to_cqp(value, config_struct);
2154
0
    }
2155
2156
0
    if (!strcmp(name, "rc")) {
2157
0
        return str_to_rc_mode(value, &config_struct->rate_control_mode, &config_struct->aq_mode);
2158
0
    }
2159
2160
    // custom enum fields
2161
0
    if (!strcmp(name, "profile")) {
2162
0
        return str_to_profile(value, &config_struct->profile) == EB_ErrorBadParameter
2163
0
            ? str_to_uint(value, (uint32_t*)&config_struct->profile, NULL)
2164
0
            : EB_ErrorNone;
2165
0
    }
2166
2167
0
    if (!strcmp(name, "color-format")) {
2168
0
        return str_to_color_fmt(value, &config_struct->encoder_color_format) == EB_ErrorBadParameter
2169
0
            ? str_to_uint(value, (uint32_t*)&config_struct->encoder_color_format, NULL)
2170
0
            : EB_ErrorNone;
2171
0
    }
2172
2173
0
    if (!strcmp(name, "irefresh-type")) {
2174
0
        return str_to_intra_rt(value, &config_struct->intra_refresh_type) == EB_ErrorBadParameter
2175
0
            ? str_to_uint(value, (uint32_t*)&config_struct->intra_refresh_type, NULL)
2176
0
            : EB_ErrorNone;
2177
0
    }
2178
2179
0
    if (!strcmp(name, "sframe-mode")) {
2180
0
        return str_to_sframe_mode(value, &config_struct->sframe_mode) == EB_ErrorBadParameter
2181
0
            ? str_to_uint(value, (uint32_t*)&config_struct->sframe_mode, NULL)
2182
0
            : EB_ErrorNone;
2183
0
    }
2184
2185
0
    if (!strcmp(name, "asm")) {
2186
0
        return str_to_asm(value, &config_struct->use_cpu_flags);
2187
0
    }
2188
2189
0
    if (!strcmp(name, "pred-struct")) {
2190
0
        return str_to_pred_struct(value, &config_struct->pred_structure);
2191
0
    }
2192
2193
0
    COLOR_OPT("color-primaries", color_primaries);
2194
0
    COLOR_OPT("transfer-characteristics", transfer_characteristics);
2195
0
    COLOR_OPT("matrix-coefficients", matrix_coefficients);
2196
0
    COLOR_OPT("color-range", color_range);
2197
0
    COLOR_OPT("chroma-sample-position", chroma_sample_position);
2198
2199
    // custom struct fields
2200
0
    COLOR_METADATA_OPT("mastering-display", mastering_display);
2201
0
    COLOR_METADATA_OPT("content-light", content_light_level);
2202
2203
    // arrays
2204
0
    if (!strcmp(name, "qindex-offsets")) {
2205
0
        return parse_list_int32(value, config_struct->qindex_offsets, EB_MAX_TEMPORAL_LAYERS);
2206
0
    }
2207
2208
0
    if (!strcmp(name, "chroma-qindex-offsets")) {
2209
0
        return parse_list_int32(value, config_struct->chroma_qindex_offsets, EB_MAX_TEMPORAL_LAYERS);
2210
0
    }
2211
2212
0
    if (!strcmp(name, "lambda-scale-factors")) {
2213
0
        return parse_list_int32(value, config_struct->lambda_scale_factors, SVT_AV1_FRAME_UPDATE_TYPES);
2214
0
    }
2215
2216
0
    if (!strcmp(name, "frame-resz-events")) {
2217
0
        return str_to_frm_resz_evts(value, &config_struct->frame_scale_evts);
2218
0
    }
2219
2220
0
    if (!strcmp(name, "frame-resz-kf-denoms")) {
2221
0
        return str_to_resz_kf_denoms(value, &config_struct->frame_scale_evts);
2222
0
    }
2223
2224
0
    if (!strcmp(name, "frame-resz-denoms")) {
2225
0
        return str_to_resz_denoms(value, &config_struct->frame_scale_evts);
2226
0
    }
2227
2228
0
    if (!strcmp(name, "sframe-posi")) {
2229
0
        return str_to_sframe_posi(value, &config_struct->sframe_posi);
2230
0
    }
2231
2232
0
    if (!strcmp(name, "sframe-qp")) {
2233
0
        return str_to_sframe_qp(value, &config_struct->sframe_posi, &config_struct->sframe_qp);
2234
0
    }
2235
2236
0
    if (!strcmp(name, "sframe-qp-offset")) {
2237
0
        return str_to_sframe_qp_offset(value, &config_struct->sframe_posi, &config_struct->sframe_qp_offset);
2238
0
    }
2239
2240
    // uint32_t fields
2241
0
    const struct {
2242
0
        const char* name;
2243
0
        uint32_t*   out;
2244
0
    } uint_opts[] = {
2245
0
        {"w", &config_struct->source_width},
2246
0
        {"width", &config_struct->source_width},
2247
0
        {"h", &config_struct->source_height},
2248
0
        {"height", &config_struct->source_height},
2249
0
        {"q", &config_struct->qp},
2250
0
        {"qp", &config_struct->qp},
2251
0
        {"film-grain", &config_struct->film_grain_denoise_strength},
2252
0
        {"hierarchical-levels", &config_struct->hierarchical_levels},
2253
0
        {"tier", &config_struct->tier},
2254
0
        {"level", &config_struct->level},
2255
0
        {"lp", &config_struct->level_of_parallelism},
2256
0
        {"fps-num", &config_struct->frame_rate_numerator},
2257
0
        {"fps-denom", &config_struct->frame_rate_denominator},
2258
0
        {"lookahead", &config_struct->look_ahead_distance},
2259
0
        {"scd", &config_struct->scene_change_detection},
2260
0
        {"max-qp", &config_struct->max_qp_allowed},
2261
0
        {"min-qp", &config_struct->min_qp_allowed},
2262
0
        {"minsection-pct", &config_struct->vbr_min_section_pct},
2263
0
        {"maxsection-pct", &config_struct->vbr_max_section_pct},
2264
0
        {"undershoot-pct", &config_struct->under_shoot_pct},
2265
0
        {"overshoot-pct", &config_struct->over_shoot_pct},
2266
0
        {"mbr-overshoot-pct", &config_struct->mbr_over_shoot_pct},
2267
0
        {"max-intra-bitrate-pct", &config_struct->max_intra_bitrate_pct},
2268
0
        {"max-inter-bitrate-pct", &config_struct->max_inter_bitrate_pct},
2269
0
        {"recode-loop", &config_struct->recode_loop},
2270
0
        {"enable-stat-report", &config_struct->stat_report},
2271
0
        {"scm", &config_struct->screen_content_mode},
2272
0
        {"input-depth", &config_struct->encoder_bit_depth},
2273
0
        {"forced-max-frame-width", &config_struct->forced_max_frame_width},
2274
0
        {"forced-max-frame-height", &config_struct->forced_max_frame_height},
2275
0
    };
2276
2277
0
    const size_t uint_opts_size = sizeof(uint_opts) / sizeof(uint_opts[0]);
2278
2279
0
    for (size_t i = 0; i < uint_opts_size; i++) {
2280
0
        if (!strcmp(name, uint_opts[i].name)) {
2281
0
            return str_to_uint(value, uint_opts[i].out, NULL);
2282
0
        }
2283
0
    }
2284
2285
    // uint8_t fields
2286
0
    const struct {
2287
0
        const char* name;
2288
0
        uint8_t*    out;
2289
0
    } uint8_opts[] = {
2290
0
        {"aq-mode", &config_struct->aq_mode},
2291
0
        {"superres-mode", &config_struct->superres_mode},
2292
0
        {"superres-qthres", &config_struct->superres_qthres},
2293
0
        {"superres-kf-qthres", &config_struct->superres_kf_qthres},
2294
0
        {"superres-denom", &config_struct->superres_denom},
2295
0
        {"superres-kf-denom", &config_struct->superres_kf_denom},
2296
0
        {"tune", &config_struct->tune},
2297
0
        {"film-grain-denoise", &config_struct->film_grain_denoise_apply},
2298
0
        {"enable-dlf", &config_struct->enable_dlf_flag},
2299
0
        {"resize-mode", &config_struct->resize_mode},
2300
0
        {"resize-denom", &config_struct->resize_denom},
2301
0
        {"resize-kf-denom", &config_struct->resize_kf_denom},
2302
0
        {"qm-min", &config_struct->min_qm_level},
2303
0
        {"qm-max", &config_struct->max_qm_level},
2304
0
        {"chroma-qm-min", &config_struct->min_chroma_qm_level},
2305
0
        {"chroma-qm-max", &config_struct->max_chroma_qm_level},
2306
0
        {"use-fixed-qindex-offsets", &config_struct->use_fixed_qindex_offsets},
2307
0
        {"startup-mg-size", &config_struct->startup_mg_size},
2308
0
        {"variance-boost-strength", &config_struct->variance_boost_strength},
2309
0
        {"variance-octile", &config_struct->variance_octile},
2310
0
        {"variance-boost-curve", &config_struct->variance_boost_curve},
2311
0
        {"qp-scale-compress-strength", &config_struct->qp_scale_compress_strength},
2312
0
        {"fast-decode", &config_struct->fast_decode},
2313
0
        {"luminance-qp-bias", &config_struct->luminance_qp_bias},
2314
0
        {"enable-tf", &config_struct->enable_tf},
2315
0
        {"tf-strength", &config_struct->tf_strength},
2316
0
        {"max-tx-size", &config_struct->max_tx_size},
2317
0
    };
2318
2319
0
    const size_t uint8_opts_size = sizeof(uint8_opts) / sizeof(uint8_opts[0]);
2320
2321
0
    for (size_t i = 0; i < uint8_opts_size; i++) {
2322
0
        if (!strcmp(name, uint8_opts[i].name)) {
2323
0
            uint32_t val;
2324
0
            return_error = str_to_uint(value, &val, NULL);
2325
0
            if (return_error == EB_ErrorNone) {
2326
                // add protection if the input param is roll-over
2327
0
                if (val > 255) {
2328
0
                    return EB_ErrorBadParameter;
2329
0
                }
2330
0
                *uint8_opts[i].out = val;
2331
0
            }
2332
0
            return return_error;
2333
0
        }
2334
0
    }
2335
2336
    // int64_t fields
2337
0
    const struct {
2338
0
        const char* name;
2339
0
        int64_t*    out;
2340
0
    } int64_opts[] = {
2341
0
        {"buf-initial-sz", &config_struct->starting_buffer_level_ms},
2342
0
        {"buf-optimal-sz", &config_struct->optimal_buffer_level_ms},
2343
0
        {"buf-sz", &config_struct->maximum_buffer_size_ms},
2344
0
    };
2345
2346
0
    const size_t int64_opts_size = sizeof(int64_opts) / sizeof(int64_opts[0]);
2347
2348
0
    for (size_t i = 0; i < int64_opts_size; i++) {
2349
0
        if (!strcmp(name, int64_opts[i].name)) {
2350
0
            return str_to_int64(value, int64_opts[i].out, NULL);
2351
0
        }
2352
0
    }
2353
2354
    // double fields
2355
0
    const struct {
2356
0
        const char* name;
2357
0
        double*     out;
2358
0
    } double_opts[] = {
2359
0
        {"ac-bias", &config_struct->ac_bias},
2360
0
    };
2361
2362
0
    const size_t double_opts_size = sizeof(double_opts) / sizeof(double_opts[0]);
2363
2364
0
    for (size_t i = 0; i < double_opts_size; i++) {
2365
0
        if (!strcmp(name, double_opts[i].name)) {
2366
0
            return str_to_double(value, double_opts[i].out, NULL);
2367
0
        }
2368
0
    }
2369
2370
    // int32_t fields
2371
0
    const struct {
2372
0
        const char* name;
2373
0
        int32_t*    out;
2374
0
    } int_opts[] = {
2375
0
        {"key-frame-chroma-qindex-offset", &config_struct->key_frame_chroma_qindex_offset},
2376
0
        {"key-frame-qindex-offset", &config_struct->key_frame_qindex_offset},
2377
0
        {"luma-y-dc-qindex-offset", &config_struct->luma_y_dc_qindex_offset},
2378
0
        {"chroma-u-dc-qindex-offset", &config_struct->chroma_u_dc_qindex_offset},
2379
0
        {"chroma-u-ac-qindex-offset", &config_struct->chroma_u_ac_qindex_offset},
2380
0
        {"chroma-v-dc-qindex-offset", &config_struct->chroma_v_dc_qindex_offset},
2381
0
        {"chroma-v-ac-qindex-offset", &config_struct->chroma_v_ac_qindex_offset},
2382
0
        {"pass", &config_struct->pass},
2383
0
        {"enable-cdef", &config_struct->cdef_level},
2384
0
        {"enable-restoration", &config_struct->enable_restoration_filtering},
2385
0
        {"enable-mfmv", &config_struct->enable_mfmv},
2386
0
        {"intra-period", &config_struct->intra_period_length},
2387
0
        {"tile-rows", &config_struct->tile_rows},
2388
0
        {"tile-columns", &config_struct->tile_columns},
2389
0
        {"sframe-dist", &config_struct->sframe_dist},
2390
0
        {"hbd-mds", &config_struct->hbd_mds},
2391
0
    };
2392
2393
0
    const size_t int_opts_size = sizeof(int_opts) / sizeof(int_opts[0]);
2394
2395
0
    for (size_t i = 0; i < int_opts_size; i++) {
2396
0
        if (!strcmp(name, int_opts[i].name)) {
2397
0
            return str_to_int(value, int_opts[i].out, NULL);
2398
0
        }
2399
0
    }
2400
2401
    // int8_t fields
2402
0
    const struct {
2403
0
        const char* name;
2404
0
        int8_t*     out;
2405
0
    } int8_opts[] = {
2406
0
        {"preset", &config_struct->enc_mode},
2407
0
        {"sharpness", &config_struct->sharpness},
2408
0
        {"startup-qp-offset", &config_struct->startup_qp_offset},
2409
0
    };
2410
2411
0
    const size_t int8_opts_size = sizeof(int8_opts) / sizeof(int8_opts[0]);
2412
2413
0
    for (size_t i = 0; i < int8_opts_size; i++) {
2414
0
        if (!strcmp(name, int8_opts[i].name)) {
2415
0
            int32_t val;
2416
0
            return_error = str_to_int(value, &val, NULL);
2417
0
            if (return_error == EB_ErrorNone) {
2418
                // add protection if the input param is roll-over
2419
0
                if (val > 127 || val < -128) {
2420
0
                    return EB_ErrorBadParameter;
2421
0
                }
2422
0
                *int8_opts[i].out = val;
2423
0
            }
2424
0
            return return_error;
2425
0
        }
2426
0
    }
2427
2428
    // bool fields
2429
0
    const struct {
2430
0
        const char* name;
2431
0
        bool*       out;
2432
0
    } bool_opts[] = {
2433
0
        {"use-q-file", &config_struct->use_qp_file},
2434
0
        {"enable-overlays", &config_struct->enable_overlays},
2435
0
        {"enable-force-key-frames", &config_struct->force_key_frames},
2436
0
#if CONFIG_ENABLE_QUANT_MATRIX
2437
0
        {"enable-qm", &config_struct->enable_qm},
2438
0
#endif
2439
0
        {"enable-dg", &config_struct->enable_dg},
2440
0
        {"gop-constraint-rc", &config_struct->gop_constraint_rc},
2441
0
        {"enable-variance-boost", &config_struct->enable_variance_boost},
2442
0
        {"lossless", &config_struct->lossless},
2443
0
        {"avif", &config_struct->avif},
2444
0
        {"rtc", &config_struct->rtc},
2445
0
        {"adaptive-film-grain", &config_struct->adaptive_film_grain},
2446
0
        {"enable-kf-tf", &config_struct->enable_tf_key},
2447
0
        {"enable-intrabc", &config_struct->enable_intrabc},
2448
0
    };
2449
0
    const size_t bool_opts_size = sizeof(bool_opts) / sizeof(bool_opts[0]);
2450
2451
0
    for (size_t i = 0; i < bool_opts_size; i++) {
2452
0
        if (!strcmp(name, bool_opts[i].name)) {
2453
0
            return str_to_bool(value, bool_opts[i].out);
2454
0
        }
2455
0
    }
2456
2457
0
    return return_error;
2458
0
}