Add tune-content command line option
Change-Id: I3793b54ad432e46bcdb2dcc7adc0e15fa6deec47
This commit is contained in:
Родитель
82eed664f3
Коммит
219f645b2d
13
vpxenc.c
13
vpxenc.c
|
@ -378,11 +378,20 @@ static const arg_def_t frame_periodic_boost = ARG_DEF(
|
||||||
NULL, "frame_boost", 1,
|
NULL, "frame_boost", 1,
|
||||||
"Enable frame periodic boost (0: off (default), 1: on)");
|
"Enable frame periodic boost (0: off (default), 1: on)");
|
||||||
|
|
||||||
|
static const struct arg_enum_list tune_content_enum[] = {
|
||||||
|
{"default", VP9E_CONTENT_DEFAULT},
|
||||||
|
{"screen", VP9E_CONTENT_SCREEN},
|
||||||
|
{NULL, 0}
|
||||||
|
};
|
||||||
|
|
||||||
|
static const arg_def_t tune_content = ARG_DEF_ENUM(
|
||||||
|
NULL, "tune-content", 1, "Tune content type", tune_content_enum);
|
||||||
|
|
||||||
static const arg_def_t *vp9_args[] = {
|
static const arg_def_t *vp9_args[] = {
|
||||||
&cpu_used, &auto_altref, &noise_sens, &sharpness, &static_thresh,
|
&cpu_used, &auto_altref, &noise_sens, &sharpness, &static_thresh,
|
||||||
&tile_cols, &tile_rows, &arnr_maxframes, &arnr_strength, &arnr_type,
|
&tile_cols, &tile_rows, &arnr_maxframes, &arnr_strength, &arnr_type,
|
||||||
&tune_ssim, &cq_level, &max_intra_rate_pct, &lossless,
|
&tune_ssim, &cq_level, &max_intra_rate_pct, &lossless,
|
||||||
&frame_parallel_decoding, &aq_mode, &frame_periodic_boost,
|
&frame_parallel_decoding, &aq_mode, &frame_periodic_boost, &tune_content,
|
||||||
NULL
|
NULL
|
||||||
};
|
};
|
||||||
static const int vp9_arg_ctrl_map[] = {
|
static const int vp9_arg_ctrl_map[] = {
|
||||||
|
@ -392,7 +401,7 @@ static const int vp9_arg_ctrl_map[] = {
|
||||||
VP8E_SET_ARNR_MAXFRAMES, VP8E_SET_ARNR_STRENGTH, VP8E_SET_ARNR_TYPE,
|
VP8E_SET_ARNR_MAXFRAMES, VP8E_SET_ARNR_STRENGTH, VP8E_SET_ARNR_TYPE,
|
||||||
VP8E_SET_TUNING, VP8E_SET_CQ_LEVEL, VP8E_SET_MAX_INTRA_BITRATE_PCT,
|
VP8E_SET_TUNING, VP8E_SET_CQ_LEVEL, VP8E_SET_MAX_INTRA_BITRATE_PCT,
|
||||||
VP9E_SET_LOSSLESS, VP9E_SET_FRAME_PARALLEL_DECODING, VP9E_SET_AQ_MODE,
|
VP9E_SET_LOSSLESS, VP9E_SET_FRAME_PARALLEL_DECODING, VP9E_SET_AQ_MODE,
|
||||||
VP9E_SET_FRAME_PERIODIC_BOOST,
|
VP9E_SET_FRAME_PERIODIC_BOOST, VP9E_SET_TUNE_CONTENT,
|
||||||
0
|
0
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
Загрузка…
Ссылка в новой задаче