Merge pull request #767 from stonerl/new-defaults

Changes to defaults
This commit is contained in:
Arkadiusz Fal
2024-08-31 12:48:13 +02:00
committed by GitHub
6 changed files with 195 additions and 78 deletions

View File

@@ -301,7 +301,7 @@ struct QualityProfileForm: View {
func isFormatDisabled(_ format: QualityProfile.Format) -> Bool {
guard backend == .appleAVPlayer else { return false }
let avPlayerFormats = [QualityProfile.Format.hls, .stream, .mp4]
let avPlayerFormats = [.stream, QualityProfile.Format.hls]
return !avPlayerFormats.contains(format)
}