N64FlashcartMenu
Loading...
Searching...
No Matches
sound.c File Reference

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.
 

Detailed Description

Sound component implementation.

Function Documentation

◆ sound_init_default()

void sound_init_default ( void )

Initialize the default sound system.

This function initializes the default sound system, setting up necessary resources and configurations.

◆ sound_init_mp3_playback()

void sound_init_mp3_playback ( void )

Initialize the sound system for MP3 playback.

Initialize the MP3 playback system.

◆ sound_init_sfx()

void sound_init_sfx ( void )

Initialize the sound effects.

Initialize the sound effects system.

◆ sound_use_sfx()

void sound_use_sfx ( bool state)

Enable or disable sound effects.

Parameters
stateTrue to enable, false to disable.

◆ sound_play_effect()

void sound_play_effect ( sound_effect_t sfx)

Play a sound effect.

Play a specified sound effect.

Parameters
sfxThe sound effect to play.

◆ sound_deinit()

void sound_deinit ( void )

Deinitialize the sound system.

This function deinitializes the sound system, releasing any resources that were allocated.

◆ sound_poll()

void sound_poll ( void )

Poll the sound system to process audio playback.

Poll the sound system.