2017-03-22 23:09:59 +00:00
|
|
|
// Copyright 2017 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <cstddef>
|
|
|
|
#include <memory>
|
2017-05-28 03:50:39 +00:00
|
|
|
#include <vector>
|
2017-03-22 23:09:59 +00:00
|
|
|
|
|
|
|
#include "AudioCommon/SoundStream.h"
|
|
|
|
|
|
|
|
#include <cubeb/cubeb.h>
|
|
|
|
|
|
|
|
class CubebStream final : public SoundStream
|
|
|
|
{
|
|
|
|
public:
|
2017-10-21 23:23:40 +00:00
|
|
|
~CubebStream() override;
|
|
|
|
bool Init() override;
|
|
|
|
bool SetRunning(bool running) override;
|
2017-03-22 23:09:59 +00:00
|
|
|
void SetVolume(int) override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool m_stereo = false;
|
2017-04-24 06:55:37 +00:00
|
|
|
std::shared_ptr<cubeb> m_ctx;
|
2017-03-22 23:09:59 +00:00
|
|
|
cubeb_stream* m_stream = nullptr;
|
|
|
|
|
|
|
|
std::vector<short> m_short_buffer;
|
|
|
|
std::vector<float> m_floatstereo_buffer;
|
|
|
|
|
|
|
|
static long DataCallback(cubeb_stream* stream, void* user_data, const void* /*input_buffer*/,
|
|
|
|
void* output_buffer, long num_frames);
|
|
|
|
static void StateCallback(cubeb_stream* stream, void* user_data, cubeb_state state);
|
|
|
|
};
|