summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.Interop
diff options
context:
space:
mode:
authorsr55 <[email protected]>2018-07-08 14:19:27 +0100
committersr55 <[email protected]>2018-07-08 14:19:27 +0100
commitc4e3749dbc4f243094e6b5506159bf3a32eaa9fa (patch)
treecb7b0b807c295c878ccdeb359b549df621ed1e88 /win/CS/HandBrake.Interop
parent80fa15a3901017253e35bb2df064133258edcd2a (diff)
WinGui: Tidy up some unused variables.
Diffstat (limited to 'win/CS/HandBrake.Interop')
-rw-r--r--win/CS/HandBrake.Interop/Interop/Json/Encode/Video.cs5
-rw-r--r--win/CS/HandBrake.Interop/Interop/Json/Presets/HBPreset.cs5
-rw-r--r--win/CS/HandBrake.Interop/Interop/Model/Encoding/ScaleMethod.cs5
3 files changed, 0 insertions, 15 deletions
diff --git a/win/CS/HandBrake.Interop/Interop/Json/Encode/Video.cs b/win/CS/HandBrake.Interop/Interop/Json/Encode/Video.cs
index 992d67709..12525c3e5 100644
--- a/win/CS/HandBrake.Interop/Interop/Json/Encode/Video.cs
+++ b/win/CS/HandBrake.Interop/Interop/Json/Encode/Video.cs
@@ -78,11 +78,6 @@ namespace HandBrake.Interop.Interop.Json.Encode
public string Tune { get; set; }
/// <summary>
- /// Gets or sets a value indicating whether hw decode.
- /// </summary>
- public bool HWDecode { get; set; }
-
- /// <summary>
/// Gets or sets the qsv.
/// </summary>
public QSV QSV { get; set; }
diff --git a/win/CS/HandBrake.Interop/Interop/Json/Presets/HBPreset.cs b/win/CS/HandBrake.Interop/Interop/Json/Presets/HBPreset.cs
index 2ea758d5d..5db5552cf 100644
--- a/win/CS/HandBrake.Interop/Interop/Json/Presets/HBPreset.cs
+++ b/win/CS/HandBrake.Interop/Interop/Json/Presets/HBPreset.cs
@@ -339,11 +339,6 @@ namespace HandBrake.Interop.Interop.Json.Presets
public bool VideoGrayScale { get; set; }
/// <summary>
- /// Gets or sets a value indicating whether video hw decode.
- /// </summary>
- public bool VideoHWDecode { get; set; }
-
- /// <summary>
/// Gets or sets the video scaler.
/// </summary>
public string VideoScaler { get; set; }
diff --git a/win/CS/HandBrake.Interop/Interop/Model/Encoding/ScaleMethod.cs b/win/CS/HandBrake.Interop/Interop/Model/Encoding/ScaleMethod.cs
index 8f62f3f22..8c1d32174 100644
--- a/win/CS/HandBrake.Interop/Interop/Model/Encoding/ScaleMethod.cs
+++ b/win/CS/HandBrake.Interop/Interop/Model/Encoding/ScaleMethod.cs
@@ -18,10 +18,5 @@ namespace HandBrake.Interop.Interop.Model.Encoding
/// Standard software scaling. Highest quality.
/// </summary>
Lanczos = 0,
-
- /// <summary>
- /// OpenCL-assisted bicubic scaling.
- /// </summary>
- Bicubic = 1
}
}