diff options
author | sr55 <[email protected]> | 2015-01-12 19:50:52 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2015-01-12 19:50:52 +0000 |
commit | 78f3a92eeb301e9896fdc59efdd3d37133984033 (patch) | |
tree | 57f7cd0ab4fa2ea86df6ee7c26cfaa3a550e5a38 /win/CS/HandBrakeWPF/ViewModels/VideoViewModel.cs | |
parent | 84d152fecb516134d1d89d4689761430d6aa0a0d (diff) |
WinGui: Some fixes around x264/x265 tune/profile options
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6739 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/VideoViewModel.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/VideoViewModel.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/VideoViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/VideoViewModel.cs index 36276b2f2..8b745aa3c 100644 --- a/win/CS/HandBrakeWPF/ViewModels/VideoViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/VideoViewModel.cs @@ -1131,7 +1131,7 @@ namespace HandBrakeWPF.ViewModels }
else
{
- this.H264Profile = x264Profile.None;
+ this.H264Profile = x264Profile.Auto;
this.H264Level = "Auto";
}
@@ -1261,7 +1261,7 @@ namespace HandBrakeWPF.ViewModels this.canClear = false;
this.X264PresetValue = 5;
this.X264Tune = x264Tune.None;
- this.H264Profile = x264Profile.None;
+ this.H264Profile = x264Profile.Auto;
this.FastDecode = false;
this.H264Level = "Auto";
this.ExtraArguments = string.Empty;
|