Check DSP/audio status in Java
I'd like to detect is the audio is currently turned on when a message is received by my mxj object.
Is this possible?
Found the solution myself : )
MSPObject (a superclass of MSPPerformer) has a method dspstatus(boolean) that gets called when the audio is turned on and off. I can override this to set an isDspOn instance variable.