Home
last modified time | relevance | path

Searched refs:mOutputDrainBuffer (Results 1 – 2 of 2) sorted by relevance

/hardware/google/av/media/codecs/xaac/
DC2SoftXaacDec.cpp248 mOutputDrainBuffer(nullptr) { in C2SoftXaacDec()
312 if (mOutputDrainBuffer) { in onRelease()
313 delete[] mOutputDrainBuffer; in onRelease()
314 mOutputDrainBuffer = nullptr; in onRelease()
330 if (!mOutputDrainBuffer) { in initDecoder()
331 mOutputDrainBuffer = new (std::nothrow) char[kOutputDrainBufferSize]; in initDecoder()
332 if (!mOutputDrainBuffer) return IA_FATAL_ERROR; in initDecoder()
370 memcpy(outBuffer, mOutputDrainBuffer, mOutputDrainBufferWritePos); in finishWork()
453 char* tempOutputDrainBuffer = mOutputDrainBuffer; in process()
DC2SoftXaacDec.h100 char* mOutputDrainBuffer; member