diff options
| author | gnattu <gnattu@users.noreply.github.com> | 2024-03-28 23:26:01 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-28 09:26:01 -0600 |
| commit | be21d51742f3bd85f5401c925791148bdc4b0cbf (patch) | |
| tree | 8f8ed07c692360b86266998916ae8c844f22ccf9 /MediaBrowser.Model/Configuration/EncodingOptions.cs | |
| parent | aac96addfeb5fa6a02450935c89e2580532c4652 (diff) | |
fix: move trickplay specific option into TrickplayOptions (#11229)
Diffstat (limited to 'MediaBrowser.Model/Configuration/EncodingOptions.cs')
| -rw-r--r-- | MediaBrowser.Model/Configuration/EncodingOptions.cs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/MediaBrowser.Model/Configuration/EncodingOptions.cs b/MediaBrowser.Model/Configuration/EncodingOptions.cs index ab6f0d867..9a192f584 100644 --- a/MediaBrowser.Model/Configuration/EncodingOptions.cs +++ b/MediaBrowser.Model/Configuration/EncodingOptions.cs @@ -51,7 +51,6 @@ public class EncodingOptions EnableHardwareEncoding = true; AllowHevcEncoding = false; AllowAv1Encoding = false; - AllowMjpegEncoding = false; EnableSubtitleExtraction = true; AllowOnDemandMetadataBasedKeyframeExtractionForExtensions = new[] { "mkv" }; HardwareDecodingCodecs = new string[] { "h264", "vc1" }; @@ -263,11 +262,6 @@ public class EncodingOptions public bool AllowAv1Encoding { get; set; } /// <summary> - /// Gets or sets a value indicating whether MJPEG encoding is enabled. - /// </summary> - public bool AllowMjpegEncoding { get; set; } - - /// <summary> /// Gets or sets a value indicating whether subtitle extraction is enabled. /// </summary> public bool EnableSubtitleExtraction { get; set; } |
