diff options
| author | 2018-09-22 01:30:28 -0400 | |
|---|---|---|
| committer | 2018-09-22 01:30:28 -0400 | |
| commit | 0246db9ea2752177067d2892aeae9dd8f9820a28 (patch) | |
| tree | d45f318d70ee790e466809612ed36c439b0a9501 /src/audio_core/time_stretch.cpp | |
| parent | Merge pull request #1381 from valentinvanelslande/patch-1 (diff) | |
| parent | Logging: Change the TimeStretch::Process log from debug to trace level. (diff) | |
| download | yuzu-0246db9ea2752177067d2892aeae9dd8f9820a28.tar.gz yuzu-0246db9ea2752177067d2892aeae9dd8f9820a28.tar.xz yuzu-0246db9ea2752177067d2892aeae9dd8f9820a28.zip | |
Merge pull request #1376 from Subv/timestretch_trace
Logging: Change the TimeStretch::Process log from debug to trace level.
Diffstat (limited to 'src/audio_core/time_stretch.cpp')
| -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)); |