From ff380298e4086490584707b8ffde44c5ad64830f Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Tue, 27 Apr 2021 08:26:42 -0700 Subject: Move BufferStorage and Voice to core --- alc/buffer_storage.cpp | 41 ----------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 alc/buffer_storage.cpp (limited to 'alc/buffer_storage.cpp') diff --git a/alc/buffer_storage.cpp b/alc/buffer_storage.cpp deleted file mode 100644 index 3eb1e28a..00000000 --- a/alc/buffer_storage.cpp +++ /dev/null @@ -1,41 +0,0 @@ - -#include "config.h" - -#include "buffer_storage.h" - -#include - - -uint BytesFromFmt(FmtType type) noexcept -{ - switch(type) - { - case FmtUByte: return sizeof(uint8_t); - case FmtShort: return sizeof(int16_t); - case FmtFloat: return sizeof(float); - case FmtDouble: return sizeof(double); - case FmtMulaw: return sizeof(uint8_t); - case FmtAlaw: return sizeof(uint8_t); - } - return 0; -} - -uint ChannelsFromFmt(FmtChannels chans, uint ambiorder) noexcept -{ - switch(chans) - { - case FmtMono: return 1; - case FmtStereo: return 2; - case FmtRear: return 2; - case FmtQuad: return 4; - case FmtX51: return 6; - case FmtX61: return 7; - case FmtX71: return 8; - case FmtBFormat2D: return (ambiorder*2) + 1; - case FmtBFormat3D: return (ambiorder+1) * (ambiorder+1); - case FmtUHJ2: return 2; - case FmtUHJ3: return 3; - case FmtUHJ4: return 4; - } - return 0; -} -- cgit v1.2.3