Jean-Christophe.Berge@etu.enseeiht.fr
2006-Sep-21 01:13 UTC
[Speex-dev] AEC in WB mode fixed yet ?
> Today's Topics: > > 1. AEC with WB mode (Jean-Christophe.Berge@etu.enseeiht.fr) > 2. Multiple frame encode and decode (Reza Fatahillah) > 3. cant link speex_echo.h (jesus) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Wed, 20 Sep 2006 08:46:03 +0200 (CEST) > From: Jean-Christophe.Berge@etu.enseeiht.fr > Subject: [Speex-dev] AEC with WB mode > To: speex-dev@xiph.org > Message-ID: <39999.194.3.40.86.1158734763.squirrel@194.3.40.86> > Content-Type: text/plain;charset=iso-8859-1 > > Hello, > > I just tried the latest linphone version (1.4.0) which include Speex NB > and WB and the possibility to use speex AEC. > > Unfortunatly, I found that the AEC does not work well with WB mode.(the > AEC seems to suppress the speech and let the echo pass...) > > I found that they used a tail length of 2048 and a framesize of 128 to > initialize the AEC. thus, as recommended in the speex manual, I replaced > them with a 3200 tail length and a 320 frame size. > > But it still doesn't work... > > Wich parameter has to be modified when using the AEC in WB instead of NB > And does the AEC ever worked in wideband mode ? > > Thanks for your help, and for this wonderful codec ! > Sorry for my English > > >-------------------------------------------------------------------------Hello, I think I will ask my question in an other way because It was not really a success :-) Does the AEC works in WB yet ? In mdf.c, I can read : /* FIXME: Make that an init option (new API call?) */ st->sampling_rate = 8000; Does it mean that the AEC in WB is not fixed yet ? Thank you for your answer, I really need to now if I have to work on that... JC.
> Hello, > > I think I will ask my question in an other way because It was not really a > success :-) > > Does the AEC works in WB yet ? > > In mdf.c, I can read : > /* FIXME: Make that an init option (new API call?) */ > st->sampling_rate = 8000; > > Does it mean that the AEC in WB is not fixed yet ? > > Thank you for your answer, I really need to now if I have to work on that...spx_int32_t tmp = 16000; speex_echo_ctl(echo_state, SPEEX_ECHO_SET_SAMPLING_RATE, &tmp); Jean-Marc
Jean-Christophe.Berge@etu.enseeiht.fr
2006-Sep-21 05:57 UTC
[Speex-dev] AEC in WB mode fixed yet ?
>> Hello, >> >> I think I will ask my question in an other way because It was not really >> a >> success :-) >> >> Does the AEC works in WB yet ? >> >> In mdf.c, I can read : >> /* FIXME: Make that an init option (new API call?) */ >> st->sampling_rate = 8000; >> >> Does it mean that the AEC in WB is not fixed yet ? >> >> Thank you for your answer, I really need to now if I have to work on >> that... > > spx_int32_t tmp = 16000; > speex_echo_ctl(echo_state, SPEEX_ECHO_SET_SAMPLING_RATE, &tmp); > > > Jean-Marc >Thank you very much, I just tried speex EAC in WB with linphone and it works great !