Index: remoting/webapp/me2mom/remoting.js |
diff --git a/remoting/webapp/me2mom/remoting.js b/remoting/webapp/me2mom/remoting.js |
index e7c549681dd8f4f6703aab9e07876bc6056c8422..817217470f5fd0be56e6347004f04fced516f7bc 100644 |
--- a/remoting/webapp/me2mom/remoting.js |
+++ b/remoting/webapp/me2mom/remoting.js |
@@ -467,6 +467,9 @@ function updateStatistics() { |
var statistics = document.getElementById('statistics'); |
statistics.innerText = |
'Bandwidth: ' + videoBandwidth.toFixed(2) + units + |
+ ', Framerate: ' + |
+ (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' + |