mirror of
https://gitlab.futo.org/videostreaming/grayjay.git
synced 2025-08-15 23:09:09 +00:00
Change adaptive streaming (HLS and Dash) quality to sort in descending quality to align with YouTube and the rest of Grayjay
Changelog: changed
This commit is contained in:
parent
de39451f67
commit
9944842a2f
1 changed files with 2 additions and 2 deletions
|
@ -1897,8 +1897,8 @@ class VideoDetailView : ConstraintLayout {
|
||||||
}
|
}
|
||||||
|
|
||||||
updateQualityFormatsOverlay(
|
updateQualityFormatsOverlay(
|
||||||
videoTrackFormats.distinctBy { it.height }.sortedBy { it.height },
|
videoTrackFormats.distinctBy { it.height }.sortedByDescending { it.height },
|
||||||
audioTrackFormats.distinctBy { it.bitrate }.sortedBy { it.bitrate });
|
audioTrackFormats.distinctBy { it.bitrate }.sortedByDescending { it.bitrate });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue