diff options
author | sr55 <[email protected]> | 2019-04-06 15:35:13 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2019-04-06 15:35:30 +0100 |
commit | 42594b81c948bd55c862c680e8af5e2618989127 (patch) | |
tree | eab6fda7e4315deceaf0cf02a92ce1b214ca7ca7 /win/CS/HandBrake.Interop/Model/HBConfiguration.cs | |
parent | 2b49ecaa889e72bdce73a20d0729aacee8b9ab03 (diff) |
WinGui: Reafactor application init and introduce a --no-hardware flat that can be added to HandBrake.exe to disable hardware encoder support.
Diffstat (limited to 'win/CS/HandBrake.Interop/Model/HBConfiguration.cs')
-rw-r--r-- | win/CS/HandBrake.Interop/Model/HBConfiguration.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/win/CS/HandBrake.Interop/Model/HBConfiguration.cs b/win/CS/HandBrake.Interop/Model/HBConfiguration.cs index 77ea30954..2ec9f8302 100644 --- a/win/CS/HandBrake.Interop/Model/HBConfiguration.cs +++ b/win/CS/HandBrake.Interop/Model/HBConfiguration.cs @@ -73,5 +73,11 @@ namespace HandBrake.Interop.Model /// Gets or sets a value indicating what port the worker process is to use. /// </summary> public int RemoteServicePort { get; set; } + + public bool EnableVceEncoder { get; set; } + + public bool EnableNvencEncoder { get; set; } + + public bool EnableQsvEncoder { get; set; } } } |