diff options
author | sr55 <[email protected]> | 2010-06-04 18:36:11 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2010-06-04 18:36:11 +0000 |
commit | 73177393028b107b844b69e540b9aa29310e57ac (patch) | |
tree | 713ead7ebc1cec2e68330574bb54679486000790 /win/C#/interop/Model/Encoding/Mixdown.cs | |
parent | 6141bbf563d067e4c2574f85871f1da4e1b664f2 (diff) |
WinGui:
- HandBrakeInterop Project. This can be used to tie into libhb.dll with C#. Thanks to RandomEdgy for writing this.
- Made a few minor changes to this source to make most of the libhb stuff internal to the library only. Added a 2008 project file. (This won't compile yet)
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3352 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/interop/Model/Encoding/Mixdown.cs')
-rw-r--r-- | win/C#/interop/Model/Encoding/Mixdown.cs | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/win/C#/interop/Model/Encoding/Mixdown.cs b/win/C#/interop/Model/Encoding/Mixdown.cs new file mode 100644 index 000000000..2049d0921 --- /dev/null +++ b/win/C#/interop/Model/Encoding/Mixdown.cs @@ -0,0 +1,25 @@ +using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+
+namespace HandBrake.Interop
+{
+ public enum Mixdown
+ {
+ [DisplayString("Dolby Pro Logic II")]
+ DolbyProLogicII = 0,
+
+ [DisplayString("Mono")]
+ Mono,
+
+ [DisplayString("Stereo")]
+ Stereo,
+
+ [DisplayString("Dolby Surround")]
+ DolbySurround,
+
+ [DisplayString("6 Channel Discrete")]
+ SixChannelDiscrete
+ }
+}
|