Index: remoting/webapp/me2mom/remoting.js |
diff --git a/remoting/webapp/me2mom/remoting.js b/remoting/webapp/me2mom/remoting.js |
index 9b7a0a0276756cef3c498aa6db942744edd98b84..46e90f8e10bb5b2238de600e108a66d61bc94266 100644 |
--- a/remoting/webapp/me2mom/remoting.js |
+++ b/remoting/webapp/me2mom/remoting.js |
@@ -468,6 +468,9 @@ function updateStatistics() { |
var statistics = document.getElementById('statistics'); |
statistics.innerText = |
'Bandwidth: ' + videoBandwidth.toFixed(2) + units + |
+ ', Framerate: ' + |
Wez
2011/10/21 18:01:43
Framerate -> Frame Rate
|
+ (stats['video_frame_rate'] ? |
+ stats['video_frame_rate'].toFixed(2) + ' fps' : 'n/a') + |
', Capture: ' + stats['capture_latency'].toFixed(2) + 'ms' + |
', Encode: ' + stats['encode_latency'].toFixed(2) + 'ms' + |
', Decode: ' + stats['decode_latency'].toFixed(2) + 'ms' + |