Procházet zdrojové kódy

Disable hevc encoding by default

Bill Thornton před 4 roky
rodič
revize
cc0f191228

+ 1 - 1
MediaBrowser.Model/Configuration/EncodingOptions.cs

@@ -35,7 +35,7 @@ namespace MediaBrowser.Model.Configuration
             EnableDecodingColorDepth10Vp9 = true;
             EnableDecodingColorDepth10Vp9 = true;
             EnableEnhancedNvdecDecoder = true;
             EnableEnhancedNvdecDecoder = true;
             EnableHardwareEncoding = true;
             EnableHardwareEncoding = true;
-            AllowHevcEncoding = true;
+            AllowHevcEncoding = false;
             EnableSubtitleExtraction = true;
             EnableSubtitleExtraction = true;
             HardwareDecodingCodecs = new string[] { "h264", "vc1" };
             HardwareDecodingCodecs = new string[] { "h264", "vc1" };
         }
         }