Home
last modified time | relevance | path

Searched refs:totalBandwidthTimeMs (Results 1 – 1 of 1) sorted by relevance

/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/analytics/
DPlaybackStats.java264 long totalBandwidthTimeMs = 0; in merge() local
325 totalBandwidthTimeMs += stats.totalBandwidthTimeMs; in merge()
365 totalBandwidthTimeMs, in merge()
498 public final long totalBandwidthTimeMs; field in PlaybackStats
569 long totalBandwidthTimeMs, in PlaybackStats()
609 this.totalBandwidthTimeMs = totalBandwidthTimeMs; in PlaybackStats()
1025 return totalBandwidthTimeMs == 0 in getMeanBandwidth()
1027 : (int) (totalBandwidthBytes * 8000 / totalBandwidthTimeMs); in getMeanBandwidth()