com.cycling74.msp
Interface MSPPerformable

All Known Implementing Classes:
MSPPerformer

public interface MSPPerformable

This interface is used to chain Java dsp objects since they don't have to be MSPObject to process signals.


Method Summary
 void dspsetup(MSPSignal[] in, MSPSignal[] out)
          Interface for MSPPerformer.dspsetup(MSPSignal in[], MSPSignal out[])
 void perform(MSPSignal[] in, MSPSignal[] out)
          Interface for MSPPerformer.perform(MSPSignal in[], MSPSignal out[]);
 

Method Detail

dspsetup

void dspsetup(MSPSignal[] in,
              MSPSignal[] out)
Interface for MSPPerformer.dspsetup(MSPSignal in[], MSPSignal out[])


perform

void perform(MSPSignal[] in,
             MSPSignal[] out)
Interface for MSPPerformer.perform(MSPSignal in[], MSPSignal out[]);



This API is based on mxj for Max/MSP by Cycling74. Please see original MXJ implementation.