diff options
author | sr55 <[email protected]> | 2011-07-16 16:05:36 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-07-16 16:05:36 +0000 |
commit | 8b4dcce5fc1905a5d8facdda89f3e133889a0622 (patch) | |
tree | 3f17630d7935f4b9ff0fdf0f339b1d8c6dc2cc31 /win/CS/HandBrake.ApplicationServices/Functions/Converters.cs | |
parent | 5045c6feeec292db6b538bfe4363c1e3790997fb (diff) |
WinGui: Some fixes to the Queue Current encoding information display and removal of another duplicate model.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4111 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Functions/Converters.cs')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Functions/Converters.cs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Functions/Converters.cs b/win/CS/HandBrake.ApplicationServices/Functions/Converters.cs index b1d92f5d1..e12639e1d 100644 --- a/win/CS/HandBrake.ApplicationServices/Functions/Converters.cs +++ b/win/CS/HandBrake.ApplicationServices/Functions/Converters.cs @@ -8,7 +8,11 @@ namespace HandBrake.ApplicationServices.Functions using System;
using System.Text.RegularExpressions;
- using HandBrake.ApplicationServices.Model.Encoding;
+ using HandBrake.Interop.Model.Encoding;
+
+ using AudioEncoder = HandBrake.ApplicationServices.Model.Encoding.AudioEncoder;
+ using Mixdown = HandBrake.ApplicationServices.Model.Encoding.Mixdown;
+ using OutputFormat = HandBrake.ApplicationServices.Model.Encoding.OutputFormat;
/// <summary>
/// A class to convert various things to native C# objects
|