N64FlashcartMenu
|
Sound component implementation. More...
Macros | |
#define | DEFAULT_FREQUENCY (44100) |
#define | NUM_BUFFERS (4) |
#define | NUM_CHANNELS (3) |
Functions | |
void | sound_init_default (void) |
Initialize the default sound system. | |
void | sound_init_mp3_playback (void) |
Initialize the sound system for MP3 playback. | |
void | sound_init_sfx (void) |
Initialize the sound effects. | |
void | sound_use_sfx (bool state) |
Enable or disable sound effects. | |
void | sound_play_effect (sound_effect_t sfx) |
Play a sound effect. | |
void | sound_deinit (void) |
Deinitialize the sound system. | |
void | sound_poll (void) |
Poll the sound system to process audio playback. | |
Sound component implementation.
void sound_init_default | ( | void | ) |
Initialize the default sound system.
This function initializes the default sound system, setting up necessary resources and configurations.
void sound_init_mp3_playback | ( | void | ) |
Initialize the sound system for MP3 playback.
Initialize the MP3 playback system.
void sound_init_sfx | ( | void | ) |
Initialize the sound effects.
Initialize the sound effects system.
void sound_use_sfx | ( | bool | state | ) |
Enable or disable sound effects.
state | True to enable, false to disable. |
void sound_play_effect | ( | sound_effect_t | sfx | ) |
Play a sound effect.
Play a specified sound effect.
sfx | The sound effect to play. |
void sound_deinit | ( | void | ) |
Deinitialize the sound system.
This function deinitializes the sound system, releasing any resources that were allocated.
void sound_poll | ( | void | ) |
Poll the sound system to process audio playback.
Poll the sound system.