mirror of
https://github.com/samsonjs/media.git
synced 2026-03-26 09:35:47 +00:00
parent
9f85a525d7
commit
d2bc6dabde
1 changed files with 0 additions and 3 deletions
|
|
@ -2776,7 +2776,6 @@ import java.util.concurrent.TimeoutException;
|
|||
@Override
|
||||
public void onCues(List<Cue> cues) {
|
||||
currentCues = cues;
|
||||
analyticsCollector.onCues(cues);
|
||||
// TODO(internal b/187152483): Events should be dispatched via ListenerSet
|
||||
for (Listener listeners : listenerArraySet) {
|
||||
listeners.onCues(cues);
|
||||
|
|
@ -2885,7 +2884,6 @@ import java.util.concurrent.TimeoutException;
|
|||
DeviceInfo deviceInfo = createDeviceInfo(streamVolumeManager);
|
||||
if (!deviceInfo.equals(ExoPlayerImpl.this.deviceInfo)) {
|
||||
ExoPlayerImpl.this.deviceInfo = deviceInfo;
|
||||
analyticsCollector.onDeviceInfoChanged(deviceInfo);
|
||||
// TODO(internal b/187152483): Events should be dispatched via ListenerSet
|
||||
for (Listener listener : listenerArraySet) {
|
||||
listener.onDeviceInfoChanged(deviceInfo);
|
||||
|
|
@ -2895,7 +2893,6 @@ import java.util.concurrent.TimeoutException;
|
|||
|
||||
@Override
|
||||
public void onStreamVolumeChanged(int streamVolume, boolean streamMuted) {
|
||||
analyticsCollector.onDeviceVolumeChanged(streamVolume, streamMuted);
|
||||
// TODO(internal b/187152483): Events should be dispatched via ListenerSet
|
||||
for (Listener listener : listenerArraySet) {
|
||||
listener.onDeviceVolumeChanged(streamVolume, streamMuted);
|
||||
|
|
|
|||
Loading…
Reference in a new issue