BandwidthEstimationMode
sealed interface BandwidthEstimationMode : Parcelable
Inheritors
| ExponentialWeightedAverage |
| SlidingPercentile |
Types
| Name | Summary |
|---|---|
| ExponentialWeightedAverage | data class ExponentialWeightedAverage(val smoothingFactor: Double = 0.9) : BandwidthEstimationMode |
| SlidingPercentile | data class SlidingPercentile(val maxSampleCount: Int = 5, val percentile: Double = 0.7) : BandwidthEstimationMode Use a sliding percentile window to average the bandwidth. |