Back to Exoplayer

SlidingPercentileBandwidthStatistic (ExoPlayer library)

docs/doc/reference/com/google/android/exoplayer2/upstream/experimental/SlidingPercentileBandwidthStatistic.html

latest5.3 KB
Original Source

Package com.google.android.exoplayer2.upstream.experimental

Class SlidingPercentileBandwidthStatistic

  • java.lang.Object

    • com.google.android.exoplayer2.upstream.experimental.SlidingPercentileBandwidthStatistic
  • All Implemented Interfaces:BandwidthStatistic


[@Deprecated](https://developer.android.com/reference/java/lang/Deprecated.html "class or interface in java.lang")public classSlidingPercentileBandwidthStatisticextends[Object](https://developer.android.com/reference/java/lang/Object.html "class or interface in java.lang")implements[BandwidthStatistic](BandwidthStatistic.html "interface in com.google.android.exoplayer2.upstream.experimental")

Deprecated. com.google.android.exoplayer2 is deprecated. Please migrate to androidx.media3 (which contains the same ExoPlayer code). See the migration guide for more details, including a script to help with the migration.

A BandwidthStatistic that calculates estimates based on a sliding window weighted percentile.

Field Summary

Fields | Modifier and Type | Field | Description | | --- | --- | --- | | static int | DEFAULT_MAX_SAMPLES_COUNT | Deprecated.

The default maximum number of samples. | | static double | DEFAULT_PERCENTILE | Deprecated.

The default percentile to return. |

Constructor Summary

Constructors | Constructor | Description | | --- | --- | | SlidingPercentileBandwidthStatistic() | Deprecated.

Creates an instance with a maximum of DEFAULT_MAX_SAMPLES_COUNT samples, returning the DEFAULT_PERCENTILE. | | SlidingPercentileBandwidthStatistic​(int maxSampleCount, double percentile) | Deprecated.

Creates an instance. |

Method Summary

All Methods Instance Methods Concrete Methods Deprecated Methods | Modifier and Type | Method | Description | | --- | --- | --- | | void | addSample​(long bytes, long durationUs) | Deprecated.

Adds a transfer sample to the statistic. | | long | getBandwidthEstimate() | Deprecated.

Returns the bandwidth estimate in bits per second, or BandwidthEstimator.ESTIMATE_NOT_AVAILABLE if there is no estimate available yet. | | void | reset() | Deprecated.

Resets the statistic. |

- 

Methods inherited from class java.lang.Object

clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

Field Detail

- 

DEFAULT_MAX_SAMPLES_COUNT

public static final int DEFAULT_MAX_SAMPLES_COUNT

Deprecated.

The default maximum number of samples. See Also:Constant Field Values

- 

DEFAULT_PERCENTILE

public static final double DEFAULT_PERCENTILE

Deprecated.

The default percentile to return. See Also:Constant Field Values

Constructor Detail

- 

SlidingPercentileBandwidthStatistic

public SlidingPercentileBandwidthStatistic()

Deprecated.

Creates an instance with a maximum of DEFAULT_MAX_SAMPLES_COUNT samples, returning the DEFAULT_PERCENTILE.

- 

SlidingPercentileBandwidthStatistic

public SlidingPercentileBandwidthStatistic​(int maxSampleCount,
                                           double percentile)

Deprecated.

Creates an instance. Parameters:maxSampleCount - The maximum number of samples.percentile - The percentile to return. Must be in the range of [0-1].

Method Detail

- 

addSample

public void addSample​(long bytes,
                      long durationUs)

Deprecated.

Description copied from interface: BandwidthStatistic

Adds a transfer sample to the statistic. Specified by:addSample in interface BandwidthStatisticParameters:bytes - The number of bytes transferred.durationUs - The duration of the transfer, in microseconds.

- 

getBandwidthEstimate

public long getBandwidthEstimate()

Deprecated.

Description copied from interface: BandwidthStatistic

Returns the bandwidth estimate in bits per second, or BandwidthEstimator.ESTIMATE_NOT_AVAILABLE if there is no estimate available yet. Specified by:getBandwidthEstimate in interface BandwidthStatistic

- 

reset

public void reset()

Deprecated.

Description copied from interface: BandwidthStatistic

Resets the statistic. The statistic should drop all samples and reset to its initial state, similar to right after construction. Specified by:reset in interface BandwidthStatistic