added sync cpu settings

This commit is contained in:
Luke Pulverenti
2015-04-09 13:30:18 -04:00
parent b9c656e859
commit 3cb2043028
8 changed files with 38 additions and 26 deletions

View File

@@ -5,5 +5,12 @@ namespace MediaBrowser.Model.Sync
{
public string TemporaryPath { get; set; }
public long UploadSpeedLimitBytes { get; set; }
public int TranscodingCpuCoreLimit { get; set; }
public bool EnableFullSpeedTranscoding { get; set; }
public SyncOptions()
{
TranscodingCpuCoreLimit = 1;
}
}
}