jellyfin/MediaBrowser.Controller/Dlna/CodecProfile.cs

87 lines
1.9 KiB
C#
Raw Normal View History

2014-03-24 18:54:45 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
2014-03-26 16:06:48 +01:00
using System.Xml.Serialization;
2014-03-22 21:02:10 +01:00
namespace MediaBrowser.Controller.Dlna
{
public class CodecProfile
{
2014-03-26 16:06:48 +01:00
[XmlAttribute("type")]
2014-03-22 21:02:10 +01:00
public CodecType Type { get; set; }
2014-03-26 16:06:48 +01:00
2014-03-23 17:42:02 +01:00
public ProfileCondition[] Conditions { get; set; }
2014-03-26 16:06:48 +01:00
[XmlAttribute("codec")]
public string Codec { get; set; }
2014-03-22 21:02:10 +01:00
public CodecProfile()
{
2014-03-23 17:42:02 +01:00
Conditions = new ProfileCondition[] {};
}
public List<string> GetCodecs()
{
return (Codec ?? string.Empty).Split(',').Where(i => !string.IsNullOrWhiteSpace(i)).ToList();
2014-03-22 21:02:10 +01:00
}
2014-03-24 18:54:45 +01:00
public bool ContainsCodec(string codec)
{
var codecs = GetCodecs();
return codecs.Count == 0 || codecs.Contains(codec, StringComparer.OrdinalIgnoreCase);
}
2014-03-22 21:02:10 +01:00
}
public enum CodecType
{
VideoCodec = 0,
VideoAudioCodec = 1,
AudioCodec = 2
}
public class ProfileCondition
{
2014-03-26 16:06:48 +01:00
[XmlAttribute("condition")]
2014-03-22 21:02:10 +01:00
public ProfileConditionType Condition { get; set; }
2014-03-26 16:06:48 +01:00
[XmlAttribute("property")]
2014-03-22 21:02:10 +01:00
public ProfileConditionValue Property { get; set; }
2014-03-26 16:06:48 +01:00
[XmlAttribute("value")]
2014-03-22 21:02:10 +01:00
public string Value { get; set; }
2014-03-26 16:06:48 +01:00
[XmlAttribute("isRequired")]
2014-03-23 01:48:34 +01:00
public bool IsRequired { get; set; }
public ProfileCondition()
{
IsRequired = true;
}
2014-03-22 21:02:10 +01:00
}
public enum ProfileConditionType
{
Equals = 0,
NotEquals = 1,
LessThanEqual = 2,
GreaterThanEqual = 3
}
public enum ProfileConditionValue
{
AudioChannels,
AudioBitrate,
2014-03-23 01:48:34 +01:00
AudioProfile,
2014-03-22 21:02:10 +01:00
Filesize,
Width,
Height,
2014-03-23 01:48:34 +01:00
Has64BitOffsets,
2014-03-23 07:07:43 +01:00
VideoBitDepth,
2014-03-22 21:02:10 +01:00
VideoBitrate,
VideoFramerate,
2014-03-23 01:48:34 +01:00
VideoLevel,
2014-03-25 22:13:55 +01:00
VideoProfile
2014-03-22 21:02:10 +01:00
}
}