SDL_UnbindAudioStreams

Unbind a list of audio streams from their audio devices.

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.

extern (C) nothrow @nogc extern
void
SDL_UnbindAudioStreams

Parameters

streams const(SDL_AudioStream*)*

an array of audio streams to unbind. Can be NULL or contain NULL.

num_streams int

number streams listed in the streams array.

Threadsafety: It is safe to call this function from any thread.

See Also

Meta