Class SlidingPercentileBandwidthStatistic

  • All Implemented Interfaces:
    BandwidthStatistic

    @Deprecated
    public class SlidingPercentileBandwidthStatistic
    extends Object
    implements BandwidthStatistic
    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 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​(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 BandwidthStatistic
        Parameters:
        bytes - The number of bytes transferred.
        durationUs - The duration of the transfer, in microseconds.
      • 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