summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/Services
diff options
context:
space:
mode:
authorsr55 <[email protected]>2017-01-11 21:48:31 +0000
committersr55 <[email protected]>2017-01-11 21:48:39 +0000
commit26e70e663d62becf8f56248dded87634a5eff484 (patch)
tree07935f1479d0bf9ce368f10bea78822b49496c84 /win/CS/HandBrakeWPF/Services
parent5ed4dc7ff3dfd1a19b27863e30900505e292b529 (diff)
WinGui: Update EndPoint for API Change.
Diffstat (limited to 'win/CS/HandBrakeWPF/Services')
-rw-r--r--win/CS/HandBrakeWPF/Services/Encode/Factories/EncodeFactory.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/Services/Encode/Factories/EncodeFactory.cs b/win/CS/HandBrakeWPF/Services/Encode/Factories/EncodeFactory.cs
index a53996b0f..3a2a8057c 100644
--- a/win/CS/HandBrakeWPF/Services/Encode/Factories/EncodeFactory.cs
+++ b/win/CS/HandBrakeWPF/Services/Encode/Factories/EncodeFactory.cs
@@ -101,7 +101,7 @@ namespace HandBrakeWPF.Services.Encode.Factories
case PointToPointMode.Seconds:
range.Type = "time";
range.Start = job.StartPoint * 90000;
- range.End = (job.EndPoint - job.StartPoint) * 90000;
+ range.End = job.EndPoint * 90000;
break;
case PointToPointMode.Frames:
range.Type = "frame";