diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-01-01 13:53:24 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-01-01 13:53:24 -0500 |
| commit | 24e1f9834a8116d2593917e087888a7de51892b1 (patch) | |
| tree | c2224b3fa37eab463cd3b24b0295c66a84afc0d3 | |
| parent | 3b1bbe23329429333442a4b0702ed80488415f6d (diff) | |
fix windows 8 profile
| -rw-r--r-- | MediaBrowser.Dlna/Profiles/Windows81Profile.cs | 37 |
1 files changed, 22 insertions, 15 deletions
diff --git a/MediaBrowser.Dlna/Profiles/Windows81Profile.cs b/MediaBrowser.Dlna/Profiles/Windows81Profile.cs index 1d3f5046c..056f76f79 100644 --- a/MediaBrowser.Dlna/Profiles/Windows81Profile.cs +++ b/MediaBrowser.Dlna/Profiles/Windows81Profile.cs @@ -111,21 +111,6 @@ namespace MediaBrowser.Dlna.Profiles new CodecProfile { Type = CodecType.Video, - Conditions = new [] - { - new ProfileCondition - { - Condition = ProfileConditionType.LessThanEqual, - Property = ProfileConditionValue.VideoBitDepth, - Value = "8", - IsRequired = false - } - } - }, - - new CodecProfile - { - Type = CodecType.Video, Codec="h264", Conditions = new [] { @@ -148,6 +133,28 @@ namespace MediaBrowser.Dlna.Profiles Condition = ProfileConditionType.LessThanEqual, Property = ProfileConditionValue.VideoLevel, Value = "51" + }, + new ProfileCondition + { + Condition = ProfileConditionType.LessThanEqual, + Property = ProfileConditionValue.VideoBitDepth, + Value = "8", + IsRequired = false + } + } + }, + + new CodecProfile + { + Type = CodecType.Video, + Conditions = new [] + { + new ProfileCondition + { + Condition = ProfileConditionType.LessThanEqual, + Property = ProfileConditionValue.VideoBitDepth, + Value = "8", + IsRequired = false } } }, |
