mirror of
https://github.com/librespot-org/librespot.git
synced 2024-11-08 16:45:43 +00:00
Respect disabled normalisation with maximum volume (#1159)
This commit is contained in:
parent
03b547d3b3
commit
31d18f7e30
2 changed files with 6 additions and 3 deletions
|
@ -112,6 +112,7 @@ https://github.com/librespot-org/librespot
|
||||||
from the beginning
|
from the beginning
|
||||||
- [playback] Handle disappearing and invalid devices better
|
- [playback] Handle disappearing and invalid devices better
|
||||||
- [playback] Handle seek, pause, and play commands while loading
|
- [playback] Handle seek, pause, and play commands while loading
|
||||||
|
- [playback] Handle disabled normalisation correctly when using fixed volume
|
||||||
- [metadata] Fix missing colon when converting named spotify IDs to URIs
|
- [metadata] Fix missing colon when converting named spotify IDs to URIs
|
||||||
|
|
||||||
## [0.4.2] - 2022-07-29
|
## [0.4.2] - 2022-07-29
|
||||||
|
|
|
@ -1545,9 +1545,11 @@ impl PlayerInternal {
|
||||||
// dynamic method, there may still be peaks that we want to shave off.
|
// dynamic method, there may still be peaks that we want to shave off.
|
||||||
|
|
||||||
// No matter the case we apply volume attenuation last if there is any.
|
// No matter the case we apply volume attenuation last if there is any.
|
||||||
if !self.config.normalisation && volume < 1.0 {
|
if !self.config.normalisation {
|
||||||
for sample in data.iter_mut() {
|
if volume < 1.0 {
|
||||||
*sample *= volume;
|
for sample in data.iter_mut() {
|
||||||
|
*sample *= volume;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else if self.config.normalisation_method == NormalisationMethod::Basic
|
} else if self.config.normalisation_method == NormalisationMethod::Basic
|
||||||
&& (normalisation_factor < 1.0 || volume < 1.0)
|
&& (normalisation_factor < 1.0 || volume < 1.0)
|
||||||
|
|
Loading…
Reference in a new issue