summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/ViewModels/X264ViewModel.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2016-02-13 14:22:03 +0000
committersr55 <[email protected]>2016-02-13 14:22:11 +0000
commit9667fe056a99b83bdc90cf75f8922ee745f87d52 (patch)
treeae8701a386260882c0aba8d34cca833e025ecd0a /win/CS/HandBrakeWPF/ViewModels/X264ViewModel.cs
parentb7cb7d6b9d9b43962eec67f4529fb544b9c874cc (diff)
WinGui: x264/5 multilib support. You can now encode 10bit x264, 10bit x265 and 12bit x265 if you provide MinGW-W64 compiled dll libraries in the HandBrake install directory.
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/X264ViewModel.cs')
-rw-r--r--win/CS/HandBrakeWPF/ViewModels/X264ViewModel.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/X264ViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/X264ViewModel.cs
index 2789dcc19..5b2694cd9 100644
--- a/win/CS/HandBrakeWPF/ViewModels/X264ViewModel.cs
+++ b/win/CS/HandBrakeWPF/ViewModels/X264ViewModel.cs
@@ -945,7 +945,7 @@ namespace HandBrakeWPF.ViewModels
this.Task.PropertyChanged += this.Task_PropertyChanged;
this.AdvancedOptionsString = preset.Task.AdvancedEncoderOptions;
- if (task.ShowAdvancedTab && task.VideoEncoder == VideoEncoder.X264)
+ if (task.ShowAdvancedTab && task.VideoEncoder == VideoEncoder.X264 && task.VideoEncoder == VideoEncoder.X264_10)
{
this.ShowX264AdvancedOptions = true;
this.NotifyOfPropertyChange(() => ShowX264AdvancedOptions);