(This is the documentation for SDL3, which is under heavy development and the API is changing! SDL2 is the current stable version!)

SDL_AUDIO_ISBIGENDIAN

Determine if an SDL_AudioFormat represents bigendian data.

Header File

Defined in <SDL3/SDL_audio.h>

Syntax

#define SDL_AUDIO_ISBIGENDIAN(x)     ((x) & SDL_AUDIO_MASK_BIG_ENDIAN)

Macro Parameters

x an SDL_AudioFormat value

Return Value

Returns non-zero if format is bigendian, zero otherwise.

Remarks

For example, SDL_AUDIO_ISBIGENDIAN(SDL_AUDIO_S16LE) returns 0.

Thread Safety

It is safe to call this macro from any thread.

Version

This macro is available since SDL 3.0.0.


CategoryAPI, CategoryAPIMacro, CategoryAudio