]> granicus.if.org Git - handbrake/commitdiff
WinGui: Update the Interop Mixdown and Audio Encoder objects
authorsr55 <sr55.hb@outlook.com>
Sun, 11 Sep 2011 13:27:36 +0000 (13:27 +0000)
committersr55 <sr55.hb@outlook.com>
Sun, 11 Sep 2011 13:27:36 +0000 (13:27 +0000)
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4214 b64f7644-9d1e-0410-96f1-a4d463321fa5

win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/AudioEncoder.cs
win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/Mixdown.cs

index 2069e0b53d1c6dc18bfa69f47390262d34d6fbdb..a215474ecca2eeb25047fca713e9a6c4f72722f1 100644 (file)
@@ -16,6 +16,9 @@ namespace HandBrake.Interop.Model.Encoding
                [Display(Name = "AAC (faac)")]\r
                Faac = 0,\r
 \r
+        [Display(Name = "AAC (ffmpeg)")]\r
+        ffaac,\r
+\r
                [Display(Name = "MP3 (lame)")]\r
                Lame,\r
 \r
@@ -28,6 +31,18 @@ namespace HandBrake.Interop.Model.Encoding
                [Display(Name = "Passthrough (AC3)")]\r
                Ac3Passthrough,\r
 \r
+        [Display(Name = "DTS Passthru")]\r
+        DtsPassthrough,\r
+\r
+        [Display(Name = "DTS-HD Passthru")]\r
+        DtsHDPassthrough,\r
+\r
+        [Display(Name = "AAC Passthru")]\r
+        AacPassthru,\r
+\r
+        [Display(Name = "MP3 Passthru")]\r
+        Mp3Passthru,\r
+\r
                [Display(Name = "Vorbis (vorbis)")]\r
                Vorbis\r
        }\r
index 89923c7c3d71e1077866d85df154bf6306a35594..5138bbeb9c1ae117e23e33fa6b60b19a89c32eac 100644 (file)
@@ -11,7 +11,10 @@ namespace HandBrake.Interop.Model.Encoding
 {\r
        using System.ComponentModel.DataAnnotations;\r
 \r
-       public enum Mixdown\r
+    /// <summary>\r
+    /// The Audio Mixdown Enumeration\r
+    /// </summary>\r
+    public enum Mixdown\r
        {\r
                [Display(Name = "Dolby Pro Logic II")]\r
                DolbyProLogicII = 0,\r
@@ -29,6 +32,9 @@ namespace HandBrake.Interop.Model.Encoding
                DolbySurround,\r
 \r
                [Display(Name = "6 Channel Discrete")]\r
-               SixChannelDiscrete\r
+               SixChannelDiscrete,\r
+\r
+        [Display(Name = "Passthru")]\r
+        Passthrough,\r
        }\r
 }\r