diff options
author | sr55 <[email protected]> | 2011-05-28 13:11:16 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-05-28 13:11:16 +0000 |
commit | 23ec3a0d4ad11c01645b6778420fb64913164d45 (patch) | |
tree | adc7f7b67d27507e14eb33d2016e3acfcd73f372 /win/CS/frmQueue.cs | |
parent | 5a018b6c6863830910f16aaabd9afbe4ee0c3890 (diff) |
WinGui: Add fps display to the queue window.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4008 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/frmQueue.cs')
-rw-r--r-- | win/CS/frmQueue.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/win/CS/frmQueue.cs b/win/CS/frmQueue.cs index 20ce68259..1390fa560 100644 --- a/win/CS/frmQueue.cs +++ b/win/CS/frmQueue.cs @@ -138,10 +138,12 @@ namespace Handbrake lbl_encodeStatus.Text =
string.Format(
- "Encoding: Pass {0} of {1}, {2:00.00}%, Time Remaining: {3}, Elapsed: {4:hh\\:mm\\:ss}",
+ "Encoding: Pass {0} of {1}, {2:00.00}%, FPS: {3:000.0}, Avg FPS: {4:000.0}, Time Remaining: {5}, Elapsed: {6:hh\\:mm\\:ss}",
e.Task,
e.TaskCount,
e.PercentComplete,
+ e.CurrentFrameRate,
+ e.AverageFrameRate,
e.EstimatedTimeLeft,
e.ElapsedTime);
|