aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorartiume <siderite@gmail.com>2020-05-29 10:22:16 -0400
committerVasily <just.one.man@yandex.ru>2020-06-08 14:45:27 +0300
commitb79957d07eeda3c888d0ec2051bb4185a410ac0e (patch)
tree4492f975cb58b9fe31fff7b059ba6579bf221d60
parent0476acf5d557e7b95de2292d70d41b74deeef9ed (diff)
Split HEVC VP9 10bit
-rw-r--r--MediaBrowser.Model/Configuration/EncodingOptions.cs6
1 files changed, 4 insertions, 2 deletions
diff --git a/MediaBrowser.Model/Configuration/EncodingOptions.cs b/MediaBrowser.Model/Configuration/EncodingOptions.cs
index 3a6d2e99c..a790ec42a 100644
--- a/MediaBrowser.Model/Configuration/EncodingOptions.cs
+++ b/MediaBrowser.Model/Configuration/EncodingOptions.cs
@@ -36,7 +36,8 @@ namespace MediaBrowser.Model.Configuration
public string EncoderPreset { get; set; }
public string DeinterlaceMethod { get; set; }
- public bool EnableDecodingColorDepth10 { get; set; }
+ public bool EnableDecodingColorDepth10Hevc { get; set; }
+ public bool EnableDecodingColorDepth10Vp9 { get; set; }
public bool EnableHardwareEncoding { get; set; }
public bool EnableSubtitleExtraction { get; set; }
@@ -54,7 +55,8 @@ namespace MediaBrowser.Model.Configuration
H264Crf = 23;
H265Crf = 28;
DeinterlaceMethod = "yadif";
- EnableDecodingColorDepth10 = true;
+ EnableDecodingColorDepth10Hevc = true;
+ EnableDecodingColorDepth10Vp9 = true;
EnableHardwareEncoding = true;
EnableSubtitleExtraction = true;
HardwareDecodingCodecs = new string[] { "h264", "vc1" };