diff options
| author | tikuf <admin@nyalindee.com> | 2014-04-02 16:53:53 +1100 |
|---|---|---|
| committer | tikuf <admin@nyalindee.com> | 2014-04-02 16:53:53 +1100 |
| commit | 9ff262bc2ac24be2931505aa877b0c500fcb988a (patch) | |
| tree | 75ef8f32fc4b7359cc48f45be58216491d624b93 /MediaBrowser.Controller/Dlna/TranscodingProfile.cs | |
| parent | 8882925dab080eb236a5cc896f48ed99711d76a8 (diff) | |
| parent | 6fe7264f7828aff196e19cfa3497835c5921a7f9 (diff) | |
Merge branch 'master' of https://github.com/MediaBrowser/MediaBrowser
Diffstat (limited to 'MediaBrowser.Controller/Dlna/TranscodingProfile.cs')
| -rw-r--r-- | MediaBrowser.Controller/Dlna/TranscodingProfile.cs | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/MediaBrowser.Controller/Dlna/TranscodingProfile.cs b/MediaBrowser.Controller/Dlna/TranscodingProfile.cs deleted file mode 100644 index 704ba54d2..000000000 --- a/MediaBrowser.Controller/Dlna/TranscodingProfile.cs +++ /dev/null @@ -1,47 +0,0 @@ -using System.Collections.Generic; -using System.Linq; -using System.Xml.Serialization; - -namespace MediaBrowser.Controller.Dlna -{ - public class TranscodingProfile - { - [XmlAttribute("container")] - public string Container { get; set; } - - [XmlAttribute("type")] - public DlnaProfileType Type { get; set; } - - [XmlAttribute("videoCodec")] - public string VideoCodec { get; set; } - - [XmlAttribute("audioCodec")] - public string AudioCodec { get; set; } - - [XmlAttribute("protocol")] - public string Protocol { get; set; } - - [XmlAttribute("estimateContentLength")] - public bool EstimateContentLength { get; set; } - - [XmlAttribute("enableMpegtsM2TsMode")] - public bool EnableMpegtsM2TsMode { get; set; } - - [XmlAttribute("transcodeSeekInfo")] - public TranscodeSeekInfo TranscodeSeekInfo { get; set; } - - [XmlAttribute("videoProfile")] - public string VideoProfile { get; set; } - - public List<string> GetAudioCodecs() - { - return (AudioCodec ?? string.Empty).Split(',').Where(i => !string.IsNullOrWhiteSpace(i)).ToList(); - } - } - - public enum TranscodeSeekInfo - { - Auto = 0, - Bytes = 1 - } -} |
