diff options
author | sr55 <[email protected]> | 2015-01-12 19:50:52 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2015-01-12 19:50:52 +0000 |
commit | 78f3a92eeb301e9896fdc59efdd3d37133984033 (patch) | |
tree | 57f7cd0ab4fa2ea86df6ee7c26cfaa3a550e5a38 /win/CS/HandBrake.Interop/HandBrakeInterop | |
parent | 84d152fecb516134d1d89d4689761430d6aa0a0d (diff) |
WinGui: Some fixes around x264/x265 tune/profile options
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6739 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.Interop/HandBrakeInterop')
3 files changed, 11 insertions, 4 deletions
diff --git a/win/CS/HandBrake.Interop/HandBrakeInterop/Json/Encode/Video.cs b/win/CS/HandBrake.Interop/HandBrakeInterop/Json/Encode/Video.cs index 461397eb2..ede0f919c 100644 --- a/win/CS/HandBrake.Interop/HandBrakeInterop/Json/Encode/Video.cs +++ b/win/CS/HandBrake.Interop/HandBrakeInterop/Json/Encode/Video.cs @@ -37,7 +37,7 @@ namespace HandBrake.Interop.Json.Encode public bool TwoPass { get; set; }
/// <summary>
- /// Gets or sets Turbo First Pass. For x264/5
+ /// Gets or sets a value indicating whether Turbo First Pass. For x264/5
/// </summary>
public bool Turbo { get; set; }
diff --git a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/x264/x264Profile.cs b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/x264/x264Profile.cs index bc0983ff1..d1c1facb7 100644 --- a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/x264/x264Profile.cs +++ b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/x264/x264Profile.cs @@ -17,7 +17,7 @@ namespace HandBrake.Interop.Model.Encoding.x264 public enum x264Profile
{
[Display(Name = "Auto")]
- None = 0,
+ Auto = 0,
[Display(Name = "Baseline")]
Baseline,
diff --git a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/x265/x265Tune.cs b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/x265/x265Tune.cs index 03d762359..edbcbff95 100644 --- a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/x265/x265Tune.cs +++ b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Encoding/x265/x265Tune.cs @@ -20,9 +20,16 @@ namespace HandBrake.Interop.Model.Encoding.x265 None = 0,
[Display(Name = "PSNR")]
- Psnr,
+ psnr,
[Display(Name = "SSIM")]
- Ssim,
+ ssim,
+
+ [Display(Name = "Zero Latency")]
+ zerolatency,
+
+ [Display(Name = "Fast Decode")]
+ fastdecode,
+
}
}
\ No newline at end of file |