summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.ApplicationServices/Services/ServerService.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2013-09-21 17:47:12 +0000
committersr55 <[email protected]>2013-09-21 17:47:12 +0000
commit515f8070a43f25de58019314bf6893c12a478c76 (patch)
tree7829f0ee63671b77a900c2614e694057110fc2c8 /win/CS/HandBrake.ApplicationServices/Services/ServerService.cs
parentbb3aae9dd06271ab7b18a2d55fec14c97b76e9b0 (diff)
WinGui: Fix up libhb encode feature.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5790 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Services/ServerService.cs')
-rw-r--r--win/CS/HandBrake.ApplicationServices/Services/ServerService.cs5
1 files changed, 1 insertions, 4 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Services/ServerService.cs b/win/CS/HandBrake.ApplicationServices/Services/ServerService.cs
index 4e0039c55..ab0acd596 100644
--- a/win/CS/HandBrake.ApplicationServices/Services/ServerService.cs
+++ b/win/CS/HandBrake.ApplicationServices/Services/ServerService.cs
@@ -16,8 +16,6 @@ namespace HandBrake.ApplicationServices.Services
using HandBrake.ApplicationServices.Model;
using HandBrake.ApplicationServices.Services.Interfaces;
- using HandBrake.Interop;
- using HandBrake.Interop.Interfaces;
using EncodeCompletedEventArgs = HandBrake.ApplicationServices.EventArgs.EncodeCompletedEventArgs;
using EncodeProgressEventArgs = HandBrake.ApplicationServices.EventArgs.EncodeProgressEventArgs;
@@ -104,8 +102,7 @@ namespace HandBrake.ApplicationServices.Services
Console.WriteLine("Service Started. Waiting for Clients...");
// Setup the services we are going to use.
- IHandBrakeInstance instance = new HandBrakeInstance();
- encodeService = new LibEncode(new UserSettingService(), instance); // TODO this needs wired up with castle
+ encodeService = new LibEncode(new UserSettingService()); // TODO this needs wired up with castle
shutdownFlag = new ManualResetEvent(false);
shutdownFlag.WaitOne();