mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-21 13:08:08 +00:00
restore 250 ms as default value, but be backward compatible when old api is used.
git-svn-id: svn+ssh://svn.savannah.nongnu.org/linphone/trunk@702 3f6dc0c8-ddfe-455d-9043-3cd528dc4637
This commit is contained in:
parent
6919d78714
commit
026bfdd09f
3 changed files with 3 additions and 4 deletions
|
|
@ -55,7 +55,7 @@ EXTRA_DIST = config.rpath BUGS linphone.kdevelop \
|
|||
|
||||
DISTCLEANFILES= intltool-extract intltool-merge intltool-update po/stamp-it po/.intltool-merge-cache $(ISS_SCRIPT) $(PACKAGE_WIN32_FILELIST)
|
||||
|
||||
CLEANFILES=PortFile
|
||||
CLEANFILES=Portfile Portfile-devel
|
||||
|
||||
# `make rpm'
|
||||
|
||||
|
|
|
|||
|
|
@ -4,7 +4,6 @@ linphone-3.2.1 -- October 5, 2009
|
|||
* windows installer installs reg keys to indicate windows to start linphone clicking of sip uris
|
||||
* workaround a bug Gtk-macos X with modal popup windows, preventing to answer calls
|
||||
|
||||
|
||||
linphone-3.2.0 -- September 17, 2009
|
||||
* new in-call layout
|
||||
* new idle view with two buttons
|
||||
|
|
|
|||
|
|
@ -61,7 +61,7 @@ static void speex_ec_init(MSFilter *f){
|
|||
s->size_delay=0;
|
||||
s->delay_ms=0;
|
||||
s->playback_delay=0;
|
||||
s->tail_length_ms=0;
|
||||
s->tail_length_ms=250;
|
||||
|
||||
ms_bufferizer_init(&s->in[0]);
|
||||
ms_bufferizer_init(&s->in[1]);
|
||||
|
|
@ -289,7 +289,7 @@ static int speex_ec_set_framesize(MSFilter *f, void *arg){
|
|||
static int speex_ec_set_filterlength(MSFilter *f, void *arg){
|
||||
SpeexECState *s=(SpeexECState*)f->data;
|
||||
s->filterlength = (*(int*)arg)*(s->samplerate/8000);
|
||||
|
||||
s->tail_length_ms=0;/*trust the length in sample, not the length in milliseconds*/
|
||||
if (s->ecstate!=NULL)
|
||||
speex_echo_state_destroy(s->ecstate);
|
||||
if (s->den!=NULL)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue