diff options
author | sr55 <[email protected]> | 2015-02-07 15:45:02 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2015-02-07 15:45:02 +0000 |
commit | f9d51a06728fd37a9f06ef0086ff8ba4c4fdf418 (patch) | |
tree | 3dee9c69c4434933988d5ebe6b0a2acaec85545f /win/CS/HandBrake.Interop/HandBrakeInterop/Model | |
parent | 7e2a8accddcfda0a2a4514209afb5cf2054dd9b1 (diff) |
WinGui: Advanced tab now correctly overrides video tab options.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6877 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.Interop/HandBrakeInterop/Model')
-rw-r--r-- | win/CS/HandBrake.Interop/HandBrakeInterop/Model/EncodeJob.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/EncodeJob.cs b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/EncodeJob.cs index f231073f4..fb5f8c76a 100644 --- a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/EncodeJob.cs +++ b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/EncodeJob.cs @@ -294,6 +294,12 @@ namespace HandBrake.Interop.Model public string VideoOptions { get; set; }
/// <summary>
+ /// Gets or sets the advanced options.
+ /// This overrides the VideoOptions, VideoPreset, VideoTunes and VideoLevel
+ /// </summary>
+ public string AdvancedOptions { get; set; }
+
+ /// <summary>
/// Gets or sets the video encoder profile name.
/// </summary>
public string VideoProfile { get; set; }
|