Libretro: Do not adjust sample rate for audio (fixes sound regression)
This commit is contained in:
parent
d612c6a4cb
commit
e18fab0557
1 changed files with 6 additions and 4 deletions
|
@ -204,10 +204,12 @@ void SoundMixer::UpdateRates(bool forceUpdate)
|
||||||
AudioStatistics stats = GetStatistics();
|
AudioStatistics stats = GetStatistics();
|
||||||
int32_t requestedLatency = (int32_t)EmulationSettings::GetAudioLatency();
|
int32_t requestedLatency = (int32_t)EmulationSettings::GetAudioLatency();
|
||||||
double targetRate = _sampleRate;
|
double targetRate = _sampleRate;
|
||||||
if(stats.AverageLatency > requestedLatency + 2) {
|
if(stats.AverageLatency > 0 && EmulationSettings::GetEmulationSpeed(100)) {
|
||||||
targetRate *= 1.005;
|
if(stats.AverageLatency > requestedLatency + 2) {
|
||||||
} else if(stats.AverageLatency < requestedLatency - 2) {
|
targetRate *= 1.005;
|
||||||
targetRate *= 0.995;
|
} else if(stats.AverageLatency < requestedLatency - 2) {
|
||||||
|
targetRate *= 0.995;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(_clockRate != newRate || forceUpdate) {
|
if(_clockRate != newRate || forceUpdate) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue