diff options
author | sr55 <[email protected]> | 2016-03-05 22:17:58 +0000 |
---|---|---|
committer | John Stebbins <[email protected]> | 2016-03-09 13:10:10 -0700 |
commit | 1079f3d744676847075845ff945900f195a87d08 (patch) | |
tree | cf7e399adde86cb30f4c88d063c1c9c868b7d324 /win/CS/HandBrake.ApplicationServices/Interop | |
parent | 0205f13f2d3226343b3d27eb06170679fd292593 (diff) |
WinGui: Update deinterlace method to Yadif and update presets. Will look into using the new preset/tune methods at a later point.
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Interop')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding/Deinterlace.cs | 17 | ||||
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding/DeinterlaceFilter.cs | 4 |
2 files changed, 9 insertions, 12 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding/Deinterlace.cs b/win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding/Deinterlace.cs index e8da93043..162400b5d 100644 --- a/win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding/Deinterlace.cs +++ b/win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding/Deinterlace.cs @@ -16,19 +16,16 @@ namespace HandBrake.ApplicationServices.Interop.Model.Encoding /// </summary>
public enum Deinterlace
{
- [ShortName("fast")]
- Fast,
+ [ShortName("custom")]
+ Custom,
- [ShortName("slow")]
- Slow,
+ [ShortName("default")]
+ Default,
- [ShortName("slower")]
- Slower,
+ [ShortName("skip-spatial")]
+ SkipSpatialCheck,
[ShortName("bob")]
- Bob,
-
- [ShortName("custom")]
- Custom
+ Bob
}
}
diff --git a/win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding/DeinterlaceFilter.cs b/win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding/DeinterlaceFilter.cs index 21b423660..03d7bce60 100644 --- a/win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding/DeinterlaceFilter.cs +++ b/win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding/DeinterlaceFilter.cs @@ -19,8 +19,8 @@ namespace HandBrake.ApplicationServices.Interop.Model.Encoding [ShortName("off")] Off = 0, - [ShortName("Deinterlace")] - Deinterlace = 1, + [ShortName("Yadif")] + Yadif = 1, [ShortName("Decomb")] Decomb = 2 |