diff options
author | Scott <[email protected]> | 2015-09-24 20:44:55 +0100 |
---|---|---|
committer | Scott <[email protected]> | 2015-09-24 20:44:55 +0100 |
commit | e7912cc00a8aa031e494bb6f0554939059da89d3 (patch) | |
tree | f095829845df7513f4e2815b9d0ea0a150e2a6ca /win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding | |
parent | bf85b6277de7fc00bb66cc858d880e190aba59c4 (diff) |
WinGui: Enable support for H.265 QuickSync support
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding/VideoEncoder.cs | 4 |
1 files changed, 4 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 17ed82aef..4f30b5df3 100644 --- a/win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding/VideoEncoder.cs +++ b/win/CS/HandBrake.ApplicationServices/Interop/Model/Encoding/VideoEncoder.cs @@ -26,6 +26,10 @@ namespace HandBrake.ApplicationServices.Interop.Model.Encoding [ShortName("qsv_h264")]
QuickSync,
+ [Display(Name = "H.265 (Intel QSV)")]
+ [ShortName("qsv_h265")]
+ QuickSyncH265,
+
[Display(Name = "MPEG-4")]
[ShortName("mpeg4")]
FFMpeg,
|