| Package | Description | 
|---|---|
| org.webrtc | 
| Modifier and Type | Method and Description | 
|---|---|
VideoCodecStatus | 
VideoDecoder.decode(EncodedImage frame,
      VideoDecoder.DecodeInfo info)
Request the decoder to decode a frame. 
 | 
VideoCodecStatus | 
VideoEncoder.encode(VideoFrame frame,
      VideoEncoder.EncodeInfo info)
Requests the encoder to encode a frame. 
 | 
VideoCodecStatus | 
VideoDecoder.initDecode(VideoDecoder.Settings settings,
          VideoDecoder.Callback decodeCallback)
Initializes the decoding process with specified settings. 
 | 
VideoCodecStatus | 
VideoEncoder.initEncode(VideoEncoder.Settings settings,
          VideoEncoder.Callback encodeCallback)
Initializes the encoding process. 
 | 
VideoCodecStatus | 
VideoDecoder.release()
Called when the decoder is no longer needed. 
 | 
VideoCodecStatus | 
VideoEncoder.release()
Releases the encoder. 
 | 
VideoCodecStatus | 
VideoEncoder.setRateAllocation(VideoEncoder.BitrateAllocation allocation,
                 int framerate)
Sets the bitrate allocation and the target framerate for the encoder. 
 | 
static VideoCodecStatus | 
VideoCodecStatus.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static VideoCodecStatus[] | 
VideoCodecStatus.values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 |