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

/frameworks/av/media/libstagefright/codecs/aacenc/
H A DSoftAACEncoder2.cpp527 size_t numBytesPerInputFrame = local
531 if (mAACProfile == OMX_AUDIO_AACObjectELD && numBytesPerInputFrame > 512) {
532 numBytesPerInputFrame = 512;
538 while (mInputSize < numBytesPerInputFrame) {
553 size_t copy = numBytesPerInputFrame - mInputSize;
559 mInputFrame = new int16_t[numBytesPerInputFrame / sizeof(int16_t)];
585 numBytesPerInputFrame - mInputSize);
587 mInputSize = numBytesPerInputFrame;
618 inargs.numInSamples = numBytesPerInputFrame / sizeof(int16_t);
622 INT inBufferSize[] = { (INT)numBytesPerInputFrame };
[all...]
H A DSoftAACEncoder.cpp444 size_t numBytesPerInputFrame = local
450 while (mInputSize < numBytesPerInputFrame) {
465 size_t copy = numBytesPerInputFrame - mInputSize;
498 numBytesPerInputFrame - mInputSize);
500 mInputSize = numBytesPerInputFrame;
527 inputData.Length = numBytesPerInputFrame;
/frameworks/av/media/libstagefright/codecs/amrnb/enc/
H A DSoftAMRNBEncoder.cpp309 size_t numBytesPerInputFrame = kNumSamplesPerFrame * sizeof(int16_t); local
314 while (mInputSize < numBytesPerInputFrame) {
329 size_t copy = numBytesPerInputFrame - mInputSize;
357 numBytesPerInputFrame - mInputSize);
359 mInputSize = numBytesPerInputFrame;
/frameworks/av/media/libstagefright/codecs/amrwbenc/
H A DSoftAMRWBEncoder.cpp356 size_t numBytesPerInputFrame = kNumSamplesPerFrame * sizeof(int16_t); local
361 while (mInputSize < numBytesPerInputFrame) {
376 size_t copy = numBytesPerInputFrame - mInputSize;
404 numBytesPerInputFrame - mInputSize);
406 mInputSize = numBytesPerInputFrame;

Completed in 952 milliseconds