Adds RTT statistic to call information frame.

cusax-fix
Vincent Lucas 14 years ago
parent 0e5af4ff79
commit 266d1c2e80

@ -549,6 +549,7 @@ service.gui.callinfo.LOCAL_IP=Local IP / Port
service.gui.callinfo.REMOTE_IP=Remote IP / Port
service.gui.callinfo.BANDWITH=Bandwith
service.gui.callinfo.LOSS_RATE=Loss rate
service.gui.callinfo.RTT=RTT
service.gui.callinfo.JITTER=Jitter
service.gui.callinfo.MEDIA_STREAM_TRANSPORT_PROTOCOL=Media stream transport protocol
service.gui.callinfo.MEDIA_STREAM_RTP=RTP

@ -405,6 +405,15 @@ private void constructAudioVideoInfo(
+ (int) mediaStreamStats.getUploadPercentLoss()
+ "%"));
long rttMs = mediaStreamStats.getRttMs();
if(rttMs != -1)
{
stringBuffer.append(
getLineString(resources.getI18NString(
"service.gui.callinfo.RTT"),
rttMs + " ms"));
}
stringBuffer.append(
getLineString(resources.getI18NString(
"service.gui.callinfo.JITTER"),

Loading…
Cancel
Save