| SDL_UnbindAudioStreams(3) | SDL3 FUNCTIONS | SDL_UnbindAudioStreams(3) |
SDL_UnbindAudioStreams - Unbind a list of audio streams from their audio devices.
Defined in SDL3/SDL_audio.h
#include "SDL3/SDL.h"
void SDL_UnbindAudioStreams(SDL_AudioStream * const *streams, int num_streams);
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.
It is safe to call this function from any thread.
This function is available since SDL 3.2.0.
•(3), SDL_BindAudioStreams(3)
| SDL 3.2.10 | Simple Directmedia Layer |