search for: neolinks

Displaying 5 results from an estimated 5 matches for "neolinks".

Did you mean: elinks
2007 Feb 07
1
error during make
...e: [xiph-rtp] Re: [Vorbis-dev] Proposal: An extension to > rules all others (Silvia Pfeiffer) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Tue, 06 Feb 2007 18:43:47 +0100 > From: Alfredo Moreira <alfredo.moreira@neolinks.com> > Subject: [Speex-dev] svn AGC > To: speex-dev@xiph.org > Message-ID: <45C8BE53.9070004@neolinks.com> > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > Hi Jean Marc, > > I found that the AGC API and algorithm has changed in svn head trunk. >...
2004 Aug 06
0
some optimizations...
i'm optimizing some features....for exemple why not doing this : ------------------------------------------------------------------------------- void speex_bits_advance(SpeexBits *bits, int n) { if (((bits->bytePtr<<3)+bits->bitPtr+n>bits->nbBits) || bits->overflow){ bits->overflow=1; return; } bits->bytePtr += (bits->bitPtr+nbBits) >>
2004 Aug 06
1
speex_bits_pack optimizations...
another optimization you can do for packing bits together... the original one is : ------------------------------------------------------------------------------------------------------------- void speex_bits_pack(SpeexBits *bits, int data, int nbBits) { int i; unsigned int d=data; if (bits->bytePtr+((nbBits+bits->bitPtr)>>3) >= bits->buf_size) { //remain
2007 Feb 06
2
svn AGC
Hi Jean Marc, I found that the AGC API and algorithm has changed in svn head trunk. Is it safe to use it? Or is it for testing purpose only? You also said that VAD in svn is broken in a previous post, is it related to the AGC change? or can we mix the old VAD algorithm with the new AGC safely? kind regards, fredo
2004 Dec 30
2
echo cancellation
I'm going to test the echo cancellation... but before doing something wrong, i want to know what is the right way to use it... ------------------------------------------------------------------------------------- short * speakerSample; //will contain what the speakers are going to play short * microphoneSample; //what the microphone is going to register short* cancelledSample; //the ouput