logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

SDL_UnbindAudioStream - Unbind a single audio stream from its audio device.

Availability

       This function is available since SDL 3.2.0.

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.

Name

       SDL_UnbindAudioStream - Unbind a single audio stream from its audio device.

See Also

SDL_BindAudioStream(3)

Simple Directmedia Layer                           SDL 3.2.20                           SDL_UnbindAudioStream(3)

Synopsis

#include<SDL3/SDL_audio.h>voidSDL_UnbindAudioStream(SDL_AudioStream*stream);

Thread Safety

       It is safe to call this function from any thread.

See Also