diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-06-04 18:33:13 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-06-04 18:33:13 -0400 |
| commit | 39547de1f8ece19e609fe248514684c2f394ac2b (patch) | |
| tree | 83f061cad71600cf729ab37a2a5d8897fd8267de | |
| parent | 03a49672fafb4abc08c2960c0907de34aa422b93 (diff) | |
update wmc dlna profile
| -rw-r--r-- | MediaBrowser.Dlna/Profiles/WindowsMediaCenterProfile.cs | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/MediaBrowser.Dlna/Profiles/WindowsMediaCenterProfile.cs b/MediaBrowser.Dlna/Profiles/WindowsMediaCenterProfile.cs index f7251ece0..163beb504 100644 --- a/MediaBrowser.Dlna/Profiles/WindowsMediaCenterProfile.cs +++ b/MediaBrowser.Dlna/Profiles/WindowsMediaCenterProfile.cs @@ -216,7 +216,7 @@ namespace MediaBrowser.Dlna.Profiles new CodecProfile { Type = CodecType.VideoAudio, - Codec = "ac3,wmav2,wmapro", + Codec = "ac3", Conditions = new [] { new ProfileCondition @@ -232,6 +232,22 @@ namespace MediaBrowser.Dlna.Profiles new CodecProfile { Type = CodecType.VideoAudio, + Codec = "wmav2,wmapro", + Conditions = new [] + { + new ProfileCondition + { + Condition = ProfileConditionType.LessThanEqual, + Property = ProfileConditionValue.AudioChannels, + Value = "2", + IsRequired = false + } + } + }, + + new CodecProfile + { + Type = CodecType.VideoAudio, Codec = "aac", Conditions = new [] { |
