mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-05 01:45:05 +01:00
32 lines
651 B
C
32 lines
651 B
C
|
// 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:
|
||
|
CubebSink();
|
||
|
~CubebSink() override;
|
||
|
|
||
|
unsigned int GetNativeSampleRate() const override;
|
||
|
|
||
|
void EnqueueSamples(const s16* samples, size_t sample_count) override;
|
||
|
|
||
|
size_t SamplesInQueue() const override;
|
||
|
|
||
|
std::vector<std::string> GetDeviceList() const override;
|
||
|
|
||
|
private:
|
||
|
struct Impl;
|
||
|
std::unique_ptr<Impl> impl;
|
||
|
};
|
||
|
|
||
|
} // namespace AudioCore
|