public static interface ExoPlayerVideoDisplayComponent.InfoListener
Modifier and Type | Method and Description |
---|---|
void |
onAudioDecoderInitialized(com.google.android.exoplayer2.analytics.AnalyticsListener.EventTime eventTime,
java.lang.String decoderName,
long initializationDurationMs) |
void |
onAudioFormatEnabled(com.google.android.exoplayer2.Format format,
int reason,
long mediaTimeMs)
Called when an Audio Format is enabled.
|
void |
onBandwidthSample(int elapsedMs,
long bytes,
long bitrateEstimate)
Called periodically to indicate that bytes have been transferred or the estimated bitrate
has changed.
|
default void |
onDecoderInitialized(com.google.android.exoplayer2.analytics.AnalyticsListener.EventTime eventTime,
int trackType,
java.lang.String decoderName,
long initializationDurationMs)
|
default void |
onDecoderInitialized(java.lang.String decoderName,
long initializedTimestampMs,
long initializationDurationMs)
|
void |
onDroppedFrames(com.google.android.exoplayer2.analytics.AnalyticsListener.EventTime eventTime,
int droppedFrames,
long elapsedMs)
Called when frames are dropped.
|
void |
onDroppedFrames(int count,
long elapsed)
Deprecated.
|
void |
onLoadCompleted(int trackType,
long bytesLoaded,
int dataType,
int reason,
com.google.android.exoplayer2.Format format,
long mediaStartTimeMs,
long mediaEndTimeMs,
long elapsedRealtimeMs,
long loadDurationMs)
Called when load has completed.
|
void |
onLoadStarted(int trackType,
int dataType,
int reason,
com.google.android.exoplayer2.Format format,
long mediaStartTimeMs,
long mediaEndTimeMs)
Called when a load is started.
|
void |
onVideoDecoderInitialized(com.google.android.exoplayer2.analytics.AnalyticsListener.EventTime eventTime,
java.lang.String decoderName,
long initializationDurationMs) |
void |
onVideoFormatEnabled(com.google.android.exoplayer2.Format format,
int reason,
long mediaTimeMs)
Called when a Video Format is enabled.
|
void onVideoFormatEnabled(com.google.android.exoplayer2.Format format, int reason, long mediaTimeMs)
format
- the Format
retrieved from ExoPlayer.reason
- One of the C
SELECTION_REASON_*
.mediaTimeMs
- The start time of the media, or C.TIME_UNSET
if the data does
not belong to a specific media period.void onAudioFormatEnabled(com.google.android.exoplayer2.Format format, int reason, long mediaTimeMs)
format
- the Format
retrieved from ExoPlayer.reason
- One of the C
SELECTION_REASON_*
.mediaTimeMs
- The start time of the media, or C.TIME_UNSET
if the data does
not belong to a specific media period.void onDroppedFrames(com.google.android.exoplayer2.analytics.AnalyticsListener.EventTime eventTime, int droppedFrames, long elapsedMs)
eventTime
- Contains details of the event.droppedFrames
- number of frames dropped.elapsedMs
- The duration in milliseconds over which the frames were dropped.
This duration is timed from when the renderer was started or from when
dropped frames were last reported (whichever was more recent), and not
from when the first of the reported drops occurred.@Deprecated void onDroppedFrames(int count, long elapsed)
onDroppedFrames(AnalyticsListener.EventTime, int, long)
void onBandwidthSample(int elapsedMs, long bytes, long bitrateEstimate)
elapsedMs
- The time taken to transfer bytesTransferred
, in milliseconds.bytes
- The number of bytes transferred since the last callback.bitrateEstimate
- The estimated bitrate in bits/sec.void onLoadStarted(int trackType, int dataType, int reason, com.google.android.exoplayer2.Format format, long mediaStartTimeMs, long mediaEndTimeMs)
trackType
- One of the C
TRACK_TYPE_*
constants.dataType
- One of the C
DATA_TYPE_*
constants.reason
- One of the C
SELECTION_REASON_*
constants.format
- the Format
retrieved from ExoPlayer.mediaStartTimeMs
- The start time of the media, or C.TIME_UNSET
if the data
does not belong to a specific media period.mediaEndTimeMs
- The end time of the media, or C.TIME_UNSET
if the data does
not belong to a specific media period or the end time is unknown.void onLoadCompleted(int trackType, long bytesLoaded, int dataType, int reason, com.google.android.exoplayer2.Format format, long mediaStartTimeMs, long mediaEndTimeMs, long elapsedRealtimeMs, long loadDurationMs)
trackType
- One of the C
TRACK_TYPE_*
constants.bytesLoaded
- The number of bytes that were loaded up to the event time.dataType
- One of the C
DATA_TYPE_*
constants.reason
- One of the C
SELECTION_REASON_*
constants.format
- the Format
retrieved from ExoPlayer.mediaStartTimeMs
- The start time of the media, or C.TIME_UNSET
if the data
does not belong to a specific media period.mediaEndTimeMs
- The end time of the media, or C.TIME_UNSET
if the data does
not belong to a specific media period or the end time is unknown.elapsedRealtimeMs
- The value of SystemClock.elapsedRealtime()
at the time of
the load event.loadDurationMs
- The duration of the load up to the event time.@Deprecated default void onDecoderInitialized(com.google.android.exoplayer2.analytics.AnalyticsListener.EventTime eventTime, int trackType, java.lang.String decoderName, long initializationDurationMs)
@Deprecated default void onDecoderInitialized(java.lang.String decoderName, long initializedTimestampMs, long initializationDurationMs)
void onAudioDecoderInitialized(com.google.android.exoplayer2.analytics.AnalyticsListener.EventTime eventTime, java.lang.String decoderName, long initializationDurationMs)
void onVideoDecoderInitialized(com.google.android.exoplayer2.analytics.AnalyticsListener.EventTime eventTime, java.lang.String decoderName, long initializationDurationMs)