diff options
author | sr55 <[email protected]> | 2015-01-19 21:55:29 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2015-01-19 21:55:29 +0000 |
commit | 50445c5138c234e860dcf8b54134aa6668c896df (patch) | |
tree | a9f4215d3354b1d0c6bf7a8e5550d680d1d3b8c8 /win/CS/HandBrakeWPF/ViewModels/Interfaces | |
parent | e92de31ae2e15317e95c5ecf13a2105916348881 (diff) |
WinGui: Quick Fix for the batch encoding with libhb mode.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6775 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/Interfaces')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/Interfaces/IStaticPreviewViewModel.cs | 7 | ||||
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/Interfaces/ITabInterface.cs | 6 |
2 files changed, 9 insertions, 4 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/Interfaces/IStaticPreviewViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/Interfaces/IStaticPreviewViewModel.cs index 448faca36..aa2ba9d1b 100644 --- a/win/CS/HandBrakeWPF/ViewModels/Interfaces/IStaticPreviewViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/Interfaces/IStaticPreviewViewModel.cs @@ -9,8 +9,8 @@ namespace HandBrakeWPF.ViewModels.Interfaces
{
- using HandBrake.ApplicationServices.Model;
using HandBrake.ApplicationServices.Services.Encode.Model;
+ using HandBrake.ApplicationServices.Services.Scan.Model;
/// <summary>
/// The Static Preview View Model Interface
@@ -23,7 +23,10 @@ namespace HandBrakeWPF.ViewModels.Interfaces /// <param name="task">
/// The task.
/// </param>
- void UpdatePreviewFrame(EncodeTask task);
+ /// <param name="scannedSource">
+ /// The scanned Source.
+ /// </param>
+ void UpdatePreviewFrame(EncodeTask task, Source scannedSource);
/// <summary>
/// Gets or sets a value indicating whether is open.
diff --git a/win/CS/HandBrakeWPF/ViewModels/Interfaces/ITabInterface.cs b/win/CS/HandBrakeWPF/ViewModels/Interfaces/ITabInterface.cs index 437534181..43a536ab4 100644 --- a/win/CS/HandBrakeWPF/ViewModels/Interfaces/ITabInterface.cs +++ b/win/CS/HandBrakeWPF/ViewModels/Interfaces/ITabInterface.cs @@ -9,7 +9,6 @@ namespace HandBrakeWPF.ViewModels.Interfaces
{
- using HandBrake.ApplicationServices.Model;
using HandBrake.ApplicationServices.Services.Encode.Model;
using HandBrake.ApplicationServices.Services.Scan.Model;
@@ -23,6 +22,9 @@ namespace HandBrakeWPF.ViewModels.Interfaces /// <summary>
/// Setup the window after a scan.
/// </summary>
+ /// <param name="source">
+ /// The source.
+ /// </param>
/// <param name="selectedTitle">
/// The selected title.
/// </param>
@@ -32,7 +34,7 @@ namespace HandBrakeWPF.ViewModels.Interfaces /// <param name="task">
/// The task.
/// </param>
- void SetSource(Title selectedTitle, Preset currentPreset, EncodeTask task);
+ void SetSource(Source source, Title selectedTitle, Preset currentPreset, EncodeTask task);
/// <summary>
/// Set the selected preset
|