diff options
| author | 7illusions <z@7illusions.com> | 2014-03-24 07:56:48 +0100 |
|---|---|---|
| committer | 7illusions <z@7illusions.com> | 2014-03-24 07:56:48 +0100 |
| commit | b50cac02492b55db230889d44e79142c0605d835 (patch) | |
| tree | ba87ee5708350d7a52aa7c38c3145492836576db /MediaBrowser.Controller/Dlna/CodecProfile.cs | |
| parent | f3e992b82be4b23e33e6130d1495f2b5203d0576 (diff) | |
| parent | 787f5e8382af65279dfc05e0b23ac9ec874c80ad (diff) | |
Merge pull request #1 from MediaBrowser/master
Sync
Diffstat (limited to 'MediaBrowser.Controller/Dlna/CodecProfile.cs')
| -rw-r--r-- | MediaBrowser.Controller/Dlna/CodecProfile.cs | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/MediaBrowser.Controller/Dlna/CodecProfile.cs b/MediaBrowser.Controller/Dlna/CodecProfile.cs index a4592e654..5621c7ef2 100644 --- a/MediaBrowser.Controller/Dlna/CodecProfile.cs +++ b/MediaBrowser.Controller/Dlna/CodecProfile.cs @@ -6,12 +6,12 @@ namespace MediaBrowser.Controller.Dlna public class CodecProfile { public CodecType Type { get; set; } - public List<ProfileCondition> Conditions { get; set; } + public ProfileCondition[] Conditions { get; set; } public string Codec { get; set; } public CodecProfile() { - Conditions = new List<ProfileCondition>(); + Conditions = new ProfileCondition[] {}; } public List<string> GetCodecs() @@ -57,9 +57,12 @@ namespace MediaBrowser.Controller.Dlna Width, Height, Has64BitOffsets, + VideoBitDepth, VideoBitrate, VideoFramerate, VideoLevel, - VideoProfile + VideoPacketLength, + VideoProfile, + VideoTimestamp } } |
