af_scaletempo2: raise max playback rate to 8.0

4.0 was too low and copied from Chromium defaults when the filter was
initially written, there's no good reason for it to be so low, so
double it.
This commit is contained in:
llyyr
2023-09-25 23:47:54 +05:30
committed by Dudemanguy
parent a238afdbc5
commit 2033a3c93e
2 changed files with 2 additions and 2 deletions

View File

@@ -234,7 +234,7 @@ const struct mp_user_filter_entry af_scaletempo2 = {
.priv_size = sizeof(OPT_BASE_STRUCT),
.priv_defaults = &(const OPT_BASE_STRUCT) {
.min_playback_rate = 0.25,
.max_playback_rate = 4.0,
.max_playback_rate = 8.0,
.ola_window_size_ms = 20,
.wsola_search_interval_ms = 30,
},