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

/frameworks/av/media/libstagefright/codecs/aacenc/
H A DSoftAACEncoder2.cpp393 size_t numBytesPerInputFrame = local
397 if (mAACProfile == OMX_AUDIO_AACObjectELD && numBytesPerInputFrame > 512) {
398 numBytesPerInputFrame = 512;
404 while (mInputSize < numBytesPerInputFrame) {
419 size_t copy = numBytesPerInputFrame - mInputSize;
425 mInputFrame = new int16_t[numBytesPerInputFrame / sizeof(int16_t)];
451 numBytesPerInputFrame - mInputSize);
453 mInputSize = numBytesPerInputFrame;
484 inargs.numInSamples = numBytesPerInputFrame / sizeof(int16_t);
488 INT inBufferSize[] = { (INT)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 65 milliseconds