2#include <ossia/dataflow/nodes/media.hpp>
8static void read_audio_from_buffer(
9 const audio_span<float>& data,
const int64_t start,
const int64_t samples_to_write,
10 const int64_t start_offset,
const int64_t loop_duration,
const bool loops,
11 T**
const audio_array)
noexcept
13 const auto channels = data.size();
16 const int64_t file_duration = data[0].size();
21 if(start + samples_to_write < loop_duration)
23 const int64_t read_start = start_offset + start;
26 if(read_start + samples_to_write < file_duration)
28 for(std::size_t i = 0; i < channels; i++)
31 T* dst = audio_array[i];
33 for(int64_t k = 0; k < samples_to_write; k++)
35 dst[k] = src[read_start + k];
42 for(std::size_t i = 0; i < channels; i++)
45 T* dst = audio_array[i];
47 for(int64_t k = 0; k < samples_to_write; k++)
49 int64_t pos = read_start + k;
50 if(pos < file_duration)
61 for(std::size_t i = 0; i < channels; i++)
64 T* dst = audio_array[i];
66 for(int64_t k = 0; k < samples_to_write; k++)
68 int64_t pos = start_offset + ((start + k) % loop_duration);
69 if(pos < file_duration)
79 for(std::size_t i = 0; i < channels; i++)
81 const auto& src = data[i];
82 T* dst = audio_array[i];
84 if(file_duration >= start + samples_to_write + start_offset)
87 for(int64_t k = 0, pos = start + start_offset; k < samples_to_write; k++, pos++)
96 file_duration - (start + start_offset), (int64_t)0, samples_to_write);
97 for(int64_t k = 0, pos = start + start_offset; k <
max; k++, pos++)
101 for(
int k =
max; k < samples_to_write; k++)
OSSIA_INLINE constexpr T clamp(T d, const T min, const T max) noexcept
clamp Returns the value bounded by a min and a max
Definition math.hpp:154
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