summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-09-22 07:30:28 +0200
committerGitHub <noreply@github.com>2018-09-22 07:30:28 +0200
commit0246db9ea2752177067d2892aeae9dd8f9820a28 (patch)
treed45f318d70ee790e466809612ed36c439b0a9501 /src
parentMerge pull request #1381 from valentinvanelslande/patch-1 (diff)
parentLogging: Change the TimeStretch::Process log from debug to trace level. (diff)
downloadyuzu-0246db9ea2752177067d2892aeae9dd8f9820a28.tar
yuzu-0246db9ea2752177067d2892aeae9dd8f9820a28.tar.gz
yuzu-0246db9ea2752177067d2892aeae9dd8f9820a28.tar.bz2
yuzu-0246db9ea2752177067d2892aeae9dd8f9820a28.tar.lz
yuzu-0246db9ea2752177067d2892aeae9dd8f9820a28.tar.xz
yuzu-0246db9ea2752177067d2892aeae9dd8f9820a28.tar.zst
yuzu-0246db9ea2752177067d2892aeae9dd8f9820a28.zip
Diffstat (limited to 'src')
-rw-r--r--src/audio_core/time_stretch.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audio_core/time_stretch.cpp b/src/audio_core/time_stretch.cpp
index fc14151da..d72d67994 100644
--- a/src/audio_core/time_stretch.cpp
+++ b/src/audio_core/time_stretch.cpp
@@ -59,7 +59,7 @@ std::size_t TimeStretcher::Process(const s16* in, std::size_t num_in, s16* out,
m_stretch_ratio = std::max(m_stretch_ratio, 0.05);
m_sound_touch.setTempo(m_stretch_ratio);
- LOG_DEBUG(Audio, "{:5}/{:5} ratio:{:0.6f} backlog:{:0.6f}", num_in, num_out, m_stretch_ratio,
+ LOG_TRACE(Audio, "{:5}/{:5} ratio:{:0.6f} backlog:{:0.6f}", num_in, num_out, m_stretch_ratio,
backlog_fullness);
m_sound_touch.putSamples(in, static_cast<u32>(num_in));