Home | History | Annotate | Download | only in audioflinger

Lines Matching refs:mMixerBuffer

61     mMixerBuffer(NULL),
126 free(mMixerBuffer);
190 (void *)mMixerBuffer);
258 free(mMixerBuffer);
259 mMixerBuffer = NULL;
275 (void)posix_memalign(&mMixerBuffer, 32, mMixerBufferSize);
371 ALOG_ASSERT(mMixerBuffer != NULL);
461 if ((command & FastMixerState::WRITE) && (mOutputSink != NULL) && (mMixerBuffer != NULL)) {
463 memset(mMixerBuffer, 0, mMixerBufferSize);
468 mono_blend(mMixerBuffer, mMixerBufferFormat, Format_channelCount(mFormat), frameCount,
475 mBalance.process((float *)mMixerBuffer, frameCount);
478 void *buffer = mSinkBuffer != NULL ? mSinkBuffer : mMixerBuffer;
480 memcpy_by_audio_format(buffer, mFormat.mFormat, mMixerBuffer, mMixerBufferFormat,