OSSIA
Open Scenario System for Interactive Application
Loading...
Searching...
No Matches
audio_port.hpp
1#pragma once
2#include <ossia/detail/config.hpp>
3
4#include <ossia/dataflow/nodes/media.hpp>
5#include <ossia/detail/buffer_pool.hpp>
7#include <ossia/detail/small_vector.hpp>
8
9#include <vector>
10namespace ossia
11{
12
13OSSIA_EXPORT
14void ensure_vector_sizes(const audio_vector& src_vec, audio_vector& sink_vec);
15
16OSSIA_EXPORT
17void mix(const audio_vector& src_vec, audio_vector& sink_vec);
18
19struct OSSIA_EXPORT audio_buffer_pool : private object_pool<audio_channel>
20{
21 audio_buffer_pool();
22 ~audio_buffer_pool();
23
24 using object_pool::acquire;
25
26 void release(audio_channel&& b)
27 {
28 b.clear();
29 buffers.enqueue(std::move(b));
30 }
31
32 static audio_buffer_pool& instance() noexcept;
33
34 static void set_channels(audio_vector& samples, std::size_t channels);
35};
36
37using pan_weight = ossia::small_vector<double, 2>;
38struct inlet;
39struct audio_port
40{
41 static const constexpr int which = 0;
42
43 audio_port() noexcept { set_channels(2); }
44
45 audio_port(const audio_port& other) noexcept { *this = other; }
46
47 audio_port(audio_port&& other) noexcept
48 : m_samples{std::move(other.m_samples)}
49 {
50 }
51
52 audio_port& operator=(const audio_port& other) noexcept
53 {
54 audio_buffer_pool::set_channels(m_samples, other.channels());
55 for(std::size_t c = 0; c < other.channels(); c++)
56 {
57 const auto& src = other.channel(c);
58 channel(c).assign(src.begin(), src.end());
59 }
60 return *this;
61 }
62
63 audio_port& operator=(audio_port&& other) noexcept
64 {
65 m_samples = std::move(other.m_samples);
66 other.set_channels(2);
67
68 return *this;
69 }
70
71 audio_channel& channel(std::size_t i) noexcept { return m_samples[i]; }
72
73 [[nodiscard]] const audio_channel& channel(std::size_t i) const noexcept
74 {
75 return m_samples[i];
76 }
77
78 [[nodiscard]] std::size_t channels() const noexcept { return m_samples.size(); }
79
80 [[nodiscard]] bool empty() const noexcept { return m_samples.empty(); }
81
82 void set_channels(std::size_t channels)
83 {
84 return audio_buffer_pool::set_channels(m_samples, channels);
85 }
86
87 operator ossia::mutable_audio_span<double>() noexcept
88 {
89 return {m_samples.begin(), m_samples.end()};
90 }
91
92 operator ossia::audio_span<double>() const noexcept
93 {
94 return {m_samples.begin(), m_samples.end()};
95 }
96
97 audio_vector& get() noexcept { return m_samples; }
98 [[nodiscard]] const audio_vector& get() const noexcept { return m_samples; }
99
100 [[nodiscard]] auto begin() const noexcept { return m_samples.begin(); }
101 [[nodiscard]] auto end() const noexcept { return m_samples.end(); }
102 [[nodiscard]] auto cbegin() const noexcept { return m_samples.cbegin(); }
103 [[nodiscard]] auto cend() const noexcept { return m_samples.cend(); }
104 [[nodiscard]] auto rbegin() const noexcept { return m_samples.rbegin(); }
105 [[nodiscard]] auto rend() const noexcept { return m_samples.rend(); }
106 [[nodiscard]] auto crbegin() const noexcept { return m_samples.crbegin(); }
107 [[nodiscard]] auto crend() const noexcept { return m_samples.crend(); }
108 auto begin() noexcept { return m_samples.begin(); }
109 auto end() noexcept { return m_samples.end(); }
110 auto cbegin() noexcept { return m_samples.cbegin(); }
111 auto cend() noexcept { return m_samples.cend(); }
112 auto rbegin() noexcept { return m_samples.rbegin(); }
113 auto rend() noexcept { return m_samples.rend(); }
114 auto crbegin() noexcept { return m_samples.crbegin(); }
115 auto crend() noexcept { return m_samples.crend(); }
116
117private:
118 friend void ensure_vector_sizes(const audio_vector& src_vec, audio_vector& sink_vec);
119 audio_vector m_samples;
120};
121
122#if BOOST_VERSION >= 107200
123static_assert(noexcept(audio_port{}));
124#endif
125
126struct audio_delay_line
127{
128 std::vector<audio_vector> samples;
129};
130
131}
Definition git_info.h:7