From 74a8ca9c38d17e407c70aafe2cfd42b8b13d923e Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Thu, 9 Oct 2014 18:22:04 -0400 Subject: fix case sensitive file names --- MediaBrowser.Model/Dlna/Profiles/AndroidProfile.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'MediaBrowser.Model/Dlna/Profiles/AndroidProfile.cs') diff --git a/MediaBrowser.Model/Dlna/Profiles/AndroidProfile.cs b/MediaBrowser.Model/Dlna/Profiles/AndroidProfile.cs index 1f0b9a262..dfe14f1c7 100644 --- a/MediaBrowser.Model/Dlna/Profiles/AndroidProfile.cs +++ b/MediaBrowser.Model/Dlna/Profiles/AndroidProfile.cs @@ -32,7 +32,7 @@ namespace MediaBrowser.Model.Dlna.Profiles VideoCodec = "h264", AudioCodec = "aac", Type = DlnaProfileType.Video, - VideoProfile = "Baseline", + VideoProfile = "baseline", Context = EncodingContext.Streaming }); } @@ -42,7 +42,7 @@ namespace MediaBrowser.Model.Dlna.Profiles VideoCodec = "h264", AudioCodec = "aac", Type = DlnaProfileType.Video, - VideoProfile = "Baseline", + VideoProfile = "baseline", Context = EncodingContext.Static }); @@ -102,7 +102,7 @@ namespace MediaBrowser.Model.Dlna.Profiles Conditions = new [] { - new ProfileCondition(ProfileConditionType.SubstringOf, ProfileConditionValue.VideoProfile, "baseline"), + new ProfileCondition(ProfileConditionType.EqualsAny, ProfileConditionValue.VideoProfile, "baseline|constrained baseline"), new ProfileCondition(ProfileConditionType.LessThanEqual, ProfileConditionValue.Width, "1920"), new ProfileCondition(ProfileConditionType.LessThanEqual, ProfileConditionValue.Height, "1080"), new ProfileCondition(ProfileConditionType.LessThanEqual, ProfileConditionValue.VideoBitDepth, "8"), -- cgit v1.2.3