search for: exci

Displaying 2 results from an estimated 2 matches for "exci".

Did you mean: ehci
2004 Aug 06
1
fixed / floating point
I've noticed that the nb decoder uses floating point in several places even when using FIXED_POINT. I don't have to deal with lost packets, so I'm mainly interested in innov_gain and pgain in no transmission mode (nb_celp.c around line 1272) and g and exci in vocoder mode (around line 1557). Is there a reason that these places must use floating point, or would it be possible to make them use fixed point? -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/pkcs7-signature Size: 2363 bytes...
2005 May 25
3
Speex on TI C6x, Problem with TI C5x Patch
...ect=mode->defaultSubmode; st->bounded_pitch = 1; st->encode_submode = 1; #ifdef EPIC_48K st->lbr_48k=mode->lbr48k; #endif /* Allocating input buffer */ st->inBuf = speex_alloc((st->windowSize)*sizeof(spx_sig_t)); st->frame = st->inBuf; /* Allocating excitation buffer */ st->excBuf = speex_alloc((mode->frameSize+mode->pitchEnd+1)*sizeof(spx_sig_t)); st->exc = st->excBuf + mode->pitchEnd + 1; st->swBuf = speex_alloc((mode->frameSize+mode->pitchEnd+1)*sizeof(spx_sig_t)); st->sw = st->swBuf + mode->pitc...