Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new unutilized interpolation filter search levels to slower presets and better CLI docs #39

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Source/App/EncApp/EbAppConfig.c
Original file line number Diff line number Diff line change
Expand Up @@ -1235,7 +1235,7 @@ ConfigEntry config_entry_psy[] = {
// QP scale compress
{SINGLE_INPUT,
QP_SCALE_COMPRESS_STRENGTH_TOKEN,
"[PSY] QP scale compress strength, default is 1 [0-3]",
"[PSY] QP scale compress strength, default is 1 while SVT-AV1 default is 0 [0-3]",
set_cfg_generic_token},
// Termination
{SINGLE_INPUT, NULL, NULL, NULL}};
Expand Down
4 changes: 4 additions & 0 deletions Source/Lib/Encoder/Codec/EncModeConfig.c
Original file line number Diff line number Diff line change
Expand Up @@ -8411,6 +8411,10 @@ void svt_aom_sig_deriv_mode_decision_config(SequenceControlSet *scs, PictureCont
pcs->interpolation_search_level = 0;
if (enc_mode <= ENC_MRS)
pcs->interpolation_search_level = 1;
else if (enc_mode <= ENC_M2)
pcs->interpolation_search_level = 2;
else if (enc_mode <= ENC_M4)
pcs->interpolation_search_level = 3;
else if (enc_mode <= ENC_M8)
pcs->interpolation_search_level = 4;
else {
Expand Down