SDL_UnbindAudioStreams - Unbind a list of audio streams from their audio devices.
Contents
Availability
This function is available since SDL 3.2.0.
Description
The streams being unbound do not all have to be on the same device. All streams on the same device will
be unbound atomically (data will stop flowing through all unbound streams on the same device at the same
time).
Unbinding a stream that isn't bound to a device is a legal no-op.
Function Parameters
streams
an array of audio streams to unbind. Can be NULL or contain NULL.
num_streams
number streams listed in the streams array.
Name
SDL_UnbindAudioStreams - Unbind a list of audio streams from their audio devices.
See Also
SDL_BindAudioStreams(3) Simple Directmedia Layer SDL 3.2.20 SDL_UnbindAudioStreams(3)
Synopsis
#include<SDL3/SDL_audio.h>voidSDL_UnbindAudioStreams(SDL_AudioStream*const*streams,intnum_streams);
Thread Safety
It is safe to call this function from any thread.
