Home | History | Annotate | Download | only in enc

Lines Matching refs:mInputSize

51       mInputSize(0),
310 while (mInputSize < numBytesPerInputFrame) {
325 size_t copy = numBytesPerInputFrame - mInputSize;
330 if (mInputSize == 0) {
334 memcpy((uint8_t *)mInputFrame + mInputSize, inData, copy);
335 mInputSize += copy;
351 memset((uint8_t *)mInputFrame + mInputSize,
353 numBytesPerInputFrame - mInputSize);
355 mInputSize = numBytesPerInputFrame;
418 mInputSize = 0;