| 95 | */ |
| 96 | struct SimpleArrayA : csnd::Plugin<1, 1> { |
| 97 | int init() { |
| 98 | csnd::Vector<MYFLT> &out = outargs.vector_data<MYFLT>(0); |
| 99 | csnd::Vector<MYFLT> &in = inargs.vector_data<MYFLT>(0); |
| 100 | out.init(csound, in.len()); |
| 101 | return OK; |
| 102 | } |
| 103 | |
| 104 | int aperf() { |
| 105 | csnd::Vector<MYFLT> &out = outargs.vector_data<MYFLT>(0); |