diff options
author | sr55 <[email protected]> | 2012-10-27 19:54:23 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2012-10-27 19:54:23 +0000 |
commit | ecc63f962529a9d85f619097e6658595997e33b3 (patch) | |
tree | 87ad6a8fccb0359855633e7b3311df7aed89de0f /win/CS/HandBrake.Interop | |
parent | 8b7552139a158d00391d074d4e37d2e7c79961e2 (diff) |
WinGui: Initial work to overhaul the plist import code.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5039 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.Interop')
6 files changed, 24 insertions, 21 deletions
diff --git a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/Anamorphic.cs b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/Anamorphic.cs index 2d20c4376..0c798457b 100644 --- a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/Anamorphic.cs +++ b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/Anamorphic.cs @@ -16,10 +16,10 @@ namespace HandBrake.Interop.Model.Encoding [Display(Name = "None")]
None = 0,
[Display(Name = "Strict")]
- Strict,
+ Strict = 1,
[Display(Name = "Loose")]
- Loose,
+ Loose = 2,
[Display(Name = "Custom")]
- Custom
+ Custom = 3
}
}
diff --git a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/Decomb.cs b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/Decomb.cs index 7b03410d0..a376ef893 100644 --- a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/Decomb.cs +++ b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/Decomb.cs @@ -12,9 +12,9 @@ namespace HandBrake.Interop.Model.Encoding public enum Decomb
{
Off = 0,
- Default,
- Fast,
- Bob,
- Custom
+ Default = 2,
+ Fast = 3,
+ Bob = 4,
+ Custom = 1
}
}
diff --git a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/Deinterlace.cs b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/Deinterlace.cs index 91d828576..8e16435ac 100644 --- a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/Deinterlace.cs +++ b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/Deinterlace.cs @@ -9,13 +9,16 @@ namespace HandBrake.Interop.Model.Encoding
{
- public enum Deinterlace
+ /// <summary>
+ /// The deinterlace.
+ /// </summary>
+ public enum Deinterlace
{
Off = 0,
- Fast,
- Slow,
- Slower,
- Bob,
- Custom
+ Fast = 2,
+ Slow = 3,
+ Slower = 4,
+ Bob = 5,
+ Custom = 1
}
}
diff --git a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/Denoise.cs b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/Denoise.cs index 74c53e039..ec64d9e75 100644 --- a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/Denoise.cs +++ b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/Denoise.cs @@ -12,9 +12,9 @@ namespace HandBrake.Interop.Model.Encoding public enum Denoise
{
Off = 0,
- Weak,
- Medium,
- Strong,
- Custom
+ Weak = 2,
+ Medium = 3,
+ Strong = 4,
+ Custom = 1
}
}
diff --git a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/Detelecine.cs b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/Detelecine.cs index 189b7441f..af7930973 100644 --- a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/Detelecine.cs +++ b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/Detelecine.cs @@ -12,7 +12,7 @@ namespace HandBrake.Interop.Model.Encoding public enum Detelecine
{
Off = 0,
- Default,
- Custom
+ Default = 2,
+ Custom = 1
}
}
diff --git a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/VideoEncodeRateType.cs b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/VideoEncodeRateType.cs index b3374de36..7bf052efb 100644 --- a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/VideoEncodeRateType.cs +++ b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/VideoEncodeRateType.cs @@ -12,7 +12,7 @@ namespace HandBrake.Interop.Model.Encoding public enum VideoEncodeRateType
{
TargetSize = 0,
- AverageBitrate,
- ConstantQuality
+ AverageBitrate = 1,
+ ConstantQuality = 2
}
}
|