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:
ibaker 2020-07-08 13:02:30 +00:00 committed by Jaewan Kim
parent 9b4918656f
commit b1e9257de1

View file

@ -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;
}