diff options
Diffstat (limited to 'src/com/jsyn/unitgen')
-rw-r--r-- | src/com/jsyn/unitgen/ChannelIn.java | 2 | ||||
-rw-r--r-- | src/com/jsyn/unitgen/ChannelOut.java | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/com/jsyn/unitgen/ChannelIn.java b/src/com/jsyn/unitgen/ChannelIn.java index 0d8584e..c440b4f 100644 --- a/src/com/jsyn/unitgen/ChannelIn.java +++ b/src/com/jsyn/unitgen/ChannelIn.java @@ -20,7 +20,7 @@ import com.jsyn.ports.UnitOutputPort; /** * Provides access to one specific channel of the audio input. For ChannelIn to work you must call - * the Synthesizer start() method with numInputChannels > 0. + * the {@link com.jsyn.Synthesizer} start() method with numInputChannels > 0. * * @author Phil Burk (C) 2009 Mobileer Inc * @see ChannelOut diff --git a/src/com/jsyn/unitgen/ChannelOut.java b/src/com/jsyn/unitgen/ChannelOut.java index 89f778b..8ef0677 100644 --- a/src/com/jsyn/unitgen/ChannelOut.java +++ b/src/com/jsyn/unitgen/ChannelOut.java @@ -20,6 +20,8 @@ import com.jsyn.ports.UnitInputPort; /** * Provides access to one channel of the audio output. + * For more than two channels you must call + * the {@link com.jsyn.Synthesizer} start() method with numOutputChannels > 2. * * @author Phil Burk (C) 2009 Mobileer Inc * @see ChannelIn |