You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
977 B
37 lines
977 B
using System.Xml.Serialization;
|
|
using MediaBrowser.Controller.Dlna;
|
|
using MediaBrowser.Model.Dlna;
|
|
|
|
namespace MediaBrowser.Dlna.Profiles
|
|
{
|
|
[XmlRoot("Profile")]
|
|
public class LinksysDMA2100Profile : DefaultProfile
|
|
{
|
|
public LinksysDMA2100Profile()
|
|
{
|
|
// Linksys DMA2100us does not need any transcoding of the formats we support statically
|
|
Name = "Linksys DMA2100";
|
|
|
|
Identification = new DeviceIdentification
|
|
{
|
|
ModelName = "DMA2100us"
|
|
};
|
|
|
|
DirectPlayProfiles = new[]
|
|
{
|
|
new DirectPlayProfile
|
|
{
|
|
Container = "mp3,flac,m4a,wma",
|
|
Type = DlnaProfileType.Audio
|
|
},
|
|
|
|
new DirectPlayProfile
|
|
{
|
|
Container = "avi,mp4,mkv,ts",
|
|
Type = DlnaProfileType.Video
|
|
}
|
|
};
|
|
}
|
|
}
|
|
}
|