aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-11-27 10:44:50 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-11-27 10:44:50 -0500
commita6403dab45fe60fb304233e310ceb5aea93dfbff (patch)
treee99da87d68176b50aa302ae80c6fd734276c07e8
parentda4b87033e7432ad8ff057c0dfa6f51f28aceb6d (diff)
update windows 8 profile
-rw-r--r--MediaBrowser.Dlna/Profiles/Windows81Profile.cs8
1 files changed, 7 insertions, 1 deletions
diff --git a/MediaBrowser.Dlna/Profiles/Windows81Profile.cs b/MediaBrowser.Dlna/Profiles/Windows81Profile.cs
index 0371d0d16..1d3f5046c 100644
--- a/MediaBrowser.Dlna/Profiles/Windows81Profile.cs
+++ b/MediaBrowser.Dlna/Profiles/Windows81Profile.cs
@@ -142,7 +142,13 @@ namespace MediaBrowser.Dlna.Profiles
// The first one in the list should be the higest one, e.g. if High profile is supported, make sure it appears before baseline: high|baseline
- new ProfileCondition(ProfileConditionType.EqualsAny, ProfileConditionValue.VideoProfile, "baseline|constrained baseline")
+ new ProfileCondition(ProfileConditionType.EqualsAny, ProfileConditionValue.VideoProfile, "high|main|extended|baseline|constrained baseline"),
+ new ProfileCondition
+ {
+ Condition = ProfileConditionType.LessThanEqual,
+ Property = ProfileConditionValue.VideoLevel,
+ Value = "51"
+ }
}
},