mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 13:30:02 +00:00
790024c829
Default to WASAPI though (Auto)
21 lines
653 B
C++
21 lines
653 B
C++
#pragma once
|
|
|
|
#include "Common/CommonWindows.h"
|
|
#include "Core/Config.h"
|
|
|
|
typedef int (*StreamCallback)(short *buffer, int numSamples, int bits, int rate, int channels);
|
|
|
|
// Note that the backend may override the passed in sample rate. The actual sample rate
|
|
// should be returned by GetSampleRate though.
|
|
class WindowsAudioBackend {
|
|
public:
|
|
WindowsAudioBackend() {}
|
|
virtual ~WindowsAudioBackend() {}
|
|
virtual bool Init(HWND window, StreamCallback _callback, int sampleRate) = 0;
|
|
virtual void Update() {} // Doesn't have to do anything
|
|
virtual int GetSampleRate() = 0;
|
|
};
|
|
|
|
// Factory
|
|
WindowsAudioBackend *CreateAudioBackend(AudioBackendType type);
|