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

/frameworks/av/media/libstagefright/codecs/aacenc/
H A DSoftAACEncoder2.cpp389 size_t numBytesPerInputFrame = local
393 if (mAACProfile == OMX_AUDIO_AACObjectELD && numBytesPerInputFrame > 512) {
394 numBytesPerInputFrame = 512;
400 while (mInputSize < numBytesPerInputFrame) {
415 size_t copy = numBytesPerInputFrame - mInputSize;
421 mInputFrame = new int16_t[numBytesPerInputFrame / sizeof(int16_t)];
447 numBytesPerInputFrame - mInputSize);
449 mInputSize = numBytesPerInputFrame;
480 inargs.numInSamples = numBytesPerInputFrame / sizeof(int16_t);
484 INT inBufferSize[] = { numBytesPerInputFrame };
[all...]
H A DSoftAACEncoder.cpp416 size_t numBytesPerInputFrame = local
422 while (mInputSize < numBytesPerInputFrame) {
437 size_t copy = numBytesPerInputFrame - mInputSize;
470 numBytesPerInputFrame - mInputSize);
472 mInputSize = numBytesPerInputFrame;
499 inputData.Length = numBytesPerInputFrame;
/frameworks/av/media/libstagefright/codecs/amrnb/enc/
H A DSoftAMRNBEncoder.cpp281 size_t numBytesPerInputFrame = kNumSamplesPerFrame * sizeof(int16_t); local
286 while (mInputSize < numBytesPerInputFrame) {
301 size_t copy = numBytesPerInputFrame - mInputSize;
329 numBytesPerInputFrame - mInputSize);
331 mInputSize = numBytesPerInputFrame;
/frameworks/av/media/libstagefright/codecs/amrwbenc/
H A DSoftAMRWBEncoder.cpp328 size_t numBytesPerInputFrame = kNumSamplesPerFrame * sizeof(int16_t); local
333 while (mInputSize < numBytesPerInputFrame) {
348 size_t copy = numBytesPerInputFrame - mInputSize;
376 numBytesPerInputFrame - mInputSize);
378 mInputSize = numBytesPerInputFrame;

Completed in 61 milliseconds