snes9x/common/audio/s9x_sound_driver_portaudio.hpp

39 lines
1.2 KiB
C++
Raw Normal View History

/*****************************************************************************\
Snes9x - Portable Super Nintendo Entertainment System (TM) emulator.
This file is licensed under the Snes9x License.
For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/
#ifndef __S9X_SOUND_DRIVER_PORTAUDIO_HPP
#define __S9X_SOUND_DRIVER_PORTAUDIO_HPP
2010-09-25 15:46:12 +00:00
#include <errno.h>
#include <portaudio.h>
2010-09-25 15:46:12 +00:00
#include "s9x_sound_driver.hpp"
2010-09-25 15:46:12 +00:00
class S9xPortAudioSoundDriver : public S9xSoundDriver
{
public:
S9xPortAudioSoundDriver();
2023-03-23 21:53:43 +00:00
~S9xPortAudioSoundDriver();
void init() override;
void deinit() override;
bool open_device(int playback_rate, int buffer_size) override;
void start() override;
void stop() override;
2023-06-28 22:58:00 +00:00
bool write_samples(int16_t *data, int samples) override;
int space_free() override;
std::pair<int, int> buffer_level() override;
void samples_available();
2023-03-23 21:53:43 +00:00
bool tryHostAPI(int index);
2010-09-25 15:46:12 +00:00
private:
PaStream *audio_stream;
2023-03-23 21:53:43 +00:00
int playback_rate;
int buffer_size_ms;
int output_buffer_size;
2010-09-25 15:46:12 +00:00
};
#endif /* __S9X_SOUND_DRIVER_PORTAUDIO_HPP */