diff options
author | sr55 <[email protected]> | 2016-12-26 14:49:34 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2016-12-26 14:49:34 +0000 |
commit | 6b633b8f6b3f19433ca8a3d42affd737ca726f5d (patch) | |
tree | e8e1199df86425d4412f9734023fc42aee788896 /win/CS/HandBrake.ApplicationServices/Model | |
parent | 88a31ba4a1869995a2c358be9819b0df4db031e7 (diff) |
WinGui: New Setting to allow the QSV decoder to be used with Non QSV encoders. (Was on by default and not configurable. Now off by default but configurable)
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Model')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Model/HBConfiguration.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Model/HBConfiguration.cs b/win/CS/HandBrake.ApplicationServices/Model/HBConfiguration.cs index a27eae1be..6290004c8 100644 --- a/win/CS/HandBrake.ApplicationServices/Model/HBConfiguration.cs +++ b/win/CS/HandBrake.ApplicationServices/Model/HBConfiguration.cs @@ -25,6 +25,11 @@ namespace HandBrake.ApplicationServices.Model public bool DisableQuickSyncDecoding { 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; }
|