/** * @author Gary P. SCAVONE * * @copyright 2001-2013 Gary P. Scavone, all right reserved * * @license like MIT (see license file) */ #if !defined(__AIRTAUDIO_API_ALSA_H__) && defined(__LINUX_ALSA__) #define __AIRTAUDIO_API_ALSA_H__ namespace airtaudio { namespace api { class Alsa: public airtaudio::Api { public: static airtaudio::Api* Create(void); public: Alsa(); ~Alsa(); airtaudio::api::type getCurrentApi(void) { return airtaudio::api::LINUX_ALSA; } 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: std::vector m_devices; void saveDeviceInfo(void); 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