diff options
author | sr55 <[email protected]> | 2008-06-12 17:00:20 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2008-06-12 17:00:20 +0000 |
commit | 5996a02806deff78ab32db080023b2115a8f15ca (patch) | |
tree | 8e36b75f960d2d01a2af069e4144a3d3fa7d3e6f /win/C#/Functions | |
parent | f0720378ae3b63adba2ac11d912853d6bfe298e6 (diff) |
WinGui:
- Fixed #78 and #79
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1508 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Functions')
-rw-r--r-- | win/C#/Functions/QueryParser.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/C#/Functions/QueryParser.cs b/win/C#/Functions/QueryParser.cs index a0550b06e..87c1def3e 100644 --- a/win/C#/Functions/QueryParser.cs +++ b/win/C#/Functions/QueryParser.cs @@ -850,7 +850,7 @@ namespace Handbrake.Functions Match forcedSubtitles = Regex.Match(input, @"-F");
//H264 Tab
- Match x264 = Regex.Match(input, @"-x ([,a-zA-Z0-9=:-]*)");
+ Match x264 = Regex.Match(input, @"-x ([.,/a-zA-Z0-9=:-]*)");
//Program Options
Match verbose = Regex.Match(input, @"-v");
@@ -962,7 +962,7 @@ namespace Handbrake.Functions thisQuery.q_denoise = "None";
if (denoise.Success != false)
{
- switch (denoise.ToString().Replace("--denoise=", ""))
+ switch (denoise.ToString().Replace("--denoise=", "").Replace("\"", ""))
{
case "weak":
thisQuery.q_denoise = "Weak";
|