Displaying 3 results from an estimated 3 matches for "speex_set_submode_encoding".
2006 Dec 09
2
Patch for sb_celp.c and a few questions
Hello Jean-Marc.
First of all, thank you for your awesome work on speex!
In the current version in SVN the wideband encoder/decoder doesn't
correctly pass the parameter of SPEEX_SET_SUBMODE_ENCODING to the
underlying narrowband codec. My patch fixes this.
Then I have a question regarding the EPIC_48K mode. Should the
perceptual enhancer work with this mode? At the moment it is enabled
by default but only produces a very loud noise.
Finally I would like to ask what your near future plans for...
2006 Dec 09
0
Patch for sb_celp.c and a few questions
> In the current version in SVN the wideband encoder/decoder doesn't
> correctly pass the parameter of SPEEX_SET_SUBMODE_ENCODING to the
> underlying narrowband codec. My patch fixes this.
Thanks. Strange that this didn't cause problems before.
> Then I have a question regarding the EPIC_48K mode. Should the
> perceptual enhancer work with this mode? At the moment it is enabled
> by default but only produces...
2005 May 25
3
Speex on TI C6x, Problem with TI C5x Patch
...st->mem_sw[i]=st->mem_sw_whole[i]=st->mem_sp[i]=st->mem_exc[i]=0;
for (i=0;i<st->frameSize+st->max_pitch+1;i++)
st->excBuf[i]=st->swBuf[i]=0;
for (i=0;i<st->windowSize;i++)
st->inBuf[i]=0;
}
break;
case SPEEX_SET_SUBMODE_ENCODING:
st->encode_submode = (*(long*)ptr);
break;
case SPEEX_GET_SUBMODE_ENCODING:
(*(long*)ptr) = st->encode_submode;
break;
case SPEEX_GET_LOOKAHEAD:
(*(long*)ptr)=(st->windowSize-st->frameSize);
break;
case SPEEX_SET_PLC_TUNING:
st->plc...