diff options
author | sr55 <[email protected]> | 2012-01-14 19:47:19 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2012-01-14 19:47:19 +0000 |
commit | 58c1508dc01105a9985e103c675eb09099693c6b (patch) | |
tree | 1a4ccbb3e8bbbfbdc63cd65a10f66e8294dd7f1f | |
parent | 1c231b4e398f973487822f0aa607f9c8e5ff82fa (diff) |
WinGui: "copy" not "copy:*"
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4409 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Functions/Converters.cs | 6 |
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:
|