diff options
author | Boris Grozev <boris@jitsi.org> | 2012-10-05 19:09:46 +0000 |
---|---|---|
committer | Boris Grozev <boris@jitsi.org> | 2012-10-05 19:09:46 +0000 |
commit | 6c376df4386eff6247ce7daf2dd1ab80e178ec51 (patch) | |
tree | 8989a9d152a01775ef269a52fe99ffc05e893d57 | |
parent | bdf1793fd25bc08624e9b914c3b5ebe764219f27 (diff) | |
download | jitsi-6c376df4386eff6247ce7daf2dd1ab80e178ec51.zip jitsi-6c376df4386eff6247ce7daf2dd1ab80e178ec51.tar.gz jitsi-6c376df4386eff6247ce7daf2dd1ab80e178ec51.tar.bz2 |
Renames SILK-related properties.
-rw-r--r-- | lib/installer-exclude/libjitsi.jar | bin | 990042 -> 990342 bytes | |||
-rw-r--r-- | resources/languages/resources.properties | 2 | ||||
-rw-r--r-- | src/net/java/sip/communicator/plugin/generalconfig/SilkConfigForm.java | 10 |
3 files changed, 6 insertions, 6 deletions
diff --git a/lib/installer-exclude/libjitsi.jar b/lib/installer-exclude/libjitsi.jar Binary files differindex b1b93e3..f8f7f90 100644 --- a/lib/installer-exclude/libjitsi.jar +++ b/lib/installer-exclude/libjitsi.jar diff --git a/resources/languages/resources.properties b/resources/languages/resources.properties index 4ebd3ac..093d13b 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 087d310..e65e00e 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 class 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( |