Updated: October 28, 2024 |
Block until buffered data is fully consumed and then stop the stream (playback) or stop the stream immediately but preserve the buffered data (capture) (plugin-aware)
#include <sys/asoundlib.h> int snd_pcm_plugin_drain( snd_pcm_t *pcm, int channel );
For playback, the snd_pcm_plugin_drain() function blocks until buffered data is fully consumed by the hardware and the stream is stopped. For capture, it stops the stream immediately but preserves the buffered data so that clients can continue to read it until it is fully consumed.
If the channel doesn't start playing (not enough data has been written to start playback), then this call silences the remainder of the buffer to satisfy the playback start requirements. Once the playback requirements are satisfied, playback starts and allows the data to be played out. Once the buffer empties, this call returns successfully.
EOK on success, a negative errno upon failure. The errno values are available in the errno.h file.
QNX Neutrino
Safety: | |
---|---|
Cancellation point | No |
Interrupt handler | No |
Signal handler | Yes |
Thread | Read the Caveats |
This function is not thread safe if pcm (snd_pcm_t) is used across multiple threads.
This function is the plugin-aware version of snd_pcm_channel_drain(). It functions exactly the same way. However, make sure that you don't mix and match plugin- and nonplugin-aware functions in your application, or you may get undefined behavior and misleading results.