aboutsummaryrefslogtreecommitdiffstats
path: root/al/buffer.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2020-04-03 21:43:57 -0700
committerChris Robinson <[email protected]>2020-04-03 21:43:57 -0700
commit902f5a0dd267e0849e93e863a24a0a350d1696f9 (patch)
tree74a55fcd3ba143f58b6f117c21a64757dc68f61d /al/buffer.h
parentbd50601f15dbd04ff2cde63699575a1864d32e66 (diff)
Add an ambisonic order parameter to the buffer channel count
Diffstat (limited to 'al/buffer.h')
-rw-r--r--al/buffer.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/al/buffer.h b/al/buffer.h
index 15367a63..44ada667 100644
--- a/al/buffer.h
+++ b/al/buffer.h
@@ -58,9 +58,9 @@ enum FmtChannels : unsigned char {
};
ALuint BytesFromFmt(FmtType type) noexcept;
-ALuint ChannelsFromFmt(FmtChannels chans) noexcept;
-inline ALuint FrameSizeFromFmt(FmtChannels chans, FmtType type) noexcept
-{ return ChannelsFromFmt(chans) * BytesFromFmt(type); }
+ALuint ChannelsFromFmt(FmtChannels chans, ALuint ambiorder) noexcept;
+inline ALuint FrameSizeFromFmt(FmtChannels chans, FmtType type, ALuint ambiorder) noexcept
+{ return ChannelsFromFmt(chans, ambiorder) * BytesFromFmt(type); }
struct ALbuffer {
@@ -100,7 +100,7 @@ struct ALbuffer {
ALuint id{0};
inline ALuint bytesFromFmt() const noexcept { return BytesFromFmt(mFmtType); }
- inline ALuint channelsFromFmt() const noexcept { return ChannelsFromFmt(mFmtChannels); }
+ inline ALuint channelsFromFmt() const noexcept { return ChannelsFromFmt(mFmtChannels, 1); }
inline ALuint frameSizeFromFmt() const noexcept { return channelsFromFmt() * bytesFromFmt(); }
DISABLE_ALLOC()