diff options
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Interop/Interfaces/IHandBrakeInstance.cs')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Interop/Interfaces/IHandBrakeInstance.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Interop/Interfaces/IHandBrakeInstance.cs b/win/CS/HandBrake.ApplicationServices/Interop/Interfaces/IHandBrakeInstance.cs index acc182205..5080c20c2 100644 --- a/win/CS/HandBrake.ApplicationServices/Interop/Interfaces/IHandBrakeInstance.cs +++ b/win/CS/HandBrake.ApplicationServices/Interop/Interfaces/IHandBrakeInstance.cs @@ -98,12 +98,12 @@ namespace HandBrake.ApplicationServices.Interop.Interfaces /// The index of the preview to get (0-based).
/// </param>
/// <param name="deinterlace">
- /// Enable basic deinterlace of preview images. 1 = on. 0 = off.
+ /// True to enable basic deinterlace of preview images.
/// </param>
/// <returns>
/// An image with the requested preview.
/// </returns>
- Bitmap GetPreview(PreviewSettings job, int previewNumber, int deinterlace);
+ Bitmap GetPreview(PreviewSettings job, int previewNumber, bool deinterlace);
/// <summary>
/// Pauses the current encode.
|