Check if a chunk decoder is available by name.
Defined in <SDL_mixer.h>
const char *name); SDL_bool Mix_HasChunkDecoder(
const char * | name | the decoder name to query. |
(SDL_bool) Returns SDL_TRUE if a decoder by that name is available, SDL_FALSE otherwise.
This result can change between builds AND runs of the program, if external libraries that add functionality become available. You must successfully call Mix_OpenAudio() or Mix_OpenAudioDevice() before calling this function, as decoders are activated at device open time.
Decoder names are arbitrary but also obvious, so you have to know what you're looking for ahead of time, but usually it's the file extension in capital letters (some example names are "AIFF", "VOC", "WAV").
This function is available since SDL_mixer 2.0.2.