소스 검색

Split HEVC VP9 10bit

artiume 5 년 전
부모
커밋
b79957d07e
1개의 변경된 파일4개의 추가작업 그리고 2개의 파일을 삭제
  1. 4 2
      MediaBrowser.Model/Configuration/EncodingOptions.cs

+ 4 - 2
MediaBrowser.Model/Configuration/EncodingOptions.cs

@@ -36,7 +36,8 @@ namespace MediaBrowser.Model.Configuration
         public string EncoderPreset { get; set; }
         public string EncoderPreset { get; set; }
 
 
         public string DeinterlaceMethod { 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 EnableHardwareEncoding { get; set; }
 
 
         public bool EnableSubtitleExtraction { get; set; }
         public bool EnableSubtitleExtraction { get; set; }
@@ -54,7 +55,8 @@ namespace MediaBrowser.Model.Configuration
             H264Crf = 23;
             H264Crf = 23;
             H265Crf = 28;
             H265Crf = 28;
             DeinterlaceMethod = "yadif";
             DeinterlaceMethod = "yadif";
-            EnableDecodingColorDepth10 = true;
+            EnableDecodingColorDepth10Hevc = true;
+            EnableDecodingColorDepth10Vp9 = true;
             EnableHardwareEncoding = true;
             EnableHardwareEncoding = true;
             EnableSubtitleExtraction = true;
             EnableSubtitleExtraction = true;
             HardwareDecodingCodecs = new string[] { "h264", "vc1" };
             HardwareDecodingCodecs = new string[] { "h264", "vc1" };