private
| 799 | virtual void onSampleRateChange() {} |
| 800 | // private |
| 801 | void doProcess(const ProcessArgs& args) { |
| 802 | // if (!internal->bypassed) |
| 803 | process(args); |
| 804 | // else |
| 805 | // processBypass(args); |
| 806 | |
| 807 | // if (args.frame % PORT_DIVIDER == 0) { |
| 808 | // float portTime = args.sampleTime * PORT_DIVIDER; |
| 809 | // for (Input& input : inputs) { |
| 810 | // Port_step(&input, portTime); |
| 811 | // } |
| 812 | // for (Output& output : outputs) { |
| 813 | // Port_step(&output, portTime); |
| 814 | // } |
| 815 | // } |
| 816 | } |
| 817 | }; |
| 818 | |
| 819 | } // namespace engine |