mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Fix the type of message passed with MSG_PLAYBACK_INFO_CHANGED
The receiving code was updated in:
7b82a3c889
but this sending site was missed.
PiperOrigin-RevId: 320173033
This commit is contained in:
parent
9b4918656f
commit
b1e9257de1
1 changed files with 1 additions and 3 deletions
|
|
@ -591,9 +591,7 @@ import java.util.concurrent.TimeoutException;
|
||||||
applicationHandler
|
applicationHandler
|
||||||
.obtainMessage(
|
.obtainMessage(
|
||||||
ExoPlayerImplInternal.MSG_PLAYBACK_INFO_CHANGED,
|
ExoPlayerImplInternal.MSG_PLAYBACK_INFO_CHANGED,
|
||||||
/* operationAcks */ 1,
|
new ExoPlayerImplInternal.PlaybackInfoUpdate(playbackInfo))
|
||||||
/* positionDiscontinuityReason */ C.INDEX_UNSET,
|
|
||||||
playbackInfo)
|
|
||||||
.sendToTarget();
|
.sendToTarget();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue