Lines Matching refs:mMixerBuffer
106 free(mMixerBuffer); in onExit()
170 (void *)mMixerBuffer); in updateMixerTrack()
240 free(mMixerBuffer); in onStateChange()
241 mMixerBuffer = nullptr; in onStateChange()
257 (void)posix_memalign(&mMixerBuffer, 32, mMixerBufferSize); in onStateChange()
354 ALOG_ASSERT(mMixerBuffer != nullptr); in onWork()
445 && (mOutputSink != nullptr) && (mMixerBuffer != nullptr)) { in onWork()
447 memset(mMixerBuffer, 0, mMixerBufferSize); in onWork()
452 mono_blend(mMixerBuffer, mMixerBufferFormat, Format_channelCount(mFormat), frameCount, in onWork()
459 mBalance.process((float *)mMixerBuffer, frameCount); in onWork()
462 void *buffer = mSinkBuffer != nullptr ? mSinkBuffer : mMixerBuffer; in onWork()
464 memcpy_by_audio_format(buffer, mFormat.mFormat, mMixerBuffer, mMixerBufferFormat, in onWork()