diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-03-17 21:45:41 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-03-17 21:45:41 -0400 |
| commit | 53749f077bedc84323ac13694c7f0963a65d1f06 (patch) | |
| tree | e00d218e8aa240eb1e33e24f331dcf1815036781 /MediaBrowser.Controller/Dlna/TranscodingProfile.cs | |
| parent | 3d70929708b9ea61bc1ee6a4953dd206ea50e60d (diff) | |
progress on channels api
Diffstat (limited to 'MediaBrowser.Controller/Dlna/TranscodingProfile.cs')
| -rw-r--r-- | MediaBrowser.Controller/Dlna/TranscodingProfile.cs | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Dlna/TranscodingProfile.cs b/MediaBrowser.Controller/Dlna/TranscodingProfile.cs index abc8868fb..3b0a513d1 100644 --- a/MediaBrowser.Controller/Dlna/TranscodingProfile.cs +++ b/MediaBrowser.Controller/Dlna/TranscodingProfile.cs @@ -1,4 +1,5 @@ - +using System.Collections.Generic; + namespace MediaBrowser.Controller.Dlna { public class TranscodingProfile @@ -9,8 +10,28 @@ namespace MediaBrowser.Controller.Dlna public string MimeType { get; set; } + public string OrgPn { get; set; } + public string VideoCodec { get; set; } public string AudioCodec { get; set; } + + public List<TranscodingSetting> Settings { get; set; } + + public TranscodingProfile() + { + Settings = new List<TranscodingSetting>(); + } + } + + public class TranscodingSetting + { + public TranscodingSettingType Name { get; set; } + public string Value { get; set; } + } + + public enum TranscodingSettingType + { + Profile } } |
