Serialized Form


Package com.petersalomonsen.jjack.javasound

Class com.petersalomonsen.jjack.javasound.JJackMixer extends JJackClient implements Serializable

serialVersionUID: 1L

Serialized Fields

targetLines

java.util.Vector<E> targetLines

sourceLines

java.util.Vector<E> sourceLines

audioFormatsOut

javax.sound.sampled.AudioFormat[] audioFormatsOut
Supported audio formats


audioFormatsIn

javax.sound.sampled.AudioFormat[] audioFormatsIn

Package de.gulden.framework.jjack

Class de.gulden.framework.jjack.JJackAudioEvent extends java.util.EventObject implements Serializable

Serialized Fields

timestamp

long timestamp
UNIX timestamp of event occurrence


inputBuffer

java.nio.FloatBuffer[] inputBuffer
Input buffers of this event.


outputBuffer

java.nio.FloatBuffer[] outputBuffer
Output buffers of this event.


monoInputPort

int monoInputPort
Number of input port to use for mono processors.


monoOutputPort

int monoOutputPort
Number of output port to use for mono processors.


stack

java.util.Stack<E> stack
Backup stack for output buffers during processing. Package-private, accessed by JJackMonitor only.

Class de.gulden.framework.jjack.JJackClient extends JJackMonitor implements Serializable

Class de.gulden.framework.jjack.JJackException extends java.lang.Exception implements Serializable

Class de.gulden.framework.jjack.JJackMonitor extends javax.swing.JPanel implements Serializable

Serialized Fields

name

java.lang.String name
The audio processor's name.


gui

javax.swing.JComponent gui
The GUI component associated with this audio processor.


active

boolean active
Flag marking active mode. In active mode, the output of this processor is being swapped to be the input of any chained and monitoring processor. In inactive mode, inputs to this processor are simply passed on to the next processors.


chained

JJackAudioProducer chained
Chained audio processor. null if this is the last processor in the chain.


monitors

java.util.ArrayList<E> monitors
Monitor-processors connected to this processor.


listeners

java.util.ArrayList<E> listeners
JJackAudioProcessListeners connected to this processor.