diff options
author | clyne <clyne@bitgloo.com> | 2021-03-21 16:34:21 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-21 16:34:21 -0400 |
commit | 9b926b81ef1e8a4c7266494ae2a1369380e01b35 (patch) | |
tree | 746095fa69eccccdc1c2830fdd0c06bac01848f5 /source/common.hpp | |
parent | e080a26651f90c88176140d63a74c93c2f4041a2 (diff) | |
parent | a4f1482a8b23d5f761f60d6f3821c84190d89e2f (diff) |
Merge pull request #3 from tcsullivan/stm32h7
Stm32h7
Diffstat (limited to 'source/common.hpp')
-rw-r--r-- | source/common.hpp | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/source/common.hpp b/source/common.hpp deleted file mode 100644 index 1045b32..0000000 --- a/source/common.hpp +++ /dev/null @@ -1,56 +0,0 @@ -#include <array> -#include <cstdint> - -constexpr unsigned int MAX_SAMPLE_BUFFER_SIZE = 6000; - -using Sample = uint16_t; - -class SampleBuffer -{ -public: - void clear() { - m_buffer.fill(0); - } - void modify(Sample *data, unsigned int srcsize) { - auto size = srcsize < m_size ? srcsize : m_size; - std::copy(data, data + size, m_buffer.data()); - m_modified = m_buffer.data(); - } - void midmodify(Sample *data, unsigned int srcsize) { - auto size = srcsize < m_size / 2 ? srcsize : m_size / 2; - std::copy(data, data + size, middata()); - m_modified = middata(); - } - - void setSize(unsigned int size) { - m_size = size < MAX_SAMPLE_BUFFER_SIZE ? size : MAX_SAMPLE_BUFFER_SIZE; - } - - Sample *data() /*const*/ { - return m_buffer.data(); - } - Sample *middata() /*const*/ { - return m_buffer.data() + m_size / 2; - } - uint8_t *bytedata() /*const*/ { - return reinterpret_cast<uint8_t *>(m_buffer.data()); - } - - Sample *modified() { - auto m = m_modified; - m_modified = nullptr; - return m; - } - unsigned int size() const { - return m_size; - } - unsigned int bytesize() const { - return m_size * sizeof(Sample); - } - -private: - std::array<Sample, MAX_SAMPLE_BUFFER_SIZE> m_buffer; - unsigned int m_size = MAX_SAMPLE_BUFFER_SIZE; - Sample *m_modified = nullptr; -}; - |