diff options
author | sr55 <[email protected]> | 2015-02-28 20:10:51 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2015-02-28 20:10:51 +0000 |
commit | 649ff74c60c7d04d53e70bb2826327d1aae96be3 (patch) | |
tree | 51e3df9be5962cb52a6398751074e07f8b8d4a46 /win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding/VideoEncoder.cs | |
parent | 45f6af479741991c494808514c12752cec34c6ce (diff) |
WinGui: Moving the Interop Code into the services library. This will allow some modelling simplifications.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6949 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding/VideoEncoder.cs')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding/VideoEncoder.cs | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding/VideoEncoder.cs b/win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding/VideoEncoder.cs new file mode 100644 index 000000000..ce88223bb --- /dev/null +++ b/win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding/VideoEncoder.cs @@ -0,0 +1,49 @@ +// --------------------------------------------------------------------------------------------------------------------
+// <copyright file="VideoEncoder.cs" company="HandBrake Project (http://handbrake.fr)">
+// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
+// </copyright>
+// <summary>
+// The video encoder.
+// </summary>
+// --------------------------------------------------------------------------------------------------------------------
+
+namespace HandBrake.ApplicationServices.Interop.Model.Encoding
+{
+ using System.ComponentModel.DataAnnotations;
+
+ using HandBrake.ApplicationServices.Interop.Attributes;
+
+ /// <summary>
+ /// The video encoder.
+ /// </summary>
+ public enum VideoEncoder
+ {
+ [Display(Name = "H.264 (x264)")]
+ [ShortName("x264")]
+ X264 = 0,
+
+ [Display(Name = "H.264 (Intel QSV)")]
+ [ShortName("qsv_h264")]
+ QuickSync,
+
+ [Display(Name = "MPEG-4")]
+ [ShortName("mpeg4")]
+ FFMpeg,
+
+ [Display(Name = "MPEG-2")]
+ [ShortName("mpeg2")]
+ FFMpeg2,
+
+ [Display(Name = "Theora")]
+ [ShortName("theora")]
+ Theora,
+
+ [Display(Name = "H.265 (x265)")]
+ [ShortName("x265")]
+ X265,
+
+ [Display(Name = "VP8")]
+ [ShortName("vp8")]
+ VP8
+ }
+}
|