| 124 | } |
| 125 | |
| 126 | void perform( |
| 127 | double** ins, long numins, double** outs, long numouts, long sampleframes, |
| 128 | long flags, void* userparam) |
| 129 | { |
| 130 | processor.process( |
| 131 | implementation, avnd::span<double*>{ins, std::size_t(numins)}, |
| 132 | avnd::span<double*>{outs, std::size_t(numouts)}, sampleframes); |
| 133 | } |
| 134 | |
| 135 | void process_inlet_control(t_symbol* s, long argc, t_atom* argv) |
| 136 | { |