.\" Automatically generated by Pandoc 2.17.1.1 .\" .\" Define V font for inline verbatim, using C font in formats .\" that render this, and otherwise B font. .ie "\f[CB]x\f[]"x" \{\ . ftr V B . ftr VI BI . ftr VB B . ftr VBI BI .\} .el \{\ . ftr V CR . ftr VI CI . ftr VB CB . ftr VBI CBI .\} .TH "al_play_sample" "3alleg5" "" "Allegro reference manual" "" .hy .SH NAME .PP al_play_sample - Allegro 5 API .SH SYNOPSIS .IP .nf \f[C] #include bool al_play_sample(ALLEGRO_SAMPLE *spl, float gain, float pan, float speed, ALLEGRO_PLAYMODE loop, ALLEGRO_SAMPLE_ID *ret_id) \f[R] .fi .SH DESCRIPTION .PP Plays a sample on one of the sample instances created by al_reserve_samples(3alleg5). Returns true on success, false on failure. Playback may fail because all the reserved sample instances are currently used. .PP Parameters: .IP \[bu] 2 gain - relative volume at which the sample is played; 1.0 is normal. .IP \[bu] 2 pan - 0.0 is centred, -1.0 is left, 1.0 is right, or ALLEGRO_AUDIO_PAN_NONE. .IP \[bu] 2 speed - relative speed at which the sample is played; 1.0 is normal. .IP \[bu] 2 loop - ALLEGRO_PLAYMODE_ONCE, ALLEGRO_PLAYMODE_LOOP, or ALLEGRO_PLAYMODE_BIDIR .IP \[bu] 2 ret_id - if non-NULL the variable which this points to will be assigned an id representing the sample being played. If al_play_sample(3alleg5) returns \f[V]false\f[R], then the contents of ret_id are invalid and must not be used as argument to other functions. .SH SEE ALSO .PP al_load_sample(3alleg5), ALLEGRO_PLAYMODE(3alleg5), ALLEGRO_AUDIO_PAN_NONE(3alleg5), ALLEGRO_SAMPLE_ID(3alleg5), al_stop_sample(3alleg5), al_stop_samples(3alleg5), al_lock_sample_id(3alleg5).