SimulcastConfig

data class SimulcastConfig(val enabled: Boolean = false, val activeEncodings: List<TrackEncoding> = listOf())

Simulcast configuration.

At the moment, simulcast track is initialized in three versions - low, medium and high. High resolution is the original track resolution, while medium and low resolutions are the original track resolution scaled down by 2 and 4 respectively.

Constructors

Link copied to clipboard
constructor(enabled: Boolean = false, activeEncodings: List<TrackEncoding> = listOf())

Properties

Link copied to clipboard

List of initially active encodings.

Link copied to clipboard
val enabled: Boolean = false

Whether to simulcast track or not.