audio_core: Implement a cubeb audio sink

This commit is contained in:
darkf 2018-05-25 00:50:37 -05:00
parent 83ee80666f
commit af73dd45f0
6 changed files with 194 additions and 0 deletions

View file

@ -0,0 +1,34 @@
// 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;
void SetDevice(int device_id) override;
private:
struct Impl;
std::unique_ptr<Impl> impl;
int device_id;
std::vector<std::string> device_list;
};
} // namespace AudioCore