AudioCore: SDL2 Sink

This commit is contained in:
MerryMage 2016-04-27 10:57:29 +01:00
parent c1f0044a4b
commit 920d2cf41d
9 changed files with 182 additions and 3 deletions

View file

@ -0,0 +1,30 @@
// Copyright 2016 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include <cstddef>
#include <memory>
#include "audio_core/sink.h"
namespace AudioCore {
class SDL2Sink final : public Sink {
public:
SDL2Sink();
~SDL2Sink() override;
unsigned int GetNativeSampleRate() const override;
void EnqueueSamples(const std::vector<s16>& samples) override;
size_t SamplesInQueue() const override;
private:
struct Impl;
std::unique_ptr<Impl> impl;
};
} // namespace AudioCore