summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.ApplicationServices/Model
diff options
context:
space:
mode:
authorsr55 <[email protected]>2011-10-08 15:33:37 +0000
committersr55 <[email protected]>2011-10-08 15:33:37 +0000
commitae4e2cc4418c306249b80e7da1af006b5d1d9af2 (patch)
treef0c4bc50f4524aa22d705d9cfc5075860274317c /win/CS/HandBrake.ApplicationServices/Model
parentf85679b10f531df9a734692058aae734789267e5 (diff)
WinGui: Converters and cli query handling code update for new x264 options.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4273 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Model')
-rw-r--r--win/CS/HandBrake.ApplicationServices/Model/EncodeTask.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Model/EncodeTask.cs b/win/CS/HandBrake.ApplicationServices/Model/EncodeTask.cs
index ce46132af..593bd9e48 100644
--- a/win/CS/HandBrake.ApplicationServices/Model/EncodeTask.cs
+++ b/win/CS/HandBrake.ApplicationServices/Model/EncodeTask.cs
@@ -10,6 +10,7 @@ namespace HandBrake.ApplicationServices.Model
using HandBrake.ApplicationServices.Model.Encoding;
using HandBrake.Interop.Model;
using HandBrake.Interop.Model.Encoding;
+ using HandBrake.Interop.Model.Encoding.x264;
using OutputFormat = HandBrake.ApplicationServices.Model.Encoding.OutputFormat;
@@ -294,6 +295,21 @@ namespace HandBrake.ApplicationServices.Model
public string AdvancedEncoderOptions { get; set; }
/// <summary>
+ /// Gets or sets x264Preset.
+ /// </summary>
+ public x264Preset x264Preset { get; set; }
+
+ /// <summary>
+ /// Gets or sets x264Profile.
+ /// </summary>
+ public x264Profile x264Profile { get; set; }
+
+ /// <summary>
+ /// Gets or sets X264Tune.
+ /// </summary>
+ public x264Tune X264Tune { get; set; }
+
+ /// <summary>
/// Gets or sets Verbosity.
/// </summary>
public int Verbosity { get; set; }