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/HandBrake.ApplicationServices/Utilities/QueryGeneratorUtility.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/HandBrake.ApplicationServices/Utilities/QueryGeneratorUtility.cs')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Utilities/QueryGeneratorUtility.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Utilities/QueryGeneratorUtility.cs b/win/CS/HandBrake.ApplicationServices/Utilities/QueryGeneratorUtility.cs index fd9ad3b4c..653732d2b 100644 --- a/win/CS/HandBrake.ApplicationServices/Utilities/QueryGeneratorUtility.cs +++ b/win/CS/HandBrake.ApplicationServices/Utilities/QueryGeneratorUtility.cs @@ -1030,7 +1030,7 @@ namespace HandBrake.ApplicationServices.Utilities {
query += string.Format(" --encoder-level=\"{0}\" ", task.H264Level);
}
- if (task.H264Profile != x264Profile.None)
+ if (task.H264Profile != x264Profile.Auto)
{
query += string.Format(
" --encoder-profile={0} ", task.H264Profile.ToString().ToLower().Replace(" ", string.Empty));
|