2018-05-25 06:50:37 +01:00
|
|
|
// Copyright 2018 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 CubebSink final : public Sink {
|
|
|
|
public:
|
2018-12-13 21:23:31 +00:00
|
|
|
explicit CubebSink(std::string_view device_id);
|
2018-05-25 06:50:37 +01:00
|
|
|
~CubebSink() override;
|
|
|
|
|
|
|
|
unsigned int GetNativeSampleRate() const override;
|
|
|
|
|
2018-09-08 21:07:28 +01:00
|
|
|
void SetCallback(std::function<void(s16*, std::size_t)> cb) override;
|
2018-05-25 06:50:37 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
struct Impl;
|
|
|
|
std::unique_ptr<Impl> impl;
|
|
|
|
};
|
|
|
|
|
2018-07-02 14:03:14 +01:00
|
|
|
std::vector<std::string> ListCubebSinkDevices();
|
|
|
|
|
2018-05-25 06:50:37 +01:00
|
|
|
} // namespace AudioCore
|