diff options
author | sr55 <[email protected]> | 2011-09-11 13:27:36 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-09-11 13:27:36 +0000 |
commit | 44ba40eb45932d432fd51aec058b4b7d08957857 (patch) | |
tree | d831bb86ff6506f7f90a6c22fe1456adfa7a53b5 /win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/Mixdown.cs | |
parent | 2fe0f06304879d6f1ee044ad714afb8e564e6bd1 (diff) |
WinGui: Update the Interop Mixdown and Audio Encoder objects
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4214 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/Mixdown.cs')
-rw-r--r-- | win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/Mixdown.cs | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/Mixdown.cs b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/Mixdown.cs index 89923c7c3..5138bbeb9 100644 --- a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/Mixdown.cs +++ b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/Mixdown.cs @@ -11,7 +11,10 @@ namespace HandBrake.Interop.Model.Encoding {
using System.ComponentModel.DataAnnotations;
- public enum Mixdown
+ /// <summary>
+ /// The Audio Mixdown Enumeration
+ /// </summary>
+ public enum Mixdown
{
[Display(Name = "Dolby Pro Logic II")]
DolbyProLogicII = 0,
@@ -29,6 +32,9 @@ namespace HandBrake.Interop.Model.Encoding DolbySurround,
[Display(Name = "6 Channel Discrete")]
- SixChannelDiscrete
+ SixChannelDiscrete,
+
+ [Display(Name = "Passthru")]
+ Passthrough,
}
}
|