From d514009752e382a26387f14314f1f643bbac333e Mon Sep 17 00:00:00 2001 From: sr55 Date: Fri, 18 Jun 2010 19:19:35 +0000 Subject: 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 --- win/C#/Functions/QueryGenerator.cs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'win/C#/Functions/QueryGenerator.cs') 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 -- cgit v1.2.3