Man page - sdl_hint_audio_format(3)

Packages contains this manual

Manual

SDL_HINT_AUDIO_FORMAT

NAME
HEADER FILE
SYNOPSIS
DESCRIPTION
AVAILABILITY

NAME

SDL_HINT_AUDIO_FORMAT - A variable controlling the default audio format.

HEADER FILE

Defined in SDL3/SDL_hints.h

SYNOPSIS

#include "SDL3/SDL.h"

#define SDL_HINT_AUDIO_FORMAT SDL_AUDIO_FORMAT"

DESCRIPTION

If the application doesn’t specify the audio format when opening the device, this hint can be used to specify a default format that will be used.

The variable can be set to the following values:

β€’ "U8": Unsigned 8-bit audio

β€’ "S8": Signed 8-bit audio

β€’ "S16LE": Signed 16-bit little-endian audio

β€’ "S16BE": Signed 16-bit big-endian audio

β€’ "S16": Signed 16-bit native-endian audio (default)

β€’ "S32LE": Signed 32-bit little-endian audio

β€’ "S32BE": Signed 32-bit big-endian audio

β€’ "S32": Signed 32-bit native-endian audio

β€’ "F32LE": Floating point little-endian audio

β€’ "F32BE": Floating point big-endian audio

β€’ "F32": Floating point native-endian audio

This hint should be set before an audio device is opened.

AVAILABILITY

This hint is available since SDL 3.2.0.