diff options
author | sr55 <[email protected]> | 2014-07-05 14:37:53 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2014-07-05 14:37:53 +0000 |
commit | 2412d4a92123b2f20b43987a65a4fbd645be1443 (patch) | |
tree | efaa258ae72aa99e1473f740be87d0327fb0bccd /win/CS/HandBrake.ApplicationServices/Model | |
parent | d4a760ecd14a39772c0f9a5b7b35d0bc15d9a77f (diff) |
WinGui: Adding support for Nlmeans to the front-end. Plist keys still tbd.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6227 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Model')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Model/EncodeTask.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Model/EncodeTask.cs b/win/CS/HandBrake.ApplicationServices/Model/EncodeTask.cs index 6a519a382..be719701b 100644 --- a/win/CS/HandBrake.ApplicationServices/Model/EncodeTask.cs +++ b/win/CS/HandBrake.ApplicationServices/Model/EncodeTask.cs @@ -98,6 +98,8 @@ namespace HandBrake.ApplicationServices.Model this.Decomb = task.Decomb;
this.Deinterlace = task.Deinterlace;
this.Denoise = task.Denoise;
+ this.DenoisePreset = task.DenoisePreset;
+ this.DenoiseTune = task.DenoiseTune;
this.Destination = task.Destination;
this.Detelecine = task.Detelecine;
this.DisplayWidth = task.DisplayWidth;
@@ -314,6 +316,16 @@ namespace HandBrake.ApplicationServices.Model public Denoise Denoise { get; set; }
/// <summary>
+ /// Gets or sets the denoise preset.
+ /// </summary>
+ public DenoisePreset DenoisePreset { get; set; }
+
+ /// <summary>
+ /// Gets or sets the denoise tune.
+ /// </summary>
+ public DenoiseTune DenoiseTune { get; set; }
+
+ /// <summary>
/// Gets or sets CustomDenoise.
/// </summary>
public string CustomDenoise { get; set; }
|