openal-soft/al/buffer.h

110 lines
2.5 KiB
C
Raw Normal View History

2019-07-28 21:29:59 -07:00
#ifndef AL_BUFFER_H
#define AL_BUFFER_H
#include <atomic>
2007-11-13 18:02:18 -08:00
2018-01-26 21:32:43 -08:00
#include "AL/al.h"
2019-07-28 21:29:59 -07:00
#include "albyte.h"
#include "almalloc.h"
2018-01-26 21:32:43 -08:00
#include "atomic.h"
2019-07-28 21:29:59 -07:00
#include "inprogext.h"
#include "vector.h"
2007-11-13 18:02:18 -08:00
2011-05-05 22:36:26 -07:00
/* User formats */
enum UserFmtType : unsigned char {
UserFmtUByte,
UserFmtShort,
UserFmtFloat,
UserFmtDouble,
UserFmtMulaw,
UserFmtAlaw,
UserFmtIMA4,
UserFmtMSADPCM,
};
enum UserFmtChannels : unsigned char {
UserFmtMono,
UserFmtStereo,
UserFmtRear,
UserFmtQuad,
UserFmtX51, /* (WFX order) */
UserFmtX61, /* (WFX order) */
UserFmtX71, /* (WFX order) */
2020-04-03 10:07:43 -07:00
UserFmtBFormat2D,
UserFmtBFormat3D,
};
/* Storable formats */
enum FmtType : unsigned char {
FmtUByte = UserFmtUByte,
FmtShort = UserFmtShort,
FmtFloat = UserFmtFloat,
FmtDouble = UserFmtDouble,
FmtMulaw = UserFmtMulaw,
FmtAlaw = UserFmtAlaw,
2010-11-26 23:42:30 -08:00
};
enum FmtChannels : unsigned char {
FmtMono = UserFmtMono,
2010-12-03 22:33:41 -08:00
FmtStereo = UserFmtStereo,
FmtRear = UserFmtRear,
FmtQuad = UserFmtQuad,
FmtX51 = UserFmtX51,
FmtX61 = UserFmtX61,
FmtX71 = UserFmtX71,
FmtBFormat2D = UserFmtBFormat2D,
FmtBFormat3D = UserFmtBFormat3D,
2010-11-26 23:42:30 -08:00
};
ALuint BytesFromFmt(FmtType type) noexcept;
ALuint ChannelsFromFmt(FmtChannels chans, ALuint ambiorder) noexcept;
inline ALuint FrameSizeFromFmt(FmtChannels chans, FmtType type, ALuint ambiorder) noexcept
{ return ChannelsFromFmt(chans, ambiorder) * BytesFromFmt(type); }
2010-11-26 23:42:30 -08:00
struct ALbuffer {
2019-05-24 06:12:20 -07:00
al::vector<al::byte,16> mData;
2019-09-21 16:47:33 -07:00
ALuint Frequency{0u};
ALbitfieldSOFT Access{0u};
ALuint SampleLen{0u};
FmtChannels mFmtChannels{};
FmtType mFmtType{};
UserFmtType OriginalType{};
ALuint OriginalSize{0};
ALuint OriginalAlign{0};
ALenum AmbiLayout{AL_FUMA_SOFT};
ALenum AmbiScaling{AL_FUMA_SOFT};
2020-02-17 00:22:51 -08:00
LPALBUFFERCALLBACKTYPESOFT Callback{nullptr};
void *UserData{nullptr};
ALuint LoopStart{0u};
ALuint LoopEnd{0u};
ALuint UnpackAlign{0};
ALuint PackAlign{0};
ALbitfieldSOFT MappedAccess{0u};
ALsizei MappedOffset{0};
ALsizei MappedSize{0};
/* Number of times buffer was attached to a source (deletion can only occur when 0) */
RefCount ref{0u};
/* Self ID */
ALuint id{0};
inline ALuint bytesFromFmt() const noexcept { return BytesFromFmt(mFmtType); }
inline ALuint channelsFromFmt() const noexcept { return ChannelsFromFmt(mFmtChannels, 1); }
inline ALuint frameSizeFromFmt() const noexcept { return channelsFromFmt() * bytesFromFmt(); }
DISABLE_ALLOC()
};
2007-11-13 18:02:18 -08:00
#endif