diff options
author | sr55 <[email protected]> | 2010-06-18 19:19:35 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2010-06-18 19:19:35 +0000 |
commit | d514009752e382a26387f14314f1f643bbac333e (patch) | |
tree | 5ccd7ef62391b6c09578a4597fd4d883be891f0b /win/C#/Functions/QueryGenerator.cs | |
parent | 52cc84bfac801b89127403139a3cd67d786700c5 (diff) |
WinGui:
- Updates to the x264 panel.
- Added a Peak Framerate checkbox (--pfr cli option)
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3388 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Functions/QueryGenerator.cs')
-rw-r--r-- | win/C#/Functions/QueryGenerator.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/win/C#/Functions/QueryGenerator.cs b/win/C#/Functions/QueryGenerator.cs index e4557df6f..203e4e659 100644 --- a/win/C#/Functions/QueryGenerator.cs +++ b/win/C#/Functions/QueryGenerator.cs @@ -248,6 +248,9 @@ namespace Handbrake.Functions if (mainWindow.drp_videoFramerate.Text != "Same as source")
query += " -r " + mainWindow.drp_videoFramerate.Text;
+ if (mainWindow.checkMaximumFramerate.Checked)
+ query += " --pfr ";
+
#endregion
#region Audio Settings Tab
|