Skip to content

Commit

Permalink
Update enc_settings.c
Browse files Browse the repository at this point in the history
Fix PSY-RD error message.
  • Loading branch information
BillyBob1354 authored Dec 26, 2024
1 parent 3fd4e78 commit 576752e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Lib/Globals/enc_settings.c
Original file line number Diff line number Diff line change
Expand Up @@ -930,7 +930,7 @@ EbErrorType svt_av1_verify_settings(SequenceControlSet *scs) {
}

if (config->psy_rd > 6.0 || config->psy_rd < 0.0) {
SVT_ERROR("Instance %u: PSY-RD strength must be between 0.0 and 4.0\n", channel_number + 1);
SVT_ERROR("Instance %u: PSY-RD strength must be between 0.0 and 6.0\n", channel_number + 1);
return_error = EB_ErrorBadParameter;
}

Expand Down

0 comments on commit 576752e

Please sign in to comment.