.\" Generated by the Allegro makedoc utility .TH free_audio_stream_buffer 3alleg4 "version 4.4.3" "Allegro" "Allegro manual" .SH NAME free_audio_stream_buffer \- Tells the audio stream player new data can be played. Allegro game programming library.\& .SH SYNOPSIS .B #include .sp .B void free_audio_stream_buffer(AUDIOSTREAM *stream); .SH DESCRIPTION Call this function after get_audio_stream_buffer() returns a non-NULL address, to indicate that you have loaded a new block of samples to that location and the data is now ready to be played. Example: .nf mem_chunk = get_audio_stream_buffer(buffer); if (mem_chunk != NULL) { /* Refill the stream buffer. */ ... free_audio_stream_buffer(buffer); } .fi .SH SEE ALSO .BR get_audio_stream_buffer (3alleg4), .BR exstream (3alleg4)