diff options
author | sr55 <[email protected]> | 2012-11-24 11:24:43 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2012-11-24 11:24:43 +0000 |
commit | 1c82ce41279bb0a2bb1efef73814b1e1099379cb (patch) | |
tree | dbaf58cbd292e0e722a81fc74340cfd92c439e72 /win/CS/HandBrake.ApplicationServices | |
parent | c4250b87a11587ac17543af6890359be2f8fdebc (diff) |
WinGui: Couple of Audio and Advanced Panel bug fixes.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5080 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Utilities/QueryGeneratorUtility.cs | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Utilities/QueryGeneratorUtility.cs b/win/CS/HandBrake.ApplicationServices/Utilities/QueryGeneratorUtility.cs index 25d59529b..83e551b42 100644 --- a/win/CS/HandBrake.ApplicationServices/Utilities/QueryGeneratorUtility.cs +++ b/win/CS/HandBrake.ApplicationServices/Utilities/QueryGeneratorUtility.cs @@ -723,12 +723,8 @@ namespace HandBrake.ApplicationServices.Utilities if (!string.IsNullOrEmpty(fallbackEncoders))
{
- // Special Case, The CLI alredy defaults to ALL, so if all area selected, then just set copy-mask to none
- if (fallbackEncoders == "aac,ac3,dtshd,dts,mp3")
- {
- query += string.Format(" --audio-copy-mask none");
- }
- else
+ // Special Case, The CLI alredy defaults to ALL, so if all area selected, then don't need to set copy mask
+ if (fallbackEncoders != "aac,ac3,dtshd,dts,mp3")
{
query += string.Format(" --audio-copy-mask {0}", fallbackEncoders);
}
|