diff --git a/lib/installer-exclude/libjitsi.jar b/lib/installer-exclude/libjitsi.jar index b1b93e333..f8f7f9039 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 4ebd3ac34..093d13b70 100644 --- a/resources/languages/resources.properties +++ b/resources/languages/resources.properties @@ -895,7 +895,7 @@ plugin.generalconfig.OPUS_USE_CBR=Use CBR: plugin.generalconfig.OPUS_USE_FEC=Use inband FEC: plugin.generalconfig.SILK_CONFIG=Silk plugin.generalconfig.SILK_USE_FEC=Use inband FEC: -plugin.generalconfig.SILK_FORCE_FEC_PACKET_LOSS=Force the encoder to expect packet loss: +plugin.generalconfig.SILK_ALWAYS_ASSUME_PACKET_LOSS=Always assume packet loss: plugin.generalconfig.SILK_SAT=Speech activity threshold (0-1): plugin.generalconfig.SILK_ADVERTISE_FEC=Advertise FEC support in SDP: plugin.generalconfig.RESTORE=Restore defaults diff --git a/src/net/java/sip/communicator/plugin/generalconfig/SilkConfigForm.java b/src/net/java/sip/communicator/plugin/generalconfig/SilkConfigForm.java index 087d3104f..e65e00e6c 100644 --- a/src/net/java/sip/communicator/plugin/generalconfig/SilkConfigForm.java +++ b/src/net/java/sip/communicator/plugin/generalconfig/SilkConfigForm.java @@ -31,28 +31,28 @@ public class SilkConfigForm */ private static final String FEC_PROP = "net.java.sip.communicator.impl.neomedia.codec.audio.silk." + - "encoder.usefec"; + "encoder.USE_FEC"; /** * The property name associated with the 'force packet loss' setting */ private static final String FEC_FORCE_PL_PROP = "net.java.sip.communicator.impl.neomedia.codec.audio.silk." + - "encoder.forcepacketloss"; + "encoder.AWLAYS_ASSUME_PACKET_LOSS"; /** * The property name associated with the 'speech activity threshold' setting */ private static final String FEC_SAT_PROP = "net.java.sip.communicator.impl.neomedia.codec.audio.silk." + - "encoder.sat"; + "encoder.SPEECH_ACTIVITY_THRESHOLD"; /** * The property name associated with the 'advertise fec' setting */ private static final String FEC_ADVERTISE_PROP = "net.java.sip.communicator.impl.neomedia.codec.audio.silk." + - "encoder.advertisefec"; + "ADVERTISE_FEC"; /** * The default value for the SAT setting @@ -135,7 +135,7 @@ public SilkConfigForm() labelPanel.add(new JLabel(Resources.getString( "plugin.generalconfig.SILK_USE_FEC"))); labelPanel.add(new JLabel(Resources.getString( - "plugin.generalconfig.SILK_FORCE_FEC_PACKET_LOSS"))); + "plugin.generalconfig.SILK_ALWAYS_ASSUME_PACKET_LOSS"))); labelPanel.add(new JLabel(Resources.getString( "plugin.generalconfig.SILK_SAT"))); labelPanel.add(new JLabel(Resources.getString(