3#include <ossia/detail/small_vector.hpp>
4#include <ossia/detail/span.hpp>
12using audio_channel = ossia::pod_vector<double>;
13using audio_vector = ossia::small_vector<audio_channel, 2>;
16using audio_sample = float;
17using audio_array = ossia::small_vector<ossia::pod_vector<audio_sample>, 2>;
19using audio_span = ossia::small_vector<tcb::span<const T>, 8>;
21using mutable_audio_span = ossia::small_vector<tcb::span<T>, 8>;
30#if BOOST_VERSION >= 107200
31static_assert(
noexcept(audio_data{}));
34using audio_handle = std::shared_ptr<audio_data>;
53#if __has_include(<QDebug>)
54#if defined(QT_CORE_LIB)
58inline QDebug operator<<(QDebug s,
const ossia::audio_channel& v)
60 auto& q = s.noquote().nospace();
61 q << v.size() <<
": ";
62 std::size_t n = v.size();
65 double min = *std::min_element(v.begin(), v.end());
66 double max = *std::max_element(v.begin(), v.end());
69 q <<
"________________________________________________________________";
73 for(std::size_t i = 0; (i * n / 64) < v.size(); i++)
75 double val = (v[i * n / 64] -
min) / (max - min);
79 else if(val <= 2. / 8.)
81 else if(val <= 3. / 8.)
83 else if(val <= 4. / 8.)
85 else if(val <= 5. / 8.)
87 else if(val <= 6. / 8.)
89 else if(val <= 7. / 8.)
99inline QDebug operator<<(QDebug s,
const ossia::audio_vector& v)
101 auto& q = s.noquote().nospace();
102 q << v.size() <<
": \n";
105 q <<
"[ " << chan <<
" ], \n";
110#include <tcb/span.hpp>
111inline QDebug operator<<(QDebug s,
const tcb::span<float>& v)
113 auto& q = s.noquote().nospace();
114 q << v.size() <<
": ";
115 std::size_t n = v.size();
118 double min = *std::min_element(v.begin(), v.end());
119 double max = *std::max_element(v.begin(), v.end());
122 q <<
"________________________________________________________________";
126 for(std::size_t i = 0; (i * n / 64) < v.size(); i++)
128 double val = (v[i * n / 64] -
min) / (max - min);
132 else if(val <= 2. / 8.)
134 else if(val <= 3. / 8.)
136 else if(val <= 4. / 8.)
138 else if(val <= 5. / 8.)
140 else if(val <= 6. / 8.)
142 else if(val <= 7. / 8.)
152inline QDebug operator<<(QDebug s,
const ossia::small_vector<tcb::span<float>, 8>& v)
154 auto& q = s.noquote().nospace();
155 q << v.size() <<
": \n";
158 q <<
"[ " << chan <<
" ], \n";
OSSIA_INLINE constexpr auto min(const T a, const U b) noexcept -> typename std::conditional<(sizeof(T) > sizeof(U)), T, U >::type
min function tailored for values
Definition math.hpp:125
OSSIA_INLINE constexpr auto max(const T a, const U b) noexcept -> typename std::conditional<(sizeof(T) > sizeof(U)), T, U >::type
max function tailored for values
Definition math.hpp:96