diff options
author | sr55 <[email protected]> | 2016-03-21 22:13:43 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2016-03-21 22:14:03 +0000 |
commit | 3dd02eaa2e5cecef6ff0424990a7ff34c163038b (patch) | |
tree | 79162ec4c9df6a80c74cb79493a21aaf7a60e533 /win/CS/HandBrakeWPF/ViewModels | |
parent | 66e6545beedd2f4f163b43afb2f888c59bbea2e8 (diff) |
WinGUI: Remove option to enable DXVA decoding. There are too many issues with timestamp handling and no easy way to fix them so instead of having a higher failure rate, we've decided to remove this.
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs index 69df5a635..c28eea1f8 100644 --- a/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs @@ -84,7 +84,6 @@ namespace HandBrakeWPF.ViewModels private bool removePunctuation;
private bool resetWhenDoneAction;
private VideoScaler selectedScalingMode;
- private bool enableDxvaDecoding;
private bool disableQuickSyncDecoding;
private bool isClScaling;
private bool showQueueInline;
@@ -874,26 +873,6 @@ namespace HandBrakeWPF.ViewModels }
/// <summary>
- /// Gets or sets a value indicating whether enable dxva decoding.
- /// </summary>
- public bool EnableDxvaDecoding
- {
- get
- {
- return this.enableDxvaDecoding;
- }
- set
- {
- if (value.Equals(this.enableDxvaDecoding))
- {
- return;
- }
- this.enableDxvaDecoding = value;
- this.NotifyOfPropertyChange(() => this.EnableDxvaDecoding);
- }
- }
-
- /// <summary>
/// Gets or sets the selected scaling mode.
/// </summary>
public VideoScaler SelectedScalingMode
@@ -1223,7 +1202,6 @@ namespace HandBrakeWPF.ViewModels // Video
// #############################
this.DisableQuickSyncDecoding = this.userSettingService.GetUserSetting<bool>(UserSettingConstants.DisableQuickSyncDecoding);
- this.EnableDxvaDecoding = this.userSettingService.GetUserSetting<bool>(UserSettingConstants.EnableDxva);
this.SelectedScalingMode = this.userSettingService.GetUserSetting<VideoScaler>(UserSettingConstants.ScalingMode);
// #############################
@@ -1325,7 +1303,6 @@ namespace HandBrakeWPF.ViewModels /* Video */
this.userSettingService.SetUserSetting(UserSettingConstants.DisableQuickSyncDecoding, this.DisableQuickSyncDecoding);
- this.userSettingService.SetUserSetting(UserSettingConstants.EnableDxva, this.EnableDxvaDecoding);
this.userSettingService.SetUserSetting(UserSettingConstants.ScalingMode, this.SelectedScalingMode);
/* System and Logging */
|