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

/frameworks/av/media/libstagefright/
H A DAudioSource.cpp303 size_t numLostBytes = 0; local
307 numLostBytes = mRecord->getInputFramesLost() * mRecord->frameSize();
310 CHECK_EQ(numLostBytes & 1, 0u);
312 if (numLostBytes > 0) {
315 ALOGW("Lost audio record data: %zu bytes", numLostBytes);
318 while (numLostBytes > 0) {
319 size_t bufferSize = numLostBytes;
320 if (numLostBytes > kMaxBufferSize) {
321 numLostBytes -= kMaxBufferSize;
324 numLostBytes
[all...]

Completed in 23 milliseconds