Searched refs:numLostBytes (Results 1 - 1 of 1) sorted by relevance

/frameworks/av/media/libstagefright/
H A DAudioSource.cpp304 size_t numLostBytes = 0; local
308 numLostBytes = mRecord->getInputFramesLost() * mRecord->frameSize();
311 CHECK_EQ(numLostBytes & 1, 0u);
313 if (numLostBytes > 0) {
316 ALOGW("Lost audio record data: %d bytes", numLostBytes);
319 while (numLostBytes > 0) {
320 size_t bufferSize = numLostBytes;
321 if (numLostBytes > kMaxBufferSize) {
322 numLostBytes -= kMaxBufferSize;
325 numLostBytes
[all...]

Completed in 29 milliseconds