07cc4be6a7
* Add analyzers to MediaBrowser.XbmcMetadata * Enable TreatWarningsAsErrors for MediaBrowser.XbmcMetadata * Add analyzers to MediaBrowser.WebDashboard * Enable TreatWarningsAsErrors for MediaBrowser.WebDashboard * Disable SA1600 in favor of CS1591
44 lines
1.0 KiB
C#
44 lines
1.0 KiB
C#
#pragma warning disable CS1591
|
|
|
|
using MediaBrowser.Model.Dlna;
|
|
|
|
namespace Emby.Dlna.Profiles
|
|
{
|
|
[System.Xml.Serialization.XmlRoot("Profile")]
|
|
public class MarantzProfile : DefaultProfile
|
|
{
|
|
public MarantzProfile()
|
|
{
|
|
Name = "Marantz";
|
|
|
|
SupportedMediaTypes = "Audio";
|
|
|
|
Identification = new DeviceIdentification
|
|
{
|
|
Manufacturer = @"Marantz",
|
|
|
|
Headers = new[]
|
|
{
|
|
new HttpHeaderInfo
|
|
{
|
|
Name = "User-Agent",
|
|
Value = "Marantz",
|
|
Match = HeaderMatchType.Substring
|
|
}
|
|
}
|
|
};
|
|
|
|
DirectPlayProfiles = new[]
|
|
{
|
|
new DirectPlayProfile
|
|
{
|
|
Container = "aac,mp3,wav,wma,flac",
|
|
Type = DlnaProfileType.Audio
|
|
},
|
|
};
|
|
|
|
ResponseProfiles = new ResponseProfile[] { };
|
|
}
|
|
}
|
|
}
|