diff options
author | sr55 <[email protected]> | 2009-04-07 11:24:43 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2009-04-07 11:24:43 +0000 |
commit | 637b5bf7561e4256015c5371e26f3488797766ad (patch) | |
tree | fe5216f657f772f4cd77ad45ec936b9cbbadfdb0 /win/C#/Functions | |
parent | ab350b9b99a6a68d59425e03272ca615f02f2290 (diff) |
WinGui:
- Fix small regex error in QueryParser.cs related to video framerate.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2311 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Functions')
-rw-r--r-- | win/C#/Functions/QueryParser.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/C#/Functions/QueryParser.cs b/win/C#/Functions/QueryParser.cs index 4395791e6..4d40ef880 100644 --- a/win/C#/Functions/QueryParser.cs +++ b/win/C#/Functions/QueryParser.cs @@ -655,7 +655,7 @@ namespace Handbrake.Functions //Video Settings Tab
Match videoEncoder = Regex.Match(input, @"-e ([a-zA-Z0-9]*)");
- Match videoFramerate = Regex.Match(input, @"-r ([0-9]*)");
+ Match videoFramerate = Regex.Match(input, @"-r ([0-9.]*)");
Match videoBitrate = Regex.Match(input, @"-b ([0-9]*)");
Match videoQuality = Regex.Match(input, @"-q ([0-9.]*)");
Match videoFilesize = Regex.Match(input, @"-S ([0-9.]*)");
|