diff options
Diffstat (limited to 'win/CS/HandBrake.Interop')
3 files changed, 12 insertions, 3 deletions
diff --git a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/x264/x264Preset.cs b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/x264/x264Preset.cs index 45fbeb5d5..d0bb915a4 100644 --- a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/x264/x264Preset.cs +++ b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/x264/x264Preset.cs @@ -16,8 +16,11 @@ namespace HandBrake.Interop.Model.Encoding.x264 /// </summary>
public enum x264Preset
{
+ [Display(Name = "None")]
+ None = 0,
+
[Display(Name = "Ultrafast")]
- Ultrafast = 0,
+ Ultrafast,
[Display(Name = "Super Fast")]
Superfast,
diff --git a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/x264/x264Profile.cs b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/x264/x264Profile.cs index 837fbd28f..9cbce6161 100644 --- a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/x264/x264Profile.cs +++ b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/x264/x264Profile.cs @@ -16,8 +16,11 @@ namespace HandBrake.Interop.Model.Encoding.x264 /// </summary>
public enum x264Profile
{
+ [Display(Name = "None")]
+ None = 0,
+
[Display(Name = "Baseline")]
- Baseline = 0,
+ Baseline,
[Display(Name = "Main")]
Main,
diff --git a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/x264/x264Tune.cs b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/x264/x264Tune.cs index cc199e810..60421cc02 100644 --- a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/x264/x264Tune.cs +++ b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/x264/x264Tune.cs @@ -16,8 +16,11 @@ namespace HandBrake.Interop.Model.Encoding.x264 /// </summary>
public enum x264Tune
{
+ [Display(Name = "None")]
+ None = 0,
+
[Display(Name = "Film")]
- Film = 0,
+ Film,
[Display(Name = "Animation")]
Animation,
|