summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.ApplicationServices/Utilities
diff options
context:
space:
mode:
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Utilities')
-rw-r--r--win/CS/HandBrake.ApplicationServices/Utilities/QueryGeneratorUtility.cs8
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);
}