Renames SILK-related properties.

cusax-fix
Boris Grozev 13 years ago
parent bdf1793fd2
commit 6c376df438

@ -895,7 +895,7 @@ plugin.generalconfig.OPUS_USE_CBR=Use CBR:
plugin.generalconfig.OPUS_USE_FEC=Use inband FEC: plugin.generalconfig.OPUS_USE_FEC=Use inband FEC:
plugin.generalconfig.SILK_CONFIG=Silk plugin.generalconfig.SILK_CONFIG=Silk
plugin.generalconfig.SILK_USE_FEC=Use inband FEC: 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_SAT=Speech activity threshold (0-1):
plugin.generalconfig.SILK_ADVERTISE_FEC=Advertise FEC support in SDP: plugin.generalconfig.SILK_ADVERTISE_FEC=Advertise FEC support in SDP:
plugin.generalconfig.RESTORE=Restore defaults plugin.generalconfig.RESTORE=Restore defaults

@ -31,28 +31,28 @@ public class SilkConfigForm
*/ */
private static final String FEC_PROP private static final String FEC_PROP
= "net.java.sip.communicator.impl.neomedia.codec.audio.silk." + = "net.java.sip.communicator.impl.neomedia.codec.audio.silk." +
"encoder.usefec"; "encoder.USE_FEC";
/** /**
* The property name associated with the 'force packet loss' setting * The property name associated with the 'force packet loss' setting
*/ */
private static final String FEC_FORCE_PL_PROP private static final String FEC_FORCE_PL_PROP
= "net.java.sip.communicator.impl.neomedia.codec.audio.silk." + = "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 * The property name associated with the 'speech activity threshold' setting
*/ */
private static final String FEC_SAT_PROP private static final String FEC_SAT_PROP
= "net.java.sip.communicator.impl.neomedia.codec.audio.silk." + = "net.java.sip.communicator.impl.neomedia.codec.audio.silk." +
"encoder.sat"; "encoder.SPEECH_ACTIVITY_THRESHOLD";
/** /**
* The property name associated with the 'advertise fec' setting * The property name associated with the 'advertise fec' setting
*/ */
private static final String FEC_ADVERTISE_PROP private static final String FEC_ADVERTISE_PROP
= "net.java.sip.communicator.impl.neomedia.codec.audio.silk." + = "net.java.sip.communicator.impl.neomedia.codec.audio.silk." +
"encoder.advertisefec"; "ADVERTISE_FEC";
/** /**
* The default value for the SAT setting * The default value for the SAT setting
@ -135,7 +135,7 @@ public SilkConfigForm()
labelPanel.add(new JLabel(Resources.getString( labelPanel.add(new JLabel(Resources.getString(
"plugin.generalconfig.SILK_USE_FEC"))); "plugin.generalconfig.SILK_USE_FEC")));
labelPanel.add(new JLabel(Resources.getString( 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( labelPanel.add(new JLabel(Resources.getString(
"plugin.generalconfig.SILK_SAT"))); "plugin.generalconfig.SILK_SAT")));
labelPanel.add(new JLabel(Resources.getString( labelPanel.add(new JLabel(Resources.getString(

Loading…
Cancel
Save