From 399ab292d7feddf5e83be866caafbaef634eca87 Mon Sep 17 00:00:00 2001 From: sr55 Date: Sun, 12 Jun 2011 16:54:23 +0000 Subject: WinGui: Bring in the HandBrake Interop library written by RandomEngy. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4045 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- .../Model/Encoding/AudioEncoder.cs | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/AudioEncoder.cs (limited to 'win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/AudioEncoder.cs') diff --git a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/AudioEncoder.cs b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/AudioEncoder.cs new file mode 100644 index 000000000..159ed7c30 --- /dev/null +++ b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/AudioEncoder.cs @@ -0,0 +1,32 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel.DataAnnotations; +using System.Linq; +using System.Text; + +namespace HandBrake.Interop +{ + public enum AudioEncoder + { + [Display(Name = "AAC (faac)")] + Faac = 0, + + [Display(Name = "MP3 (lame)")] + Lame, + + [Display(Name = "AC3 (ffmpeg)")] + Ac3, + + [Display(Name = "Passthrough (AC3/DTS)")] + Passthrough, + + [Display(Name = "Passthrough (AC3)")] + Ac3Passthrough, + + [Display(Name = "Passthrough (DTS)")] + DtsPassthrough, + + [Display(Name = "Vorbis (vorbis)")] + Vorbis + } +} -- cgit v1.2.3