summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2013-12-07 20:17:31 +0000
committersr55 <[email protected]>2013-12-07 20:17:31 +0000
commitc2e95c24c18e69ddb849f20f70c8fd7275381bd8 (patch)
tree3ddcf2312fa20a4a246095ce00e47b24776e9ca1 /win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs
parentc687245b277c727ca486f20bdf804479c4f85b81 (diff)
WinGui: Remove needless QSV checkbox to enable QSV in options.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5924 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs')
-rw-r--r--win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs27
1 files changed, 0 insertions, 27 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs
index dde54a5c6..e0fdee4e2 100644
--- a/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs
+++ b/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs
@@ -375,11 +375,6 @@ namespace HandBrakeWPF.ViewModels
private bool disableQuickSyncDecoding;
/// <summary>
- /// The enable quick sync.
- /// </summary>
- private bool enableQuickSync;
-
- /// <summary>
/// The add foreign audio scan track.
/// </summary>
private bool addForeignAudioScanTrack;
@@ -1439,26 +1434,6 @@ namespace HandBrakeWPF.ViewModels
#region Video
/// <summary>
- /// Gets or sets a value indicating whether enable quick sync.
- /// </summary>
- public bool EnableQuickSync
- {
- get
- {
- return this.enableQuickSync && this.IsQuickSyncAvailable;
- }
- set
- {
- if (value.Equals(this.enableQuickSync))
- {
- return;
- }
- this.enableQuickSync = value;
- this.NotifyOfPropertyChange(() => this.EnableQuickSync);
- }
- }
-
- /// <summary>
/// Gets or sets a value indicating whether disable quick sync decoding.
/// </summary>
public bool DisableQuickSyncDecoding
@@ -1910,7 +1885,6 @@ namespace HandBrakeWPF.ViewModels
// #############################
// Video
// #############################
- this.EnableQuickSync = this.userSettingService.GetUserSetting<bool>(UserSettingConstants.EnableQuickSync);
this.DisableQuickSyncDecoding = this.userSettingService.GetUserSetting<bool>(UserSettingConstants.DisableQuickSyncDecoding);
this.EnableDxvaDecoding = this.userSettingService.GetUserSetting<bool>(UserSettingConstants.EnableDxva);
this.SelectedScalingMode = this.userSettingService.GetUserSetting<VideoScaler>(UserSettingConstants.ScalingMode);
@@ -2034,7 +2008,6 @@ namespace HandBrakeWPF.ViewModels
this.userSettingService.SetUserSetting(UserSettingConstants.AddForeignAudioScanTrack, this.AddForeignAudioScanTrack);
/* Video */
- this.userSettingService.SetUserSetting(UserSettingConstants.EnableQuickSync, this.EnableQuickSync);
this.userSettingService.SetUserSetting(UserSettingConstants.DisableQuickSyncDecoding, this.DisableQuickSyncDecoding);
this.userSettingService.SetUserSetting(UserSettingConstants.EnableDxva, this.EnableDxvaDecoding);
this.userSettingService.SetUserSetting(UserSettingConstants.ScalingMode, this.SelectedScalingMode);