From f440728644ad3698ffd6af1abcfcc07aad5793c3 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Tue, 8 Aug 2023 23:10:02 -0400 Subject: initial commit * combine all source files into this monorepo * convert all third-party source packages into submodules * small fixes due to changes in latest third-part packages --- gui/source/wav.hpp | 97 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 97 insertions(+) create mode 100644 gui/source/wav.hpp (limited to 'gui/source/wav.hpp') diff --git a/gui/source/wav.hpp b/gui/source/wav.hpp new file mode 100644 index 0000000..e20776a --- /dev/null +++ b/gui/source/wav.hpp @@ -0,0 +1,97 @@ +#ifndef WAV_HPP_ +#define WAV_HPP_ + +#include +#include +#include +#include +#include + +namespace wav +{ + struct header { + char riff[4]; // "RIFF" + uint32_t filesize; // Total file size minus eight bytes + char wave[4]; // "WAVE" + + bool valid() const { + return strncmp(riff, "RIFF", 4) == 0 && filesize > 8 && strncmp(wave, "WAVE", 4) == 0; + } + } __attribute__ ((packed)); + + struct format { + char fmt_[4]; // "fmt " + uint32_t size; + uint16_t type; + uint16_t channelcount; + uint32_t samplerate; + uint32_t byterate; + uint16_t unused; + uint16_t bps; + + bool valid() const { + return strncmp(fmt_, "fmt ", 4) == 0; + } + } __attribute__ ((packed)); + + struct data { + char data[4]; // "data" + uint32_t size; + + bool valid() const { + return strncmp(data, "data", 4) == 0; + } + } __attribute__ ((packed)); + + class clip { + public: + clip(const std::string& path) { + std::ifstream file (path); + if (!file.good()) + return; + { + header h; + file.read(reinterpret_cast(&h), sizeof(header)); + if (!h.valid()) + return; + } + { + format f; + file.read(reinterpret_cast(&f), sizeof(format)); + if (!f.valid() || f.type != 1) // ensure PCM + return; + } + { + wav::data d; + file.read(reinterpret_cast(&d), sizeof(wav::data)); + if (!d.valid()) + return; + m_data.resize(d.size / sizeof(int16_t)); + m_next = m_data.begin(); + file.read(reinterpret_cast(m_data.data()), d.size); + } + } + clip() = default; + + bool valid() const { + return !m_data.empty(); + } + const int16_t *data() const { + return m_data.data(); + } + void next(int16_t *buf, unsigned int size) { + for (unsigned int i = 0; i < size; ++i) { + if (m_next == m_data.end()) + m_next = m_data.begin(); + else + *buf++ = *m_next++; + } + } + private: + std::vector m_data; + decltype(m_data.begin()) m_next; + }; +} + +#endif // WAV_HPP_ + -- cgit v1.2.3