summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.Interop/HandBrakeInterop/Interfaces/IHandBrakeInstance.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2015-01-02 21:18:44 +0000
committersr55 <[email protected]>2015-01-02 21:18:44 +0000
commit5381c32a099538cc0e63d5393f26c6aa607b5eee (patch)
tree1500398a8ce1a229ead477ccc83e95b657e7f2c8 /win/CS/HandBrake.Interop/HandBrakeInterop/Interfaces/IHandBrakeInstance.cs
parentc919eaba0bdf52a41443e2845e445de9582c5de3 (diff)
WinGui: Bug fixes to the libhb json encode factory and surrounding classes. Encoding is now working, but some settings are not fully honoured yet.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6681 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.Interop/HandBrakeInterop/Interfaces/IHandBrakeInstance.cs')
-rw-r--r--win/CS/HandBrake.Interop/HandBrakeInterop/Interfaces/IHandBrakeInstance.cs11
1 files changed, 8 insertions, 3 deletions
diff --git a/win/CS/HandBrake.Interop/HandBrakeInterop/Interfaces/IHandBrakeInstance.cs b/win/CS/HandBrake.Interop/HandBrakeInterop/Interfaces/IHandBrakeInstance.cs
index 64c03cbef..e6eeae943 100644
--- a/win/CS/HandBrake.Interop/HandBrakeInterop/Interfaces/IHandBrakeInstance.cs
+++ b/win/CS/HandBrake.Interop/HandBrakeInterop/Interfaces/IHandBrakeInstance.cs
@@ -143,10 +143,13 @@ namespace HandBrake.Interop.Interfaces
/// <param name="jobToStart">
/// The job to start.
/// </param>
+ /// <param name="title">
+ /// The title.
+ /// </param>
/// <param name="scanPreviewCount">
/// The scan Preview Count.
/// </param>
- void StartEncode(EncodeJob jobToStart, int scanPreviewCount);
+ void StartEncode(EncodeJob jobToStart, Title title, int scanPreviewCount);
/// <summary>
/// Starts an encode with the given job.
@@ -154,6 +157,9 @@ namespace HandBrake.Interop.Interfaces
/// <param name="job">
/// The job to start.
/// </param>
+ /// <param name="title">
+ /// The title.
+ /// </param>
/// <param name="preview">
/// True if this is a preview encode.
/// </param>
@@ -170,8 +176,7 @@ namespace HandBrake.Interop.Interfaces
/// <param name="scanPreviewCount">
/// The scan Preview Count.
/// </param>
- void StartEncode(
- EncodeJob job, bool preview, int previewNumber, int previewSeconds, double overallSelectedLengthSeconds, int scanPreviewCount);
+ void StartEncode(EncodeJob job, Title title, bool preview, int previewNumber, int previewSeconds, double overallSelectedLengthSeconds, int scanPreviewCount);
/// <summary>
/// Starts scanning the given path.