diff options
author | sr55 <[email protected]> | 2016-02-13 14:22:03 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2016-02-13 14:22:11 +0000 |
commit | 9667fe056a99b83bdc90cf75f8922ee745f87d52 (patch) | |
tree | ae8701a386260882c0aba8d34cca833e025ecd0a /win/CS/HandBrake.ApplicationServices | |
parent | b7cb7d6b9d9b43962eec67f4529fb544b9c874cc (diff) |
WinGui: x264/5 multilib support. You can now encode 10bit x264, 10bit x265 and 12bit x265 if you provide MinGW-W64 compiled dll libraries in the HandBrake install directory.
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding/VideoEncoder.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding/VideoEncoder.cs b/win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding/VideoEncoder.cs index 4f30b5df3..ac02cb843 100644 --- a/win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding/VideoEncoder.cs +++ b/win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding/VideoEncoder.cs @@ -22,6 +22,10 @@ namespace HandBrake.ApplicationServices.Interop.Model.Encoding [ShortName("x264")]
X264 = 0,
+ [Display(Name = "H.264 10-bit (x264)")]
+ [ShortName("x264_10bit")]
+ X264_10,
+
[Display(Name = "H.264 (Intel QSV)")]
[ShortName("qsv_h264")]
QuickSync,
@@ -46,6 +50,14 @@ namespace HandBrake.ApplicationServices.Interop.Model.Encoding [ShortName("x265")]
X265,
+ [Display(Name = "H.265 12-bit (x265)")]
+ [ShortName("x265_12bit")]
+ X265_12,
+
+ [Display(Name = "H.265 10-bit (x265)")]
+ [ShortName("x265_10bit")]
+ X265_10,
+
[Display(Name = "VP8")]
[ShortName("vp8")]
VP8
|