2#include <ossia/dataflow/float_to_sample.hpp>
6#include <ossia-config.hpp>
19 int16_t meter_denom{};
25struct drwav_handle final
28 static const constexpr drwav_allocation_callbacks drwav_allocs{
29 nullptr, [](
size_t sz,
void* pUserData) {
return malloc(sz); },
30 [](
void* p,
size_t sz,
void* pUserData) {
return realloc(p, sz); },
31 [](
void* p,
void* pUserData) {
return free(p); }};
32 drwav_handle() noexcept = default;
33 drwav_handle(const
void* data,
size_t dataSize) noexcept
36 drwav_init_memory_ex(impl, data, dataSize, on_chunk,
this, 0, &drwav_allocs);
39 drwav_handle(drwav_handle&& other) noexcept
41 , m_acid{other.m_acid}
47 drwav_handle(
const drwav_handle& other)
noexcept
49 if(other.impl && other.impl->memoryStream.data)
53 impl, other.impl->memoryStream.data, other.impl->memoryStream.dataSize,
54 on_chunk,
this, 0, &drwav_allocs);
58 static drwav_uint64 on_chunk(
59 void* pChunkUserData, drwav_read_proc onRead, drwav_seek_proc onSeek,
60 void* pReadSeekUserData,
const drwav_chunk_header* pChunkHeader,
61 drwav_container container,
const drwav_fmt* pFMT)
noexcept
63 drwav_handle& self = *(drwav_handle*)pChunkUserData;
64 auto& cc = pChunkHeader->id.fourcc;
65 static const constexpr drwav_uint8 acid[4] = {
'a',
'c',
'i',
'd'};
66 if(std::equal(cc, cc + 4, acid, acid + 4))
68 onRead(pReadSeekUserData, &self.m_acid,
sizeof(acid_chunk));
69 return sizeof(acid_chunk);
74 drwav_handle& operator=(drwav_handle&& other)
noexcept
88 drwav_handle& operator=(
const drwav_handle& other)
noexcept
97 if(other.impl->memoryStream.data)
100 drwav_init_memory_ex(
101 impl, other.impl->memoryStream.data, other.impl->memoryStream.dataSize,
102 on_chunk,
this, 0, &drwav_allocs);
116 operator bool() const noexcept {
return bool(impl); }
117 auto open_memory(
const void* data,
size_t dataSize)
noexcept
126 drwav_init_memory_ex(impl, data, dataSize, on_chunk,
this, 0, &drwav_allocs);
129 auto seek_to_pcm_frame(drwav_uint64 targetFrameIndex)
noexcept
131 return drwav_seek_to_pcm_frame(impl, targetFrameIndex);
134 auto read_pcm_frames(drwav_uint64 framesToRead,
void* buffer)
noexcept
136 return drwav_read_pcm_frames(impl, framesToRead, buffer);
139 auto read_pcm_frames_s16(drwav_uint64 framesToRead, int16_t* buffer)
noexcept
141 return drwav_read_pcm_frames_s16(impl, framesToRead, buffer);
144 auto read_pcm_frames_f32(drwav_uint64 framesToRead,
float* buffer)
noexcept
146 return drwav_read_pcm_frames_f32(impl, framesToRead, buffer);
149 [[nodiscard]]
auto channels() const noexcept {
return impl->channels; }
150 [[nodiscard]]
auto translatedFormatTag() const noexcept
152 return impl->translatedFormatTag;
154 [[nodiscard]]
auto bitsPerSample() const noexcept {
return impl->bitsPerSample; }
155 [[nodiscard]]
auto sampleRate() const noexcept {
return impl->sampleRate; }
156 [[nodiscard]]
auto totalPCMFrameCount() const noexcept
158 return impl->totalPCMFrameCount;
161 [[nodiscard]] ::drwav* wav() const noexcept {
return impl; }
163 [[nodiscard]] acid_chunk acid() const noexcept {
return m_acid; }