OSSIA
Open Scenario System for Interactive Application
Loading...
Searching...
No Matches
media.hpp
1#pragma once
2
3#include <ossia/detail/small_vector.hpp>
4#include <ossia/detail/span.hpp>
5
6#include <memory>
7#include <string>
8
9namespace ossia
10{
11// Used in nodes
12using audio_channel = ossia::pod_vector<double>;
13using audio_vector = ossia::small_vector<audio_channel, 2>;
14
15// Used for audio files
16using audio_sample = float;
17using audio_array = ossia::small_vector<ossia::pod_vector<audio_sample>, 2>;
18template <typename T>
19using audio_span = ossia::small_vector<tcb::span<const T>, 8>;
20template <typename T>
21using mutable_audio_span = ossia::small_vector<tcb::span<T>, 8>;
22
23struct audio_data
24{
25 audio_array data;
26 std::string path;
27 int rate{};
28};
29
30#if BOOST_VERSION >= 107200
31static_assert(noexcept(audio_data{}));
32#endif
33
34using audio_handle = std::shared_ptr<audio_data>;
35struct drwav_handle;
36/*
37struct video_data
38{
39};
40
41struct mmap_audio_handle
42{
43 drwav* data{};
44};
45
46struct media_data
47{
48 std::string file_path;
49 ossia::variant<audio_handle, mmap_audio_handle> media;
50};*/
51}
52
53#if __has_include(<QDebug>)
54#if defined(QT_CORE_LIB)
55#include <QDebug>
56
57#include <algorithm>
58inline QDebug operator<<(QDebug s, const ossia::audio_channel& v)
59{
60 auto& q = s.noquote().nospace();
61 q << v.size() << ": ";
62 std::size_t n = v.size();
63 if(n >= 64)
64 {
65 double min = *std::min_element(v.begin(), v.end());
66 double max = *std::max_element(v.begin(), v.end());
67 if(min == max)
68 {
69 q << "________________________________________________________________";
70 }
71 else
72 {
73 for(std::size_t i = 0; (i * n / 64) < v.size(); i++)
74 {
75 double val = (v[i * n / 64] - min) / (max - min);
76 const char* c = "_";
77 if(val <= 1. / 8.)
78 c = "▁";
79 else if(val <= 2. / 8.)
80 c = "▂";
81 else if(val <= 3. / 8.)
82 c = "▃";
83 else if(val <= 4. / 8.)
84 c = "▄";
85 else if(val <= 5. / 8.)
86 c = "▅";
87 else if(val <= 6. / 8.)
88 c = "▆";
89 else if(val <= 7. / 8.)
90 c = "▇";
91 else
92 c = "█";
93 q.noquote() << c;
94 }
95 }
96 }
97 return q;
98}
99inline QDebug operator<<(QDebug s, const ossia::audio_vector& v)
100{
101 auto& q = s.noquote().nospace();
102 q << v.size() << ": \n";
103 for(auto& chan : v)
104 {
105 q << "[ " << chan << " ], \n";
106 }
107 return q;
108}
109
110#include <tcb/span.hpp>
111inline QDebug operator<<(QDebug s, const tcb::span<float>& v)
112{
113 auto& q = s.noquote().nospace();
114 q << v.size() << ": ";
115 std::size_t n = v.size();
116 if(n >= 64)
117 {
118 double min = *std::min_element(v.begin(), v.end());
119 double max = *std::max_element(v.begin(), v.end());
120 if(min == max)
121 {
122 q << "________________________________________________________________";
123 }
124 else
125 {
126 for(std::size_t i = 0; (i * n / 64) < v.size(); i++)
127 {
128 double val = (v[i * n / 64] - min) / (max - min);
129 const char* c = "_";
130 if(val <= 1. / 8.)
131 c = "▁";
132 else if(val <= 2. / 8.)
133 c = "▂";
134 else if(val <= 3. / 8.)
135 c = "▃";
136 else if(val <= 4. / 8.)
137 c = "▄";
138 else if(val <= 5. / 8.)
139 c = "▅";
140 else if(val <= 6. / 8.)
141 c = "▆";
142 else if(val <= 7. / 8.)
143 c = "▇";
144 else
145 c = "█";
146 q.noquote() << c;
147 }
148 }
149 }
150 return q;
151}
152inline QDebug operator<<(QDebug s, const ossia::small_vector<tcb::span<float>, 8>& v)
153{
154 auto& q = s.noquote().nospace();
155 q << v.size() << ": \n";
156 for(auto& chan : v)
157 {
158 q << "[ " << chan << " ], \n";
159 }
160 return q;
161}
162
163#endif
164#endif
Definition git_info.h:7
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