From 58c1508dc01105a9985e103c675eb09099693c6b Mon Sep 17 00:00:00 2001 From: sr55 Date: Sat, 14 Jan 2012 19:47:19 +0000 Subject: [PATCH] WinGui: "copy" not "copy:*" git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4409 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- .../HandBrake.ApplicationServices/Functions/Converters.cs | 6 +++--- 1 file 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: -- 2.40.0