I play a stream with CC708 subtitle on Exoplayer 2.13.1. The CC708 subtitle can NOT be displayed correctly with multiple windows that have different window priorities. Please see the below picture.

I found one line code is incorrect in Cea708Decoder class:
Collections.sort(
displayCueInfos,
(thisInfo, thatInfo) -> Integer.compare(thisInfo.priority,thatInfo.priority));
should be changed to :
Collections.sort(
displayCueInfos,
(thisInfo, thatInfo) -> Integer.compare(thatInfo.priority,thisInfo.priority));
So the sort is descending order, not ascending order. Thanks.
I play a stream with CC708 subtitle on Exoplayer 2.13.1. The CC708 subtitle can NOT be displayed correctly with multiple windows that have different window priorities. Please see the below picture.

I found one line code is incorrect in Cea708Decoder class:
should be changed to :
So the sort is descending order, not ascending order. Thanks.