diff options
| author | Claus Vium <cvium@users.noreply.github.com> | 2020-09-04 11:44:15 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-04 11:44:15 +0200 |
| commit | 81c764e87f52771a20e66af2d1c65245f2202925 (patch) | |
| tree | 4338d54bc75b563e6931d7642d882ceb89224e88 /MediaBrowser.Model/Configuration/EncodingOptions.cs | |
| parent | 1d3303fa0a4a106dc74065ed37f9353ef763a52a (diff) | |
| parent | 250216cc5335ec79c789987dc5dcef0243d548eb (diff) | |
Merge branch 'master' into output-formatters
Diffstat (limited to 'MediaBrowser.Model/Configuration/EncodingOptions.cs')
| -rw-r--r-- | MediaBrowser.Model/Configuration/EncodingOptions.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Configuration/EncodingOptions.cs b/MediaBrowser.Model/Configuration/EncodingOptions.cs index 9a30f7e9f..41ff517a0 100644 --- a/MediaBrowser.Model/Configuration/EncodingOptions.cs +++ b/MediaBrowser.Model/Configuration/EncodingOptions.cs @@ -11,6 +11,8 @@ namespace MediaBrowser.Model.Configuration public double DownMixAudioBoost { get; set; } + public int MaxMuxingQueueSize { get; set; } + public bool EnableThrottling { get; set; } public int ThrottleDelaySeconds { get; set; } @@ -35,6 +37,8 @@ namespace MediaBrowser.Model.Configuration public string EncoderPreset { get; set; } + public bool DeinterlaceDoubleRate { get; set; } + public string DeinterlaceMethod { get; set; } public bool EnableDecodingColorDepth10Hevc { get; set; } @@ -50,6 +54,7 @@ namespace MediaBrowser.Model.Configuration public EncodingOptions() { DownMixAudioBoost = 2; + MaxMuxingQueueSize = 2048; EnableThrottling = false; ThrottleDelaySeconds = 180; EncodingThreadCount = -1; @@ -57,6 +62,7 @@ namespace MediaBrowser.Model.Configuration VaapiDevice = "/dev/dri/renderD128"; H264Crf = 23; H265Crf = 28; + DeinterlaceDoubleRate = false; DeinterlaceMethod = "yadif"; EnableDecodingColorDepth10Hevc = true; EnableDecodingColorDepth10Vp9 = true; |
