| |||||||||||||||
| |||||||||||||||
Description | |||||||||||||||
This module corresponds to chapter 6 (Buffers) of the OpenAL Specification and Reference (version 1.1). A buffer encapsulates OpenAL state related to storing sample data. The application can request and release buffer objects, and fill them with data. Data can be supplied compressed and encoded as long as the format is supported. Buffers can, internally, contain waveform data as uncompressed or compressed samples. Unlike source (see Sound.OpenAL.AL.Source) and listener (see Sound.OpenAL.AL.Listener) objects, buffer objects can be shared among AL contexts. Buffers are referenced by sources. A single buffer can be referred to by multiple sources. This separation allows drivers and hardware to optimize storage and processing where applicable. The simplest supported format for buffer data is PCM. PCM data is assumed to use the processor's native byte order. Other formats use the byte order native to that format. At this time, buffer states are defined for purposes of discussion. The states described in this section are not exposed through the API (can not be queried, or be set directly), and the state description used in the implementation might differ from this. A buffer is considered to be in one of the following states, with respect to all sources:
The buffer state is dependent on the state of all sources that is has been queued for. A single queue occurrence of a buffer propagates the buffer state (over all sources) from unused to processed or higher. Sources that are in the Stopped or Initial states still have queue entries that cause buffers to be processed. A single queue entry with a single source for which the buffer is not yet processed propagates the buffer's queuing state to pending. Buffers that are processed for a given source can be unqueued from that source's queue. Buffers that have been unqueued from all sources are unused. Buffers that are unused can be deleted, or changed by writing bufferData. | |||||||||||||||
Synopsis | |||||||||||||||
| |||||||||||||||
Documentation | |||||||||||||||
data Buffer | |||||||||||||||
| |||||||||||||||
data MemoryRegion a | |||||||||||||||
| |||||||||||||||
data Format | |||||||||||||||
| |||||||||||||||
data BufferData a | |||||||||||||||
| |||||||||||||||
bufferData :: Buffer -> StateVar (BufferData a) | |||||||||||||||
A special case of buffer state is the actual sound sample data stored in association with the buffer. Applications can specify sample data using bufferData. The data specified is copied to an internal software, or if possible, hardware buffer. The implementation is free to apply decompression, conversion, resampling, and filtering as needed. The internal format of the buffer is not exposed to the application, and not accessible. Buffers containing audio data with more than one channel will be played without 3D spatialization features, these formats are normally used for background music. Applications should always check for an error condition after attempting to specify buffer data in case an implementation has to generate an ALOutOfMemory or a conversion related ALInvalidValue error. The application is free to reuse the memory specified by the data pointer once bufferData is set. The implementation has to dereference, e.g. copy, the data while accessing bufferData execution. | |||||||||||||||
Produced by Haddock version 0.7 |