From a6403dab45fe60fb304233e310ceb5aea93dfbff Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Thu, 27 Nov 2014 10:44:50 -0500 Subject: [PATCH] update windows 8 profile --- MediaBrowser.Dlna/Profiles/Windows81Profile.cs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/MediaBrowser.Dlna/Profiles/Windows81Profile.cs b/MediaBrowser.Dlna/Profiles/Windows81Profile.cs index 0371d0d16c..1d3f5046cd 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" + } } },