2#include <ossia/audio/fade.hpp>
3#include <ossia/dataflow/audio_stretch_mode.hpp>
4#include <ossia/dataflow/node_process.hpp>
5#include <ossia/dataflow/nodes/media.hpp>
6#include <ossia/dataflow/nodes/timestretch/raw_stretcher.hpp>
7#include <ossia/dataflow/nodes/timestretch/repitch_stretcher.hpp>
8#include <ossia/dataflow/nodes/timestretch/rubberband_stretcher.hpp>
9#include <ossia/dataflow/port.hpp>
10#include <ossia/dataflow/sample_to_float.hpp>
11#include <ossia/detail/pod_vector.hpp>
12#include <ossia/detail/variant.hpp>
18struct sample_read_info
20 int64_t samples_to_read{};
21 int64_t samples_to_write{};
25sample_info(int64_t bufferSize,
double durationRatio,
const ossia::token_request& t)
34 _.samples_to_read = t.physical_read_duration(durationRatio);
35 _.samples_to_write = std::min(
36 t.physical_write_duration(durationRatio),
37 t.safe_physical_write_duration(durationRatio, bufferSize));
43perform_upmix(
const std::size_t upmix,
const std::size_t chan, ossia::audio_port& ap)
76 for(std::size_t chan = 1; chan < upmix; ++chan)
77 ap.channel(chan).assign(ap.channel(0).begin(), ap.channel(0).end());
88inline void perform_start_offset(
const std::size_t start, ossia::audio_port& ap)
92 ap.get().insert(ap.get().begin(), start, ossia::audio_channel{});
105 ~at_end() { func(); }
113 RubberbandStretcher = 1,
116 [[nodiscard]] int64_t next_sample_to_read() const noexcept
119 [](
auto& stretcher)
noexcept {
return stretcher.next_sample_to_read; },
123 void transport(int64_t date)
126 [=](
auto& stretcher)
noexcept {
return stretcher.transport(date); }, m_stretch);
130 int64_t date, ossia::audio_stretch_mode mode, std::size_t channels,
131 std::size_t fileSampleRate)
137 case ossia::audio_stretch_mode::None: {
138 if(
auto s = ossia::get_if<RawStretcher>(&m_stretch))
144 m_stretch.emplace<RawStretcher>(date);
149#if defined(OSSIA_ENABLE_RUBBERBAND)
150 case ossia::audio_stretch_mode::RubberBandStandard:
151 case ossia::audio_stretch_mode::RubberBandPercussive:
152 case ossia::audio_stretch_mode::RubberBandStandardHQ:
153 case ossia::audio_stretch_mode::RubberBandPercussiveHQ: {
154 const auto preset = get_rubberband_preset(mode);
155 if(
auto s = ossia::get_if<RubberbandStretcher>(&m_stretch);
156 s && s->options == preset)
162 m_stretch.emplace<rubberband_stretcher>(
163 preset, channels, fileSampleRate, date);
169#if defined(OSSIA_ENABLE_LIBSAMPLERATE)
170 case ossia::audio_stretch_mode::Repitch:
171 case ossia::audio_stretch_mode::RepitchMediumQ:
172 case ossia::audio_stretch_mode::RepitchFastestQ: {
173 const auto preset = get_samplerate_preset(mode);
174 if(
auto s = ossia::get_if<RepitchStretcher>(&m_stretch);
175 s && s->repitchers.size() == channels && s->preset == preset)
182 m_stretch.emplace<repitch_stretcher>(preset, channels, 1024, date);
190 template <
typename T>
192 run(T& audio_fetcher,
const ossia::token_request& t, ossia::exec_state_facade e,
193 double tempo_ratio, std::size_t chan, std::size_t len, int64_t samples_to_read,
194 int64_t samples_to_write, int64_t samples_offset,
195 const ossia::mutable_audio_span<double>& ap)
198 [&](
auto& stretcher) {
200 audio_fetcher, t, e, tempo_ratio, chan, len, samples_to_read, samples_to_write,
206 [[nodiscard]]
bool stretch() const noexcept {
return m_stretch.index() != 0; }
211#if defined(OSSIA_ENABLE_RUBBERBAND)
215#if defined(OSSIA_ENABLE_LIBSAMPLERATE)
223struct sound_processing_info
225 time_value m_prev_date{time_value::infinite_min};
227 time_value m_loop_duration{};
228 time_value m_start_offset{};
232 int64_t m_loop_duration_samples{};
233 int64_t m_start_offset_samples{};
235 ossia::resampler m_resampler{};
242 m_loop_duration = loop_duration;
243 m_start_offset = start_offset;
247 void set_resampler(ossia::resampler&& r)
249 auto date = m_resampler.next_sample_to_read();
250 m_resampler = std::move(r);
251 m_resampler.transport(date);
254 void set_native_tempo(
double v) { tempo = v; }
256 double update_stretch(
257 const ossia::token_request& t,
const ossia::exec_state_facade& e)
noexcept
259 double stretch_ratio = 1.;
260 double model_ratio = 1.;
263 if(m_resampler.stretch())
265 model_ratio = ossia::root_tempo / this->tempo;
266 stretch_ratio = this->tempo / t.tempo;
270 model_ratio = ossia::root_tempo / t.tempo;
274 m_loop_duration_samples = m_loop_duration.impl * e.modelToSamples() * model_ratio;
275 m_start_offset_samples = m_start_offset.impl * e.modelToSamples() * model_ratio;
276 return stretch_ratio;
281 :
public ossia::nonowning_graph_node
282 ,
public sound_processing_info
285 virtual void transport(time_value date) = 0;
288class dummy_sound_node final :
public sound_node
291 ossia::audio_outlet audio_out;
295 m_outlets.push_back(&audio_out);
298 std::string label() const noexcept
override {
return "dummy_sound_node"; }
300 void transport(time_value date)
override { }
302 void run(
const ossia::token_request& t, ossia::exec_state_facade e)
noexcept override
307#if defined(OSSIA_SCENARIO_DATAFLOW)
308class sound_process final :
public ossia::node_process
311 using ossia::node_process::node_process;
314 void state(
const ossia::token_request& req)
override
319 static_cast<sound_node&
>(*this->node)
320 .set_loop_info(m_loop_duration, m_start_offset, m_loops);
328 void offset_impl(time_value date)
override
330 static_cast<sound_node&
>(*this->node).transport(date);
332 void transport_impl(time_value date)
override
334 static_cast<sound_node&
>(*this->node).transport(date);
The time_value class.
Definition ossia/editor/scenario/time_value.hpp:30