// Copyright 2016 Citra Emulator Project // Licensed under GPLv2 or any later version // Refer to the license.txt file included. #pragma once #include #include #include "audio_core/sink.h" namespace AudioCore { class SDL2Sink final : public Sink { public: explicit SDL2Sink(std::string device_id); ~SDL2Sink() override; unsigned int GetNativeSampleRate() const override; void SetCallback(std::function cb) override; private: struct Impl; std::unique_ptr impl; }; std::vector ListSDL2SinkDevices(); } // namespace AudioCore