fix a few strings and set correct settings for echo canceller
This commit is contained in:
parent
d3f39b9e34
commit
2ddc368898
8 changed files with 8 additions and 6 deletions
BIN
libs/armeabi-v7a/liblinphone.so
Normal file → Executable file
BIN
libs/armeabi-v7a/liblinphone.so
Normal file → Executable file
Binary file not shown.
Binary file not shown.
|
@ -30,7 +30,7 @@ ringer_dev_id=ANDROID SND: Android Sound card
|
||||||
capture_dev_id=ANDROID SND: Android Sound card
|
capture_dev_id=ANDROID SND: Android Sound card
|
||||||
remote_ring=/data/data/org.linphone/files/ringback.wav
|
remote_ring=/data/data/org.linphone/files/ringback.wav
|
||||||
local_ring=/data/data/org.linphone/files/oldphone_mono.wav
|
local_ring=/data/data/org.linphone/files/oldphone_mono.wav
|
||||||
ec_delay=250
|
ec_delay=400
|
||||||
ec_tail_len=300
|
ec_tail_len=200
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<string name="pref_ilbc_summary">ILBC codec not avalaible on old phone</string>
|
<string name="pref_ilbc_summary">ILBC codec might be unavailable on some phone models.</string>
|
||||||
<string name="pref_echo_cancellation">Echo cancellation</string>
|
<string name="pref_echo_cancellation">Echo cancellation</string>
|
||||||
<string name="pref_echo_cancellation_key">pref_echo_cancellation_key</string>
|
<string name="pref_echo_cancellation_key">pref_echo_cancellation_key</string>
|
||||||
<string name="pref_handle_outcall_summarry">If set cellular call are redirected to voip when possible</string>
|
<string name="pref_handle_outcall_summarry">If set cellular call are redirected to voip when possible</string>
|
||||||
|
@ -54,7 +54,7 @@
|
||||||
<string name="no">No</string>
|
<string name="no">No</string>
|
||||||
<string name="never_remind">Never remind me</string>
|
<string name="never_remind">Never remind me</string>
|
||||||
<string name="config_error">%s, do you want to go to the settings page ?</string>
|
<string name="config_error">%s, do you want to go to the settings page ?</string>
|
||||||
<string name="initial_config_error">No initial config found, do you want to return to the settings page ?</string>
|
<string name="initial_config_error">No SIP account has been configured yet, do you want to go to the settings page ?</string>
|
||||||
<string name="warning_already_incall">Cannot initiate a new call because a call is already engaged</string>
|
<string name="warning_already_incall">Cannot initiate a new call because a call is already engaged</string>
|
||||||
<string name="tab_history">History</string>
|
<string name="tab_history">History</string>
|
||||||
<string name="warning_wrong_destination_address">Cannot build destination address from [%s]</string>
|
<string name="warning_wrong_destination_address">Cannot build destination address from [%s]</string>
|
||||||
|
|
|
@ -39,3 +39,4 @@ public class AboutActivity extends Activity {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -260,3 +260,4 @@ public class LinphoneActivity extends TabActivity implements SensorEventListener
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -44,7 +44,7 @@ public class NetworkManager extends BroadcastReceiver {
|
||||||
} else if (lNetworkInfo.getState() == NetworkInfo.State.CONNECTED){
|
} else if (lNetworkInfo.getState() == NetworkInfo.State.CONNECTED){
|
||||||
LinphoneService.instance().getLinphoneCore().setNetworkStateReachable(true);
|
LinphoneService.instance().getLinphoneCore().setNetworkStateReachable(true);
|
||||||
} else {
|
} else {
|
||||||
//unhandle event
|
//unhandled event
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 94b38f943d37072154c55094ed2a6d7b4cecbe0e
|
Subproject commit 4d214fbde859f93442376f0de68ffc1f1dcf1717
|
Loading…
Reference in a new issue