summaryrefslogtreecommitdiffstats
path: root/src/audio_core/renderer/command/command_processing_time_estimator.cpp
diff options
context:
space:
mode:
authorKelebek1 <eeeedddccc@hotmail.co.uk>2023-09-16 21:48:45 +0200
committerKelebek1 <eeeedddccc@hotmail.co.uk>2023-09-18 11:38:14 +0200
commit5d7571114e2621eeda85d3c4784b9dd5df2f8853 (patch)
tree4053f4c0e98772f352241db4de2de3287fcdb6b2 /src/audio_core/renderer/command/command_processing_time_estimator.cpp
parentMerge pull request #11519 from german77/system-policy (diff)
downloadyuzu-5d7571114e2621eeda85d3c4784b9dd5df2f8853.tar
yuzu-5d7571114e2621eeda85d3c4784b9dd5df2f8853.tar.gz
yuzu-5d7571114e2621eeda85d3c4784b9dd5df2f8853.tar.bz2
yuzu-5d7571114e2621eeda85d3c4784b9dd5df2f8853.tar.lz
yuzu-5d7571114e2621eeda85d3c4784b9dd5df2f8853.tar.xz
yuzu-5d7571114e2621eeda85d3c4784b9dd5df2f8853.tar.zst
yuzu-5d7571114e2621eeda85d3c4784b9dd5df2f8853.zip
Diffstat (limited to '')
-rw-r--r--src/audio_core/renderer/command/command_processing_time_estimator.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/audio_core/renderer/command/command_processing_time_estimator.cpp b/src/audio_core/renderer/command/command_processing_time_estimator.cpp
index a48a016b1..0f7aff1b4 100644
--- a/src/audio_core/renderer/command/command_processing_time_estimator.cpp
+++ b/src/audio_core/renderer/command/command_processing_time_estimator.cpp
@@ -27,12 +27,12 @@ u32 CommandProcessingTimeEstimatorVersion1::Estimate(
u32 CommandProcessingTimeEstimatorVersion1::Estimate(
const AdpcmDataSourceVersion1Command& command) const {
- return static_cast<u32>(command.pitch * 0.25f * 1.2f);
+ return static_cast<u32>(command.pitch * 0.46f * 1.2f);
}
u32 CommandProcessingTimeEstimatorVersion1::Estimate(
const AdpcmDataSourceVersion2Command& command) const {
- return static_cast<u32>(command.pitch * 0.25f * 1.2f);
+ return static_cast<u32>(command.pitch * 0.46f * 1.2f);
}
u32 CommandProcessingTimeEstimatorVersion1::Estimate(