1
0
Fork 0

Default downwards hi-freq rolloff to 0.25

Sort of makes sense to have these two be symmetrical
This commit is contained in:
Robbert van der Helm 2022-07-24 17:43:31 +02:00
parent 22dcbdf4a9
commit d53d03c5cf

View file

@ -306,7 +306,8 @@ impl CompressorParams {
if param_id_prefix == UPWARDS_NAME_PREFIX { if param_id_prefix == UPWARDS_NAME_PREFIX {
0.75 0.75
} else { } else {
0.0 // These basically work in the opposite way
0.25
}, },
FloatRange::Linear { min: 0.0, max: 1.0 }, FloatRange::Linear { min: 0.0, max: 1.0 },
) )