From: sr55 Date: Sun, 8 Jul 2018 13:19:27 +0000 (+0100) Subject: WinGui: Tidy up some unused variables. X-Git-Tag: 1.2.0~248 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c4e3749dbc4f243094e6b5506159bf3a32eaa9fa;p=handbrake WinGui: Tidy up some unused variables. --- 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 @@ -77,11 +77,6 @@ namespace HandBrake.Interop.Interop.Json.Encode /// public string Tune { get; set; } - /// - /// Gets or sets a value indicating whether hw decode. - /// - public bool HWDecode { get; set; } - /// /// Gets or sets the qsv. /// 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 @@ -338,11 +338,6 @@ namespace HandBrake.Interop.Interop.Json.Presets /// public bool VideoGrayScale { get; set; } - /// - /// Gets or sets a value indicating whether video hw decode. - /// - public bool VideoHWDecode { get; set; } - /// /// Gets or sets the video scaler. /// 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. /// Lanczos = 0, - - /// - /// OpenCL-assisted bicubic scaling. - /// - Bicubic = 1 } } diff --git a/win/CS/HandBrakeWPF/Services/Presets/Factories/JsonPresetFactory.cs b/win/CS/HandBrakeWPF/Services/Presets/Factories/JsonPresetFactory.cs index 668b23694..cdb815d32 100644 --- a/win/CS/HandBrakeWPF/Services/Presets/Factories/JsonPresetFactory.cs +++ b/win/CS/HandBrakeWPF/Services/Presets/Factories/JsonPresetFactory.cs @@ -493,7 +493,6 @@ namespace HandBrakeWPF.Services.Presets.Factories /* Not Supported Yet */ // public int VideoColorMatrixCode { get; set; } - // public bool VideoHWDecode { get; set; } // public string VideoScaler { get; set; } // public bool VideoQSVDecode { get; set; } // public int VideoQSVAsyncDepth { get; set; }