diff --git a/lib/installer-exclude/libjitsi.jar b/lib/installer-exclude/libjitsi.jar index bdeadc0a1..2717f38c6 100644 Binary files a/lib/installer-exclude/libjitsi.jar and b/lib/installer-exclude/libjitsi.jar differ diff --git a/resources/languages/resources.properties b/resources/languages/resources.properties index 9a13d882e..c57d2b33f 100644 --- a/resources/languages/resources.properties +++ b/resources/languages/resources.properties @@ -584,6 +584,7 @@ service.gui.callinfo.TOTAL_HARVESTING_TIME=Total harvesting time service.gui.callinfo.HARVESTING_TIME=Harvesting time service.gui.callinfo.HARVESTING_MS_FOR=ms (for service.gui.callinfo.HARVESTS=harvests) +service.gui.callinfo.DECODED_WITH_FEC=Packets decoded with FEC service.gui.ALWAYS_TRUST=Always trust this certificate service.gui.CERT_DIALOG_TITLE=Verify Certificate diff --git a/src/net/java/sip/communicator/impl/gui/main/call/CallInfoFrame.java b/src/net/java/sip/communicator/impl/gui/main/call/CallInfoFrame.java index 0bd111c2f..708dddd19 100644 --- a/src/net/java/sip/communicator/impl/gui/main/call/CallInfoFrame.java +++ b/src/net/java/sip/communicator/impl/gui/main/call/CallInfoFrame.java @@ -575,6 +575,11 @@ private void constructAudioVideoInfo( + "% ↑ " + (int) mediaStreamStats.getUploadPercentLoss() + "%")); + stringBuffer.append( + getLineString( + resources.getI18NString( + "service.gui.callinfo.DECODED_WITH_FEC"), + String.valueOf(mediaStreamStats.getNbFec()))); long rttMs = mediaStreamStats.getRttMs(); if(rttMs != -1)