Package tvi.webrtc
Class VideoEncoder.EncoderInfo
- java.lang.Object
-
- tvi.webrtc.VideoEncoder.EncoderInfo
-
- Enclosing interface:
- VideoEncoder
public static class VideoEncoder.EncoderInfo extends java.lang.Object
Metadata about the Encoder.
-
-
Field Summary
Fields Modifier and Type Field Description boolean
applyAlignmentToAllSimulcastLayers
Same as above but if true, each simulcast layer should also be divisible by |requested_resolution_alignment|.int
requestedResolutionAlignment
The width and height of the incoming video frames should be divisible by |requested_resolution_alignment|
-
Constructor Summary
Constructors Constructor Description EncoderInfo(int requestedResolutionAlignment, boolean applyAlignmentToAllSimulcastLayers)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
getApplyAlignmentToAllSimulcastLayers()
int
getRequestedResolutionAlignment()
-
-
-
Field Detail
-
requestedResolutionAlignment
public final int requestedResolutionAlignment
The width and height of the incoming video frames should be divisible by |requested_resolution_alignment|
-
applyAlignmentToAllSimulcastLayers
public final boolean applyAlignmentToAllSimulcastLayers
Same as above but if true, each simulcast layer should also be divisible by |requested_resolution_alignment|.
-
-