Commit b1e9257d by ibaker Committed by Jaewan Kim

Fix the type of message passed with MSG_PLAYBACK_INFO_CHANGED

The receiving code was updated in:
https://github.com/google/ExoPlayer/commit/7b82a3c8892a2b90fa1121dc6bfad7817ae03944
but this sending site was missed.

PiperOrigin-RevId: 320173033
parent 9b491865
......@@ -591,9 +591,7 @@ import java.util.concurrent.TimeoutException;
applicationHandler
.obtainMessage(
ExoPlayerImplInternal.MSG_PLAYBACK_INFO_CHANGED,
/* operationAcks */ 1,
/* positionDiscontinuityReason */ C.INDEX_UNSET,
playbackInfo)
new ExoPlayerImplInternal.PlaybackInfoUpdate(playbackInfo))
.sendToTarget();
return;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment