diff options
Diffstat (limited to 'win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/VideoEncoder.cs')
-rw-r--r-- | win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/VideoEncoder.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/VideoEncoder.cs b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/VideoEncoder.cs new file mode 100644 index 000000000..923f446e1 --- /dev/null +++ b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/VideoEncoder.cs @@ -0,0 +1,20 @@ +using System;
+using System.Collections.Generic;
+using System.ComponentModel.DataAnnotations;
+using System.Linq;
+using System.Text;
+
+namespace HandBrake.Interop
+{
+ public enum VideoEncoder
+ {
+ [Display(Name = "H.264 (x264)")]
+ X264 = 0,
+
+ [Display(Name = "MPEG-4 (FFMpeg)")]
+ FFMpeg,
+
+ [Display(Name = "VP3 (Theora)")]
+ Theora
+ }
+}
|