Skip to content
Snippets Groups Projects
Select Git revision
  • 2050f12d3fde8e59bdde04d8e9a4649f4296f10f
  • main default protected
  • phhw
  • captouch-threshold
  • t
  • dos
  • test2
  • test
  • slewtest
  • simtest
  • view-think
  • vm-pending
  • media-buf
  • scope
  • passthrough
  • wave
  • vsync
  • dos-main-patch-50543
  • json-error
  • rahix/big-flow3r
  • pippin/media_framework
  • v1.3.0
  • v1.2.0
  • v1.2.0+rc1
  • v1.1.1
  • v1.1.0
  • v1.1.0+rc1
  • v1.0.0
  • v1.0.0+rc6
  • v1.0.0+rc5
  • v1.0.0+rc4
  • v1.0.0+rc3
  • v1.0.0+rc2
  • v1.0.0+rc1
34 results

delay.h

Blame
  • Forked from flow3r / flow3r firmware
    334 commits behind the upstream repository.
    delay.h 373 B
    #pragma once
    #include <radspa.h>
    #include <radspa_helpers.h>
    
    typedef struct {
        int32_t read_head_position;
        uint32_t write_head_position;
        uint32_t max_delay;
        uint32_t time_prev;
    } delay_data_t;
    
    extern radspa_descriptor_t delay_desc;
    radspa_t * delay_create(uint32_t init_var);
    void delay_run(radspa_t * osc, uint16_t num_samples, uint32_t render_pass_id);