summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--win/CS/HandBrake.ApplicationServices/Functions/Converters.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Functions/Converters.cs b/win/CS/HandBrake.ApplicationServices/Functions/Converters.cs
index 1ad7a819f..b7a9d3071 100644
--- a/win/CS/HandBrake.ApplicationServices/Functions/Converters.cs
+++ b/win/CS/HandBrake.ApplicationServices/Functions/Converters.cs
@@ -157,7 +157,7 @@ namespace HandBrake.ApplicationServices.Functions
return "AAC (ffmpeg)";
case "ffflac":
return "Flac (ffmpeg)";
- case "copy:*":
+ case "copy":
return "Auto Passthru";
default:
return "AAC (faac)";
@@ -195,7 +195,7 @@ namespace HandBrake.ApplicationServices.Functions
return AudioEncoder.Mp3Passthru;
case "copy:aac":
return AudioEncoder.AacPassthru;
- case "copy:*":
+ case "copy":
return AudioEncoder.Passthrough;
default:
return AudioEncoder.Faac;
@@ -276,7 +276,7 @@ namespace HandBrake.ApplicationServices.Functions
case AudioEncoder.Mp3Passthru:
return "copy:mp3";
case AudioEncoder.Passthrough:
- return "copy:*";
+ return "copy";
case AudioEncoder.ffflac:
return "ffflac";
default: