diff options
| author | 2018-09-20 22:33:54 -0500 | |
|---|---|---|
| committer | 2018-09-20 22:33:54 -0500 | |
| commit | 8ba21e28cf4f52470dc024d27e3c837062bc665a (patch) | |
| tree | 4b966005f20e54edb08ba0fd3c738ddd4519cc53 | |
| parent | Merge pull request #1370 from Hedges/GDBClean (diff) | |
| download | yuzu-8ba21e28cf4f52470dc024d27e3c837062bc665a.tar.gz yuzu-8ba21e28cf4f52470dc024d27e3c837062bc665a.tar.xz yuzu-8ba21e28cf4f52470dc024d27e3c837062bc665a.zip | |
Logging: Change the TimeStretch::Process log from debug to trace level.
This function is called too many times and makes the debug logging basically unusable due to the spam.
| -rw-r--r-- | src/audio_core/time_stretch.cpp | 2 |
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, | |||
| 59 | m_stretch_ratio = std::max(m_stretch_ratio, 0.05); | 59 | m_stretch_ratio = std::max(m_stretch_ratio, 0.05); |
| 60 | m_sound_touch.setTempo(m_stretch_ratio); | 60 | m_sound_touch.setTempo(m_stretch_ratio); |
| 61 | 61 | ||
| 62 | LOG_DEBUG(Audio, "{:5}/{:5} ratio:{:0.6f} backlog:{:0.6f}", num_in, num_out, m_stretch_ratio, | 62 | LOG_TRACE(Audio, "{:5}/{:5} ratio:{:0.6f} backlog:{:0.6f}", num_in, num_out, m_stretch_ratio, |
| 63 | backlog_fullness); | 63 | backlog_fullness); |
| 64 | 64 | ||
| 65 | m_sound_touch.putSamples(in, static_cast<u32>(num_in)); | 65 | m_sound_touch.putSamples(in, static_cast<u32>(num_in)); |