Scroll to navigation

Mix_Chunk(3type) SDL_mixer3 DATATYPES Mix_Chunk(3type)

NAME

Mix_Chunk - The internal format for an audio chunk

HEADER FILE

Defined in SDL3_mixer/SDL_mixer.h

SYNOPSIS

#include "SDL3_mixer/SDL_mixer.h"
typedef struct Mix_Chunk {
    int allocated;
    Uint8 *abuf;
    Uint32 alen;
    Uint8 volume;       /* Per-sample volume, 0-128 */
} Mix_Chunk;
SDL_mixer 3.0.0 SDL_mixer