SDL_UnbindAudioStream - Man Page
Unbind a single audio stream from its audio device.
Synopsis
#include <SDL3/SDL_audio.h> void SDL_UnbindAudioStream(SDL_AudioStream *stream);
Description
This is a convenience function, equivalent to calling SDL_UnbindAudioStreams(&stream, 1).
Function Parameters
- stream
an audio stream to unbind from a device. Can be NULL.
Thread Safety
It is safe to call this function from any thread.
Availability
This function is available since SDL 3.2.0.
See Also
Referenced By
SDL_BindAudioStream(3), SDL_BindAudioStreams(3).
SDL 3.2.16 Simple Directmedia Layer SDL3 FUNCTIONS