libdragon
|
Support for WAV64 audio files. More...
Go to the source code of this file.
Data Structures | |
struct | wav64_t |
WAV64 structure. More... | |
Functions | |
void | wav64_open (wav64_t *wav, const char *fn) |
Open a WAV64 file for playback. | |
void | wav64_set_loop (wav64_t *wav, bool loop) |
Configure a WAV64 file for looping playback. | |
void | wav64_play (wav64_t *wav, int ch) |
Start playing a WAV64 file. | |
int | wav64_get_bitrate (wav64_t *wav) |
Get the (possibly compressed) bitrate of the WAV64 file. | |
void | wav64_close (wav64_t *wav) |
Close a WAV64 file. | |
Support for WAV64 audio files.
struct wav64_t |
WAV64 structure.
This structure is initialized by wav64_open to refer to an opened WAV64 file. It is meant to be played back through the audio mixer, implementing the waveform_t interface. As such, samples are not preloaded in memory but rather loaded on request when needed for playback, streaming directly from ROM. See waveform_t for more details.
Use wav64_play to playback. For more advanced usage, call directly the mixer functions, accessing the wave structure field.
Data Fields | ||
---|---|---|
waveform_t | wave |
waveform_t for this WAV64. Access and use this field directly with the mixer, if needed. |
uint32_t | rom_addr | Absolute ROM address of WAV64. |
int | format | Internal format of the file. |
void * | ext | Pointer to extended data (internal use) |
void wav64_open | ( | wav64_t * | wav, |
const char * | fn | ||
) |
Open a WAV64 file for playback.
This function opens the file, parses the header, and initializes for playing back through the audio mixer.
wav | Pointer to wav64_t structure |
fn | Filename of the wav64 (with filesystem prefix). Currently, only files on DFS ("rom:/") are supported. |
void wav64_play | ( | wav64_t * | wav, |
int | ch | ||
) |
Start playing a WAV64 file.
This is just a simple wrapper that calls mixer_ch_play on the WAV64's waveform (wav64_t::wave). For advanced usages, please call directly the mixer functions.
wav | Pointer to wav64_t structure |
ch | Channel of the mixer to use for playback. |
int wav64_get_bitrate | ( | wav64_t * | wav | ) |
Get the (possibly compressed) bitrate of the WAV64 file.
wav | Pointer to wav64_t structure |