diff options
author | sr55 <[email protected]> | 2017-01-15 14:31:40 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2017-01-15 14:31:53 +0000 |
commit | d90706da2eed392b6d5c26171bdde0e5425be9c0 (patch) | |
tree | 0e12221663343a98ee1c033134ac2d564ecb405f /win/CS/HandBrakeWPF/Services/Scan | |
parent | c72b80dcb7cb063b40c43a47761ba2919ef85c46 (diff) |
WinGui: Use new hb_opencl_set_enable function. #496
Diffstat (limited to 'win/CS/HandBrakeWPF/Services/Scan')
-rw-r--r-- | win/CS/HandBrakeWPF/Services/Scan/LibScan.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/Services/Scan/LibScan.cs b/win/CS/HandBrakeWPF/Services/Scan/LibScan.cs index bd1f4cf12..2d875ca0c 100644 --- a/win/CS/HandBrakeWPF/Services/Scan/LibScan.cs +++ b/win/CS/HandBrakeWPF/Services/Scan/LibScan.cs @@ -245,7 +245,7 @@ namespace HandBrakeWPF.Services.Scan HandBrakeUtils.SetDvdNav(!configuraiton.IsDvdNavDisabled); this.ServiceLogMessage("Starting Scan ..."); - this.instance.StartScan(sourcePath.ToString(), previewCount, minDuration, title != 0 ? title : 0); + this.instance.StartScan(sourcePath.ToString(), previewCount, minDuration, title != 0 ? title : 0, configuraiton.ScalingMode == VideoScaler.BicubicCl); if (this.ScanStarted != null) this.ScanStarted(this, System.EventArgs.Empty); |