mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Add missing default implementations to Player.Listener
PiperOrigin-RevId: 367238434
This commit is contained in:
parent
61a5ca480e
commit
d24cec517b
1 changed files with 8 additions and 1 deletions
|
|
@ -928,7 +928,14 @@ public interface Player {
|
||||||
TextOutput,
|
TextOutput,
|
||||||
MetadataOutput,
|
MetadataOutput,
|
||||||
DeviceListener,
|
DeviceListener,
|
||||||
EventListener {}
|
EventListener {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
default void onMetadata(Metadata metadata) {}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
default void onCues(List<Cue> cues) {}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Playback state. One of {@link #STATE_IDLE}, {@link #STATE_BUFFERING}, {@link #STATE_READY} or
|
* Playback state. One of {@link #STATE_IDLE}, {@link #STATE_BUFFERING}, {@link #STATE_READY} or
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue