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

/frameworks/av/media/libstagefright/codecs/amrnb/enc/
H A DSoftAMRNBEncoder.cpp51 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
[all...]
H A DSoftAMRNBEncoder.h55 size_t mInputSize; member in struct:android::SoftAMRNBEncoder
/frameworks/av/media/libstagefright/codecs/aacenc/
H A DSoftAACEncoder2.h63 size_t mInputSize; member in struct:android::SoftAACEncoder2
H A DSoftAACEncoder2.cpp63 mInputSize(0),
544 while (mInputSize < numBytesPerInputFrame) {
559 size_t copy = numBytesPerInputFrame - mInputSize;
577 if (mInputSize == 0) {
581 memcpy((uint8_t *)mInputFrame + mInputSize, inData, copy);
582 mInputSize += copy;
598 memset((uint8_t *)mInputFrame + mInputSize,
600 numBytesPerInputFrame - mInputSize);
602 mInputSize = numBytesPerInputFrame;
717 mInputSize
[all...]
/frameworks/av/media/libstagefright/codecs/amrwbenc/
H A DSoftAMRWBEncoder.h61 size_t mInputSize; member in struct:android::SoftAMRWBEncoder
H A DSoftAMRWBEncoder.cpp52 mInputSize(0),
357 while (mInputSize < numBytesPerInputFrame) {
372 size_t copy = numBytesPerInputFrame - mInputSize;
377 if (mInputSize == 0) {
381 memcpy((uint8_t *)mInputFrame + mInputSize, inData, copy);
382 mInputSize += copy;
398 memset((uint8_t *)mInputFrame + mInputSize,
400 numBytesPerInputFrame - mInputSize);
402 mInputSize = numBytesPerInputFrame;
432 inputData.Length = mInputSize;
[all...]
/frameworks/base/libs/androidfw/
H A DZipUtils.cpp86 mInputSize(inputSize) {
90 if (offset + len > mInputSize) {
100 const size_t mInputSize; member in class:BufferReader

Completed in 98 milliseconds