Uses of Class
com.teamdev.jxcapture.audio.AudioChannels

Packages that use AudioChannels
com.teamdev.jxcapture.audio   
 

Uses of AudioChannels in com.teamdev.jxcapture.audio
 

Methods in com.teamdev.jxcapture.audio that return AudioChannels
 AudioChannels AudioEncodingParameters.getAudioChannels()
          Returns specified audio channels.
 AudioChannels AudioSource.getChannels()
          Returns AudioChannels of the devices.
 AudioChannels AudioCodecPresets.getChannels()
          Audio channels.
static AudioChannels AudioChannels.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AudioChannels[] AudioChannels.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in com.teamdev.jxcapture.audio with parameters of type AudioChannels
 void AudioEncodingParameters.setAudioChannels(AudioChannels audioChannels)
          Set audio channels.
protected  void AudioSource.setChannels(AudioChannels channels)
          Specify audio channels for this device.
 

Constructors in com.teamdev.jxcapture.audio with parameters of type AudioChannels
AudioCodecPresets(java.lang.String name, long bitrate, BitrateMode bitrateMode, AudioChannels channels, double sampleRate)
           
AudioCodecPresets(java.lang.String name, long bitrate, BitrateMode bitrateMode, AudioChannels channels, int sampleSize, int samplesPerSec, int avgBytesPerSec, int blockAlign, int bitsPerSample)
          Creates codec presets.
AudioEncodingParameters(AudioCodec codec, long bitrate, BitrateMode bitrateMode, AudioChannels audioChannels)
          Creates new instance of audio encoding parameters with specified parameters.