mirror of
https://github.com/androidx/media.git
synced 2025-04-30 06:46:50 +08:00

Issue: google/ExoPlayer#9697 Before, the `MAX_SEQUENCE_NUMBER` is 65535, such that the logic to get the next sequence number: `previousSeqNumber + 1 % MAX_SEQUENCE_NUMBER` yields 0 when `previousSeqNumber` is 65534. However, the next sequence number should be 65535. PiperOrigin-RevId: 410530098