separate profiles

This commit is contained in:
Luke Pulverenti
2014-03-23 12:42:02 -04:00
parent e0c60dc29a
commit 85aa11e926
24 changed files with 2187 additions and 1097 deletions

View File

@@ -1,5 +1,4 @@
using System.Collections.Generic;
namespace MediaBrowser.Controller.Dlna
{
public class TranscodingProfile
@@ -15,12 +14,14 @@ namespace MediaBrowser.Controller.Dlna
public TranscodeSeekInfo TranscodeSeekInfo { get; set; }
public List<TranscodingSetting> Settings { get; set; }
public TranscodingSetting[] Settings { get; set; }
public TranscodingProfile()
{
Settings = new List<TranscodingSetting>();
Settings = new TranscodingSetting[] { };
}
public bool EnableMpegtsM2TsMode { get; set; }
}
public class TranscodingSetting