search for: m_buffersize

Displaying 1 result from an estimated 1 matches for "m_buffersize".

Did you mean: m_nbuffersize
2007 Nov 14
0
Audio glitches/Configuration problem !!?
...t about the lookahead size ? how shouw we apply it in encoding stage ? thanks in advance bool SpeexEncoder::EncodeData(char * inBuffer, int inSize, char * outBuffer, int outMAXSize, int* outSize) { if(!m_Initialized) return false; // Copy data into the local buffer memcpy(m_pBuffer + m_BufferSize, inBuffer, inSize); m_BufferSize += inSize; // check if we have enougth data for the encoder, if(m_BufferSize < m_FrameSizeInBytes ) return false; // start processing short* input = (short*)m_pBuffer; char* output = outBuffer; *outSize = 0; int tmpBuffe...