search for: gspeexencod

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

Did you mean: gspeexencoder
2005 Nov 26
1
Re: [iglance] iGlance audio/video pipeline
...t; you need, but it's good to know the start of the chain. > > 2. GVideoCaptureService manages a list of GVideoCaptureStreams (one > stream for each online buddy). GVideoCaptureStream::onAudioFrame( ) > listens for audio samples, and then encodes them with > GSpeexEncoder::encode( ). > > 3. GSpeexEncoder is where the denoising will certainly go. The > GSpeexEncoder constructor initializes Speex. GSpeexEncoder::encode( ) > does the follows: > a. Converts input samples from (short) to (float) > b. Encodes as many...
2004 Aug 06
0
Multiple Frames per Packet
...using 1.0.4. Any suggestions? Surely this isn't a new question. (Incidentally, the Xiph.org archives of this mailing list appear to be offline. Where are they now, or when will they come back online?) I've included some clips from my code below: -david --------------- // encode void GSpeexEncoder::encode( const short* from, int fromSize, vector<char>& to ) { GASSERTPUB( ); GASSERTPRE( from && fromSize ); // First convert to floating-point data static vector<float> fromFloat; fromFloat.resize( fromSize ); const short* src = from; float* dst = &fromFloat[0]; int...