From 78f3a92eeb301e9896fdc59efdd3d37133984033 Mon Sep 17 00:00:00 2001 From: sr55 Date: Mon, 12 Jan 2015 19:50:52 +0000 Subject: WinGui: Some fixes around x264/x265 tune/profile options git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6739 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- .../HandBrake.Interop/HandBrakeInterop/Json/Encode/Video.cs | 2 +- .../HandBrakeInterop/Model/Encoding/x264/x264Profile.cs | 2 +- .../HandBrakeInterop/Model/Encoding/x265/x265Tune.cs | 11 +++++++++-- 3 files changed, 11 insertions(+), 4 deletions(-) (limited to 'win/CS/HandBrake.Interop/HandBrakeInterop') 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; } /// - /// Gets or sets Turbo First Pass. For x264/5 + /// Gets or sets a value indicating whether Turbo First Pass. For x264/5 /// 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 -- cgit v1.2.3