search for: idecbytes

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

2005 Jul 20
1
Speex Windows from 1.1.6 source
...in the struct so we can code a new frame */ speex_bits_reset(&Decbits); /* Copy the data into the bit-stream struct */ speex_bits_read_from(&Decbits, InputBuf, InputSize); /* Get the Size of the Decoded Frame */ speex_decoder_ctl(decState, SPEEX_GET_FRAME_SIZE, &iDecBytes); if(iIndex > outputSize) return -1; iIndex = iDecBytes/sizeof(short); /* Allocate the Decode Frame */ memset(pfDecBuf,0,sizeof(200 * sizeof(float))); /* Decode the data */ speex_decode(decState, &Decbits, pfDecBuf); memset(OutputBuf,0,outputSize); psOu...