48 lines
1.5 KiB
C++
48 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_JACK_H__) && defined(__UNIX_JACK__)
|
|
#define __AIRTAUDIO_API_JACK_H__
|
|
|
|
namespace airtaudio {
|
|
namespace api {
|
|
class Jack: public airtaudio::Api {
|
|
public:
|
|
static airtaudio::Api* Create(void);
|
|
public:
|
|
Jack(void);
|
|
~Jack(void);
|
|
airtaudio::api::type getCurrentApi(void) {
|
|
return airtaudio::api::UNIX_JACK;
|
|
}
|
|
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);
|
|
long getStreamLatency(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!
|
|
bool callbackEvent(uint64_t _nframes);
|
|
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 |