diff options
| author | nyanmisaka <nst799610810@gmail.com> | 2021-01-25 03:40:34 +0800 |
|---|---|---|
| committer | nyanmisaka <nst799610810@gmail.com> | 2021-01-25 03:40:34 +0800 |
| commit | 326fa8ce384d4e0c433007e02f3f68b8d5538e55 (patch) | |
| tree | 63b835d1100d324ed75790e5da18671247439b9a /MediaBrowser.Model/Configuration/EncodingOptions.cs | |
| parent | 3806cc5b3ff3633d66d96e990fd26c7db8365cd5 (diff) | |
add an enhanced nvdec decoder
Diffstat (limited to 'MediaBrowser.Model/Configuration/EncodingOptions.cs')
| -rw-r--r-- | MediaBrowser.Model/Configuration/EncodingOptions.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Configuration/EncodingOptions.cs b/MediaBrowser.Model/Configuration/EncodingOptions.cs index 38b333510..5cd8744ed 100644 --- a/MediaBrowser.Model/Configuration/EncodingOptions.cs +++ b/MediaBrowser.Model/Configuration/EncodingOptions.cs @@ -65,6 +65,8 @@ namespace MediaBrowser.Model.Configuration public bool EnableDecodingColorDepth10Vp9 { get; set; } + public bool EnableEnhancedNvdecDecoder { get; set; } + public bool EnableHardwareEncoding { get; set; } public bool AllowHevcEncoding { get; set; } @@ -100,6 +102,7 @@ namespace MediaBrowser.Model.Configuration DeinterlaceMethod = "yadif"; EnableDecodingColorDepth10Hevc = true; EnableDecodingColorDepth10Vp9 = true; + EnableEnhancedNvdecDecoder = true; EnableHardwareEncoding = true; AllowHevcEncoding = true; EnableSubtitleExtraction = true; |
