mirror of https://github.com/auygun/kaliber.git
59 lines
1.3 KiB
C++
59 lines
1.3 KiB
C++
#ifndef ENGINE_AUDIO_AUDIO_DRIVER_OBOE_H
|
|
#define ENGINE_AUDIO_AUDIO_DRIVER_OBOE_H
|
|
|
|
#include <memory>
|
|
|
|
#include "third_party/oboe/include/oboe/AudioStream.h"
|
|
#include "third_party/oboe/include/oboe/AudioStreamCallback.h"
|
|
|
|
#include "engine/audio/audio_driver.h"
|
|
|
|
namespace eng {
|
|
|
|
class AudioDriverOboe final : public AudioDriver {
|
|
public:
|
|
AudioDriverOboe();
|
|
~AudioDriverOboe() final;
|
|
|
|
void SetDelegate(AudioDriverDelegate* delegate) final;
|
|
|
|
bool Initialize() final;
|
|
|
|
void Shutdown() final;
|
|
|
|
void Suspend() final;
|
|
void Resume() final;
|
|
|
|
int GetHardwareSampleRate() final;
|
|
|
|
private:
|
|
static constexpr int kChannelCount = 2;
|
|
|
|
class StreamCallback final : public oboe::AudioStreamCallback {
|
|
public:
|
|
StreamCallback(AudioDriverOboe* audio);
|
|
~StreamCallback() final;
|
|
|
|
oboe::DataCallbackResult onAudioReady(oboe::AudioStream* oboe_stream,
|
|
void* audio_data,
|
|
int32_t num_frames) final;
|
|
|
|
void onErrorAfterClose(oboe::AudioStream* oboe_stream,
|
|
oboe::Result error) final;
|
|
|
|
private:
|
|
AudioDriverOboe* driver_;
|
|
};
|
|
|
|
oboe::ManagedStream stream_;
|
|
std::unique_ptr<StreamCallback> callback_;
|
|
|
|
AudioDriverDelegate* delegate_ = nullptr;
|
|
|
|
bool RestartStream();
|
|
};
|
|
|
|
} // namespace eng
|
|
|
|
#endif // ENGINE_AUDIO_AUDIO_DRIVER_OBOE_H
|