diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-01-01 13:50:29 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-01-01 13:50:29 -0500 |
| commit | 3b1bbe23329429333442a4b0702ed80488415f6d (patch) | |
| tree | 651ae963427cfbac7fa8e095d3711c8e31506f42 | |
| parent | d9e0e2e91a365f508466bcf60c2e62945e10f58d (diff) | |
updated windows phone profile
| -rw-r--r-- | MediaBrowser.Dlna/Profiles/WindowsPhoneProfile.cs | 28 |
1 files changed, 13 insertions, 15 deletions
diff --git a/MediaBrowser.Dlna/Profiles/WindowsPhoneProfile.cs b/MediaBrowser.Dlna/Profiles/WindowsPhoneProfile.cs index 3fb40dedd0..5a9bc5cd5a 100644 --- a/MediaBrowser.Dlna/Profiles/WindowsPhoneProfile.cs +++ b/MediaBrowser.Dlna/Profiles/WindowsPhoneProfile.cs @@ -105,20 +105,6 @@ namespace MediaBrowser.Dlna.Profiles new CodecProfile { Type = CodecType.Video, - Conditions = new [] - { - new ProfileCondition - { - Condition = ProfileConditionType.NotEquals, - Property = ProfileConditionValue.IsAnamorphic, - Value = "true" - } - } - }, - - new CodecProfile - { - Type = CodecType.Video, Codec="h264", Conditions = new [] { @@ -154,7 +140,13 @@ namespace MediaBrowser.Dlna.Profiles Property = ProfileConditionValue.VideoLevel, Value = "3" }, - new ProfileCondition(ProfileConditionType.EqualsAny, ProfileConditionValue.VideoProfile, "baseline|constrained baseline") + new ProfileCondition(ProfileConditionType.EqualsAny, ProfileConditionValue.VideoProfile, "baseline|constrained baseline"), + new ProfileCondition + { + Condition = ProfileConditionType.NotEquals, + Property = ProfileConditionValue.IsAnamorphic, + Value = "true" + } } }, @@ -188,6 +180,12 @@ namespace MediaBrowser.Dlna.Profiles Property = ProfileConditionValue.VideoFramerate, Value = "24", IsRequired = false + }, + new ProfileCondition + { + Condition = ProfileConditionType.NotEquals, + Property = ProfileConditionValue.IsAnamorphic, + Value = "true" } } }, |
