SYNOPSIS

  • #include <allegro5/allegro_audio.h>
    
    bool al_reserve_samples(int reserve_samples)
    
    

DESCRIPTION

Reserves a number of sample instances, attaching them to the default mixer. If no default mixer is set when this function is called, then it will automatically create a voice with an attached mixer, which becomes the default mixer. This diagram illustrates the structures that are set up:

  •                               sample instance 1
                                / sample instance 2
    voice <-- default mixer <---         .
                                \        .
                                  sample instance N
    
    

Returns true on success, false on error. al_install_audio(3alleg5) must have been called first.

RELATED TO al_reserve_samples…

al_set_default_mixer(3alleg5), al_play_sample(3alleg5)