aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--MediaBrowser.Dlna/Profiles/WindowsMediaCenterProfile.cs18
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 []
{