diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-04-09 13:30:18 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-04-09 13:30:18 -0400 |
| commit | 3cb2043028875667ee1074266cc9b30eb05a9b09 (patch) | |
| tree | 93dbe2fb2983dae234a263144adb2a8b144bb642 /MediaBrowser.Model/Sync | |
| parent | b9c656e859fe28ed6a66580d1eb5577bd50264e6 (diff) | |
added sync cpu settings
Diffstat (limited to 'MediaBrowser.Model/Sync')
| -rw-r--r-- | MediaBrowser.Model/Sync/SyncOptions.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Sync/SyncOptions.cs b/MediaBrowser.Model/Sync/SyncOptions.cs index 765dea86b9..7f0c17b373 100644 --- a/MediaBrowser.Model/Sync/SyncOptions.cs +++ b/MediaBrowser.Model/Sync/SyncOptions.cs @@ -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; + } } } |
