summaryrefslogtreecommitdiffstats
path: root/src/audio_core/sdl2_sink.cpp
diff options
context:
space:
mode:
authorAndrea Pappacoda <andrea@pappacoda.it>2022-04-01 19:54:58 +0200
committerAndrea Pappacoda <andrea@pappacoda.it>2022-04-01 19:54:58 +0200
commitfaf6a9876c394664d647355726290014b24efffc (patch)
treed6dca0d742af8ccc9443e77583b3c6e51d2841ac /src/audio_core/sdl2_sink.cpp
parentMerge pull request #8128 from FernandoS27/gc-fixes (diff)
downloadyuzu-faf6a9876c394664d647355726290014b24efffc.tar
yuzu-faf6a9876c394664d647355726290014b24efffc.tar.gz
yuzu-faf6a9876c394664d647355726290014b24efffc.tar.bz2
yuzu-faf6a9876c394664d647355726290014b24efffc.tar.lz
yuzu-faf6a9876c394664d647355726290014b24efffc.tar.xz
yuzu-faf6a9876c394664d647355726290014b24efffc.tar.zst
yuzu-faf6a9876c394664d647355726290014b24efffc.zip
Diffstat (limited to 'src/audio_core/sdl2_sink.cpp')
-rw-r--r--src/audio_core/sdl2_sink.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/audio_core/sdl2_sink.cpp b/src/audio_core/sdl2_sink.cpp
index 62d3716a6..2d14ce2cb 100644
--- a/src/audio_core/sdl2_sink.cpp
+++ b/src/audio_core/sdl2_sink.cpp
@@ -7,7 +7,6 @@
#include <cstring>
#include "audio_core/sdl2_sink.h"
#include "audio_core/stream.h"
-#include "audio_core/time_stretch.h"
#include "common/assert.h"
#include "common/logging/log.h"
//#include "common/settings.h"
@@ -27,7 +26,7 @@ namespace AudioCore {
class SDLSinkStream final : public SinkStream {
public:
SDLSinkStream(u32 sample_rate, u32 num_channels_, const std::string& output_device)
- : num_channels{std::min(num_channels_, 6u)}, time_stretch{sample_rate, num_channels} {
+ : num_channels{std::min(num_channels_, 6u)} {
SDL_AudioSpec spec;
spec.freq = sample_rate;
@@ -116,7 +115,6 @@ private:
SDL_AudioDeviceID dev = 0;
u32 num_channels{};
std::atomic<bool> should_flush{};
- TimeStretcher time_stretch;
};
SDLSink::SDLSink(std::string_view target_device_name) {