2#include <ossia/audio/audio_engine.hpp>
3#include <ossia/detail/thread.hpp>
9class dummy_engine final :
public audio_engine
11 int effective_sample_rate{}, effective_buffer_size{};
12 std::atomic_bool m_active;
15 dummy_engine(
int rate,
int bs)
17 effective_sample_rate = rate;
18 effective_buffer_size = bs;
20 effective_outputs = 0;
25 bool running()
const override {
return m_active; }
32 = 1e6 * double(effective_buffer_size) / double(effective_sample_rate);
34 m_runThread = std::thread{[
this, us_per_buffer] {
35 ossia::set_thread_name(
"ossia audio 0");
36 ossia::set_thread_pinned(thread_type::Audio, 0);
38 using clk = std::chrono::high_resolution_clock;
40 clk::time_point start = clk::now();
41 auto orig_start = start;
43 uint64_t iter_total = 0;
58 auto elapsed = (now - orig_start);
59 auto expected_next_elapsed = clk::duration(iter_total * us_per_buffer);
61 double delta_p = (expected_next_elapsed.count() - elapsed.count() / 1000.);
64 std::this_thread::sleep_for(std::chrono::microseconds((
int)delta_p));
76 = std::chrono::duration_cast<std::chrono::nanoseconds>(end - start).count();
80 ns_delta = std::chrono::duration_cast<std::chrono::nanoseconds>(end - orig_start)
84 int samples = std::ceil(
double(effective_sample_rate) * ns / 1e9);
85 samples = std::min(samples, effective_buffer_size);
89 ossia::audio_tick_state ts{
nullptr,
nullptr, 0,
90 0, (uint64_t)samples, ns_total / 1e9};
99 ~dummy_engine()
override
102 if(m_runThread.joinable())
107 std::thread m_runThread;