diff options
Diffstat (limited to 'win/CS/HandBrake.Interop')
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 } } |