diff options
author | Chris Robinson <[email protected]> | 2011-10-01 06:19:55 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-10-01 06:19:55 -0700 |
commit | 8b2e1fdd9a53d0145496b27f7ea0014124ce0d4a (patch) | |
tree | 3e574feaf4fec63825958c95782f9275525f5636 /OpenAL32/Include/alBuffer.h | |
parent | c99b32a8ecbab7aa332d511cf61a412179c0f983 (diff) |
Add buffer properties to get the internal format, and the length in bytes, samples, and seconds
The provided buffer lengths correspond to the source offsets, in that the byte
length specifies the end of the byte offset (ie, when the buffer is used for a
static source, the offset will range between 0 (inclusive) and the byte length
(exclusive)). Although an application could use the AL_SIZE, AL_CHANNELS,
AL_BITS, and AL_FREQUENCY properties to find the length in samples and seconds,
the byte length cannot be reliably calculated this way.
Diffstat (limited to 'OpenAL32/Include/alBuffer.h')
-rw-r--r-- | OpenAL32/Include/alBuffer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/OpenAL32/Include/alBuffer.h b/OpenAL32/Include/alBuffer.h index 7c6bc5b9..d68a4e36 100644 --- a/OpenAL32/Include/alBuffer.h +++ b/OpenAL32/Include/alBuffer.h @@ -72,6 +72,7 @@ typedef struct ALbuffer ALsizei size; ALsizei Frequency; + ALenum Format; enum FmtChannels FmtChannels; enum FmtType FmtType; |