diff options
author | sr55 <[email protected]> | 2021-02-23 19:58:11 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2021-02-23 19:58:40 +0000 |
commit | a829a6f6af9539c34c9865239a54a6e51d7a7c41 (patch) | |
tree | 7dae6027d83566ffa930bd4766e5c87d082916a0 /win/CS/HandBrakeWPF/Model/Video | |
parent | d4773a2d2cb59814d2fbede899ac2038ec81288c (diff) |
WinGui: Add support for Media Foundation 264/265 encoders for QC based ARM64 devices. #2887
Diffstat (limited to 'win/CS/HandBrakeWPF/Model/Video')
-rw-r--r-- | win/CS/HandBrakeWPF/Model/Video/VideoEncoder.cs | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/Model/Video/VideoEncoder.cs b/win/CS/HandBrakeWPF/Model/Video/VideoEncoder.cs index 799d3403d..f9ffa16f6 100644 --- a/win/CS/HandBrakeWPF/Model/Video/VideoEncoder.cs +++ b/win/CS/HandBrakeWPF/Model/Video/VideoEncoder.cs @@ -35,7 +35,11 @@ namespace HandBrakeWPF.Model.Video [DisplayName("H.264 (Nvidia NVEnc)")] [ShortName("nvenc_h264")] NvencH264, - + + [DisplayName("H.264 (MediaFoundation)")] + [ShortName("mf_h264")] + MFH264, + [DisplayName("MPEG-4")] [ShortName("mpeg4")] FFMpeg, @@ -76,6 +80,10 @@ namespace HandBrakeWPF.Model.Video [ShortName("nvenc_h265")] NvencH265, + [DisplayName("H.265 (MediaFoundation)")] + [ShortName("mf_h265")] + MFH265, + [DisplayName("VP8")] [ShortName("VP8")] VP8, |