diff options
| author | PloughPuff <ploughpuff@protonmail.com> | 2019-02-27 16:33:08 +0000 |
|---|---|---|
| committer | Ploughpuff <ploughpuff@protonmail.com> | 2019-03-05 21:29:15 +0000 |
| commit | 8104e739d5b83d0d6563bb685f910697e60d6c12 (patch) | |
| tree | 24c8dfcf23c26cda58a8428c6fe0f2a73eb000ed /MediaBrowser.Model/Configuration/EncodingOptions.cs | |
| parent | 632968dc817a398bff84ca3ef82337b4e5786416 (diff) | |
Address review comments from Bond
Diffstat (limited to 'MediaBrowser.Model/Configuration/EncodingOptions.cs')
| -rw-r--r-- | MediaBrowser.Model/Configuration/EncodingOptions.cs | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/MediaBrowser.Model/Configuration/EncodingOptions.cs b/MediaBrowser.Model/Configuration/EncodingOptions.cs index ff697437a..7fc985ba0 100644 --- a/MediaBrowser.Model/Configuration/EncodingOptions.cs +++ b/MediaBrowser.Model/Configuration/EncodingOptions.cs @@ -8,8 +8,14 @@ namespace MediaBrowser.Model.Configuration public bool EnableThrottling { get; set; } public int ThrottleDelaySeconds { get; set; } public string HardwareAccelerationType { get; set; } - public string EncoderAppPathCustom { get; set; } // FFmpeg path as set by the user via the UI - public string EncoderAppPath { get; set; } // The current FFmpeg path being used by the system + /// <summary> + /// FFmpeg path as set by the user via the UI + /// </summary> + public string EncoderAppPathCustom { get; set; } + /// <summary> + /// The current FFmpeg path being used by the system + /// </summary> + public string EncoderAppPath { get; set; } public string VaapiDevice { get; set; } public int H264Crf { get; set; } public string H264Preset { get; set; } |
