2018-11-16 00:42:29 +01:00
|
|
|
/*****************************************************************************\
|
|
|
|
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.
|
|
|
|
\*****************************************************************************/
|
|
|
|
|
2023-06-07 23:06:55 +02:00
|
|
|
#ifndef __S9X_SOUND_DRIVER_ALSA_HPP
|
|
|
|
#define __S9X_SOUND_DRIVER_ALSA_HPP
|
2010-09-25 17:46:12 +02:00
|
|
|
|
2023-06-07 23:06:55 +02:00
|
|
|
#include "s9x_sound_driver.hpp"
|
2010-09-25 17:46:12 +02:00
|
|
|
#include "alsa/asoundlib.h"
|
|
|
|
|
|
|
|
class S9xAlsaSoundDriver : public S9xSoundDriver
|
|
|
|
{
|
2019-02-07 02:41:33 +01:00
|
|
|
public:
|
|
|
|
S9xAlsaSoundDriver();
|
2023-06-07 22:34:10 +02:00
|
|
|
void init() override;
|
|
|
|
void deinit() override;
|
|
|
|
bool open_device(int playback_rate, int buffer_size_ms) override;
|
|
|
|
void start() override;
|
|
|
|
void stop() override;
|
|
|
|
void write_samples(int16_t *data, int samples) override;
|
|
|
|
int space_free() override;
|
|
|
|
std::pair<int, int> buffer_level() override;
|
2010-09-25 17:46:12 +02:00
|
|
|
|
2019-02-07 02:41:33 +01:00
|
|
|
private:
|
|
|
|
snd_pcm_t *pcm;
|
2023-06-07 22:34:10 +02:00
|
|
|
int output_buffer_size_bytes;
|
2010-09-25 17:46:12 +02:00
|
|
|
};
|
|
|
|
|
2023-06-07 23:06:55 +02:00
|
|
|
#endif /* __S9X_SOUND_DRIVER_ALSA_HPP */
|