Searched defs:iReadFrames (Results 1 - 1 of 1) sorted by relevance

/external/srec/audio/AudioIn/UNIX/src/
H A Daudioin.c426 int iReadFrames = 0; /* number of frames acquired by the codec */ local
432 iReadFrames = 0;
436 frames_to_read = gCodecFragmentSizeInFrames - iReadFrames;
438 frames_read = AudioRead ( CodecBuffer + iReadFrames, frames_to_read );
441 iReadFrames += frames_read;
443 while ( ( iReadFrames < gCodecFragmentSizeInFrames ) && ( frames_read > 0 ) );
444 iReadSamples = iReadFrames;
622 int iReadFrames = 0; /* number of frames acquired by the codec */ local
625 if ( ( iReadFrames = snd_pcm_readi ( ghPCM, (void *)CodecBuffer, gCodecFragmentSizeInFrames ) ) < 0 )
627 if ( iReadFrames
[all...]

Completed in 151 milliseconds