jellyfin/MediaBrowser.Dlna/Profiles/DenonAvrProfile.cs

31 lines
734 B
C#
Raw Normal View History

2014-03-26 16:06:48 +01:00
using System.Xml.Serialization;
using MediaBrowser.Controller.Dlna;
2014-04-02 00:23:07 +02:00
using MediaBrowser.Model.Dlna;
2014-03-23 17:42:02 +01:00
namespace MediaBrowser.Dlna.Profiles
{
2014-03-26 16:06:48 +01:00
[XmlRoot("Profile")]
2014-03-23 17:42:02 +01:00
public class DenonAvrProfile : DefaultProfile
{
public DenonAvrProfile()
{
Name = "Denon AVR";
Identification = new DeviceIdentification
{
FriendlyName = @"Denon:\[AVR:.*",
Manufacturer = "Denon"
};
DirectPlayProfiles = new[]
{
new DirectPlayProfile
{
Container = "mp3,flac,m4a,wma",
Type = DlnaProfileType.Audio
},
};
}
}
}