27 lines
576 B
C++
27 lines
576 B
C++
/**
|
|
* @author Gary P. SCAVONE
|
|
*
|
|
* @copyright 2001-2013 Gary P. Scavone, all right reserved
|
|
*
|
|
* @license like MIT (see license file)
|
|
*/
|
|
|
|
#ifndef __AIRTAUDIO_STREAM_OPTION_H__
|
|
#define __AIRTAUDIO_STREAM_OPTION_H__
|
|
|
|
namespace airtaudio {
|
|
class StreamOptions {
|
|
public:
|
|
airtaudio::Flags flags; //!< A bit-mask of stream flags
|
|
uint32_t numberOfBuffers; //!< Number of stream buffers.
|
|
std::string streamName; //!< A stream name (currently used only in Jack).
|
|
// Default constructor.
|
|
StreamOptions() :
|
|
flags(),
|
|
numberOfBuffers(0){}
|
|
};
|
|
};
|
|
|
|
#endif
|
|
|