diff options
author | Chris Robinson <[email protected]> | 2023-02-14 08:38:25 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2023-02-14 08:39:30 -0800 |
commit | 5c8855b9a1849af855923aa1b87005febd01704b (patch) | |
tree | 0100feb60ef3cd3bca241d330ff219af2b76ec4e /core/buffer_storage.cpp | |
parent | a84efdc45936bcc4427af272b975c6a197081c22 (diff) |
Support MSADPCM samples in the mixer
Diffstat (limited to 'core/buffer_storage.cpp')
-rw-r--r-- | core/buffer_storage.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/buffer_storage.cpp b/core/buffer_storage.cpp index 1e826bff..4f1480c2 100644 --- a/core/buffer_storage.cpp +++ b/core/buffer_storage.cpp @@ -17,6 +17,7 @@ uint BytesFromFmt(FmtType type) noexcept case FmtMulaw: return sizeof(uint8_t); case FmtAlaw: return sizeof(uint8_t); case FmtIMA4: break; + case FmtMSADPCM: break; } return 0; } |