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_HPP
|
|
|
|
#define __S9X_SOUND_DRIVER_HPP
|
2010-09-25 17:46:12 +02:00
|
|
|
|
2023-06-07 22:34:10 +02:00
|
|
|
#include <cstdint>
|
|
|
|
#include <tuple>
|
2010-09-25 17:46:12 +02:00
|
|
|
|
|
|
|
class S9xSoundDriver
|
|
|
|
{
|
2019-02-07 02:41:33 +01:00
|
|
|
public:
|
|
|
|
virtual ~S9xSoundDriver()
|
|
|
|
{
|
|
|
|
}
|
2023-06-29 00:58:00 +02:00
|
|
|
virtual bool write_samples(int16_t *data, int samples) = 0;
|
2023-06-07 22:34:10 +02:00
|
|
|
virtual int space_free() = 0;
|
|
|
|
virtual std::pair<int, int> buffer_level() = 0;
|
2019-02-07 02:41:33 +01:00
|
|
|
virtual void init() = 0;
|
2023-06-07 22:34:10 +02:00
|
|
|
virtual void deinit() = 0;
|
|
|
|
virtual bool open_device(int playback_rate, int buffer_size) = 0;
|
2019-02-07 02:41:33 +01:00
|
|
|
virtual void start() = 0;
|
|
|
|
virtual void stop() = 0;
|
2010-09-25 17:46:12 +02:00
|
|
|
};
|
|
|
|
|
2023-06-07 23:06:55 +02:00
|
|
|
#endif /* __S9X_SOUND_DRIVER_HPP */
|