pub type rtaudio_stream_flags_t = c_uint;Expand description
\typedef typedef unsigned long rtaudio_stream_flags_t; \brief RtAudio stream option flags.
The following flags can be OR’ed together to allow a client to make changes to the default stream behavior:
- \e RTAUDIO_FLAGS_NONINTERLEAVED: Use non-interleaved buffers (default = interleaved).
- \e RTAUDIO_FLAGS_MINIMIZE_LATENCY: Attempt to set stream parameters for lowest possible latency.
- \e RTAUDIO_FLAGS_HOG_DEVICE: Attempt grab device for exclusive use.
- \e RTAUDIO_FLAGS_ALSA_USE_DEFAULT: Use the “default” PCM device (ALSA only).
- \e RTAUDIO_FLAGS_JACK_DONT_CONNECT: Do not automatically connect ports (JACK only).
See \ref RtAudioStreamFlags.