diff options
author | Chris Robinson <[email protected]> | 2019-05-26 12:54:54 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-05-26 12:54:54 -0700 |
commit | 20e3c78aef6b745d656fa1a28f4a95c98aac6928 (patch) | |
tree | 0c355ea3c72ab27b70f9275b7e58b6159f7d5727 /Alc | |
parent | 63a130204c829c5c81631cfa8c579d78048fdb6e (diff) |
Use al::byte instead of char for generic data storage
Diffstat (limited to 'Alc')
-rw-r--r-- | Alc/ringbuffer.cpp | 20 | ||||
-rw-r--r-- | Alc/ringbuffer.h | 5 |
2 files changed, 13 insertions, 12 deletions
diff --git a/Alc/ringbuffer.cpp b/Alc/ringbuffer.cpp index 7f0aa630..ddfeab42 100644 --- a/Alc/ringbuffer.cpp +++ b/Alc/ringbuffer.cpp @@ -63,7 +63,7 @@ void RingBuffer::reset() noexcept { mWritePtr.store(0, std::memory_order_relaxed); mReadPtr.store(0, std::memory_order_relaxed); - std::fill_n(mBuffer, (mSizeMask+1)*mElemSize, 0); + std::fill_n(mBuffer, (mSizeMask+1)*mElemSize, al::byte{}); } @@ -107,7 +107,7 @@ size_t RingBuffer::read(void *dest, size_t cnt) noexcept read_ptr += n1; if(n2 > 0) { - memcpy(static_cast<char*>(dest) + n1*mElemSize, mBuffer, n2*mElemSize); + memcpy(static_cast<al::byte*>(dest) + n1*mElemSize, mBuffer, n2*mElemSize); read_ptr += n2; } mReadPtr.store(read_ptr, std::memory_order_release); @@ -137,7 +137,7 @@ size_t RingBuffer::peek(void *dest, size_t cnt) const noexcept memcpy(dest, mBuffer + read_ptr*mElemSize, n1*mElemSize); if(n2 > 0) - memcpy(static_cast<char*>(dest) + n1*mElemSize, mBuffer, n2*mElemSize); + memcpy(static_cast<al::byte*>(dest) + n1*mElemSize, mBuffer, n2*mElemSize); return to_read; } @@ -166,7 +166,7 @@ size_t RingBuffer::write(const void *src, size_t cnt) noexcept write_ptr += n1; if(n2 > 0) { - memcpy(mBuffer, static_cast<const char*>(src) + n1*mElemSize, n2*mElemSize); + memcpy(mBuffer, static_cast<const al::byte*>(src) + n1*mElemSize, n2*mElemSize); write_ptr += n2; } mWritePtr.store(write_ptr, std::memory_order_release); @@ -200,15 +200,15 @@ ll_ringbuffer_data_pair RingBuffer::getReadVector() const noexcept { /* Two part vector: the rest of the buffer after the current read ptr, * plus some from the start of the buffer. */ - ret.first.buf = const_cast<char*>(&mBuffer[r*mElemSize]); + ret.first.buf = const_cast<al::byte*>(&mBuffer[r*mElemSize]); ret.first.len = mSizeMask+1 - r; - ret.second.buf = const_cast<char*>(mBuffer); + ret.second.buf = const_cast<al::byte*>(mBuffer); ret.second.len = cnt2 & mSizeMask; } else { /* Single part vector: just the rest of the buffer */ - ret.first.buf = const_cast<char*>(&mBuffer[r*mElemSize]); + ret.first.buf = const_cast<al::byte*>(&mBuffer[r*mElemSize]); ret.first.len = free_cnt; ret.second.buf = nullptr; ret.second.len = 0; @@ -232,14 +232,14 @@ ll_ringbuffer_data_pair RingBuffer::getWriteVector() const noexcept { /* Two part vector: the rest of the buffer after the current write ptr, * plus some from the start of the buffer. */ - ret.first.buf = const_cast<char*>(&mBuffer[w*mElemSize]); + ret.first.buf = const_cast<al::byte*>(&mBuffer[w*mElemSize]); ret.first.len = mSizeMask+1 - w; - ret.second.buf = const_cast<char*>(mBuffer); + ret.second.buf = const_cast<al::byte*>(mBuffer); ret.second.len = cnt2 & mSizeMask; } else { - ret.first.buf = const_cast<char*>(&mBuffer[w*mElemSize]); + ret.first.buf = const_cast<al::byte*>(&mBuffer[w*mElemSize]); ret.first.len = free_cnt; ret.second.buf = nullptr; ret.second.len = 0; diff --git a/Alc/ringbuffer.h b/Alc/ringbuffer.h index 311477c9..6554f95a 100644 --- a/Alc/ringbuffer.h +++ b/Alc/ringbuffer.h @@ -7,6 +7,7 @@ #include <memory> #include <utility> +#include "albyte.h" #include "almalloc.h" @@ -17,7 +18,7 @@ */ struct ll_ringbuffer_data { - char *buf; + al::byte *buf; size_t len; }; using ll_ringbuffer_data_pair = std::pair<ll_ringbuffer_data,ll_ringbuffer_data>; @@ -30,7 +31,7 @@ struct RingBuffer { size_t mSizeMask{0u}; size_t mElemSize{0u}; - alignas(16) char mBuffer[]; + alignas(16) al::byte mBuffer[]; /** Reset the read and write pointers to zero. This is not thread safe. */ void reset() noexcept; |