Uses of Class
com.teamdev.jxcapture.BitrateMode

Packages that use BitrateMode
com.teamdev.jxcapture   
com.teamdev.jxcapture.audio   
 

Uses of BitrateMode in com.teamdev.jxcapture
 

Methods in com.teamdev.jxcapture that return BitrateMode
 BitrateMode BaseEncodingParameters.getBitrateMode()
          Returns specified bitrate mode.
static BitrateMode BitrateMode.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static BitrateMode[] BitrateMode.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in com.teamdev.jxcapture with parameters of type BitrateMode
 void BaseEncodingParameters.setBitrateMode(BitrateMode bitrateMode)
          Specify bitrate mode.
 

Constructors in com.teamdev.jxcapture with parameters of type BitrateMode
BaseEncodingParameters(Codec codec, long bitrate, BitrateMode bitrateMode)
          Creates new instance with specified media encoding parameters.
 

Uses of BitrateMode in com.teamdev.jxcapture.audio
 

Methods in com.teamdev.jxcapture.audio that return BitrateMode
 BitrateMode AudioCodecPresets.getBitrateMode()
          Bit rate mode.
 

Constructors in com.teamdev.jxcapture.audio with parameters of type BitrateMode
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.