summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.Interop/Model/HBConfiguration.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2020-04-11 11:11:40 +0100
committersr55 <[email protected]>2020-04-11 13:00:48 +0100
commitc3d62f1465fc9813d079bdf33f2e062a48ec8549 (patch)
tree9cdc71a68890a46a57c0982e563928fe40316e0d /win/CS/HandBrake.Interop/Model/HBConfiguration.cs
parent30c15df16bc543f4d2ad828176c787cbc7b7c74e (diff)
WinGui: Stripping much of the remaining app config out of the Queue Jobs. Certain features such as QSV, while global options currently are not really global. I may move these out of perferences at a later point. Fixes #2753
Diffstat (limited to 'win/CS/HandBrake.Interop/Model/HBConfiguration.cs')
-rw-r--r--win/CS/HandBrake.Interop/Model/HBConfiguration.cs64
1 files changed, 2 insertions, 62 deletions
diff --git a/win/CS/HandBrake.Interop/Model/HBConfiguration.cs b/win/CS/HandBrake.Interop/Model/HBConfiguration.cs
index cf302bc82..837f0d94a 100644
--- a/win/CS/HandBrake.Interop/Model/HBConfiguration.cs
+++ b/win/CS/HandBrake.Interop/Model/HBConfiguration.cs
@@ -1,5 +1,5 @@
// --------------------------------------------------------------------------------------------------------------------
-// <copyright file="HBConfiguration.cs" company="HandBrake Project (http://handbrake.fr)">
+// <copyright file="HBConfiguration.cs" company="HandBrake Project (https://handbrake.fr)">
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
// </copyright>
// <summary>
@@ -15,72 +15,12 @@ namespace HandBrake.Interop.Model
{
}
- /// <summary>
- /// Gets or sets a value indicating whether is dvd nav disabled.
- /// </summary>
- public bool IsDvdNavDisabled { get; set; }
+ public int PreviewScanCount { get; set; }
- /// <summary>
- /// Gets or sets a value indicating whether disable quick sync decoding.
- /// </summary>
public bool EnableQuickSyncDecoding { get; set; }
- /// <summary>
- /// Gets or sets a value indicating whether use qsv decode for non qsv enc.
- /// </summary>
public bool UseQSVDecodeForNonQSVEnc { get; set; }
- /// <summary>
- /// Gets or sets the scaling mode.
- /// </summary>
- public VideoScaler ScalingMode { get; set; }
-
- /// <summary>
- /// Gets or sets the preview scan count.
- /// </summary>
- public int PreviewScanCount { get; set; }
-
- /// <summary>
- /// Gets or sets the verbosity.
- /// </summary>
- public int Verbosity { get; set; }
-
- /// <summary>
- /// Gets or sets the min scan duration.
- /// </summary>
- public int MinScanDuration { get; set; }
-
- /// <summary>
- /// Gets or sets a value indicating whether save log to copy directory.
- /// </summary>
- public bool SaveLogToCopyDirectory { get; set; }
-
- /// <summary>
- /// Gets or sets a value indicating whether save log with video.
- /// </summary>
- public bool SaveLogWithVideo { get; set; }
-
- /// <summary>
- /// Gets or sets the save log copy directory.
- /// </summary>
- public string SaveLogCopyDirectory { get; set; }
-
- /// <summary>
- /// Gets or sets a value indicating whether we use in-process or out-of-process encoding.
- /// </summary>
- public bool RemoteServiceEnabled { get; set; }
-
- /// <summary>
- /// Gets or sets a value indicating what port the worker process is to use.
- /// </summary>
- public int RemoteServicePort { get; set; }
-
- public bool EnableVceEncoder { get; set; }
-
- public bool EnableNvencEncoder { get; set; }
-
- public bool EnableQsvEncoder { get; set; }
-
public bool EnableQsvLowPower { get; set; }
}
}