audio_create_play_queue

Create a queue of audio from a buffer for streaming.

Syntax:

audio_create_play_queue(queueFormat, queueRate, queueChannels);


Argument Description
queueFormat The format of the buffer data to use (buffer_u8 or buffer_s16).
queueRate The sample rate of the data in the buffer queue.
queueChannels The channels to use from one of the constants listed below.


Returns: Index


Description

This function prepares a buffer queue for audio. You pass data format (only buffer_u8 or buffer_s16 are currently supported), the sample rate (which can be between 1000hz and 48000hz), and the channels that the audio requires from one of the constants listed below:

Constant Description
audio_mono Mono (single channel) audio.
audio_stereo Stereo (dual channel) audio.
audio_3D 3D (5.1) audio.


Note that you should free up any audio queues created with this function when no longer required to prevent memory leaks using the function audio_free_play_queue().

This function will trigger an Audio Playback Asynchronous Event when the queue has reached the end, and in this event a special ds_map will be created in the variable async_load with the following key/value pairs:


Example:

audio_queue = audio_create_play_queue(buffer_s16, 11052, audio_mono);

The above code creates a new audio queue and assigns its index to a variable for future reference.


Back: Audio Buffers
Next: audio_free_play_queue
© Copyright YoYo Games Ltd. 2018 All Rights Reserved