Provided by: libsdl3-doc_3.2.8+ds-1_all bug

NAME

       SDL_AudioStream - The opaque handle that represents an audio stream.

HEADER FILE

       Defined in SDL3/SDL_audio.h

SYNOPSIS

       #include "SDL3/SDL.h"

       typedef struct SDL_AudioStream SDL_AudioStream;

DESCRIPTION

       SDL_AudioStream
        is an audio conversion interface.

       • It can handle resampling data in chunks without generating artifacts,
         when it doesn't have the complete buffer available.

       • It can handle incoming data in any variable size.

       • It can handle input/output format changes on the fly.

       • It can remap audio channels between inputs and outputs.

       • You push data as you have it, and pull it when you need it

       • It can also function as a basic audio data queue even if you just have
         sound that needs to pass from one place to another.

       • You can hook callbacks up to them when more data is added or requested,
         to manage data on-the-fly.

       Audio  streams  are the core of the SDL3 audio interface. You create one or more of them, bind them to an
       opened audio device, and feed data to them (or for recording, consume data from them).

AVAILABILITY

       This struct is available since SDL 3.2.0.

SEE ALSO

       (3), SDL_CreateAudioStream(3)

Simple Directmedia Layer                            SDL 3.2.8                             SDL_AudioStream(3type)