diff options
author | sr55 <[email protected]> | 2015-01-17 19:39:49 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2015-01-17 19:39:49 +0000 |
commit | 34db38d676420cf1fc827f339f5c894d5b798762 (patch) | |
tree | 79573157c83eef41f0d66bb824258994219b88c2 /win/CS/HandBrake.ApplicationServices/Services/Scan/Interfaces/IScan.cs | |
parent | 5a74ccf9554940ae69e097b1abd6b1c5a556b4bc (diff) |
WinGui:
- Numerous fixes to the JSON api code.
Live preview should now work again.
Possible fix for issue where queued jobs where stopping at a random point and not continuing.
- Fix Clear button on the audio tab.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6760 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Services/Scan/Interfaces/IScan.cs')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Services/Scan/Interfaces/IScan.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Services/Scan/Interfaces/IScan.cs b/win/CS/HandBrake.ApplicationServices/Services/Scan/Interfaces/IScan.cs index 4d61d6078..086a97487 100644 --- a/win/CS/HandBrake.ApplicationServices/Services/Scan/Interfaces/IScan.cs +++ b/win/CS/HandBrake.ApplicationServices/Services/Scan/Interfaces/IScan.cs @@ -101,10 +101,13 @@ namespace HandBrake.ApplicationServices.Services.Scan.Interfaces /// <param name="preview">
/// The preview.
/// </param>
+ /// <param name="configuration">
+ /// The configuration.
+ /// </param>
/// <returns>
/// The <see cref="BitmapImage"/>.
/// </returns>
- BitmapImage GetPreview(EncodeTask task, int preview);
+ BitmapImage GetPreview(EncodeTask task, int preview, HBConfiguration configuration);
/// <summary>
/// Kill the scan
|