47 lines
1.5 KiB
C++
47 lines
1.5 KiB
C++
/**
|
|
* @author Gary P. SCAVONE
|
|
*
|
|
* @copyright 2001-2013 Gary P. Scavone, all right reserved
|
|
*
|
|
* @license like MIT (see license file)
|
|
*/
|
|
|
|
#if !defined(__AIRTAUDIO_API_OSS_H__) && defined(__LINUX_OSS__)
|
|
#define __AIRTAUDIO_API_OSS_H__
|
|
|
|
namespace airtaudio {
|
|
namespace api {
|
|
class Oss: public airtaudio::Api {
|
|
public:
|
|
static airtaudio::Api* Create(void);
|
|
public:
|
|
Oss(void);
|
|
~Oss(void);
|
|
airtaudio::api::type getCurrentApi(void) {
|
|
return airtaudio::api::LINUX_OSS;
|
|
}
|
|
uint32_t getDeviceCount(void);
|
|
airtaudio::DeviceInfo getDeviceInfo(uint32_t _device);
|
|
enum airtaudio::errorType closeStream(void);
|
|
enum airtaudio::errorType startStream(void);
|
|
enum airtaudio::errorType stopStream(void);
|
|
enum airtaudio::errorType abortStream(void);
|
|
// This function is intended for internal use only. It must be
|
|
// public because it is called by the internal callback handler,
|
|
// which is not a member of RtAudio. External use of this function
|
|
// will most likely produce highly undesireable results!
|
|
void callbackEvent(void);
|
|
private:
|
|
bool probeDeviceOpen(uint32_t _device,
|
|
airtaudio::api::StreamMode _mode,
|
|
uint32_t _channels,
|
|
uint32_t _firstChannel,
|
|
uint32_t _sampleRate,
|
|
airtaudio::format _format,
|
|
uint32_t *_bufferSize,
|
|
airtaudio::StreamOptions *_options);
|
|
};
|
|
};
|
|
};
|
|
|
|
#endif |