Lines Matching refs:mMixerBuffer
60 mMixerBuffer(NULL), in FastMixer()
121 free(mMixerBuffer); in onExit()
175 free(mMixerBuffer); in onStateChange()
176 mMixerBuffer = NULL; in onStateChange()
191 (void)posix_memalign(&mMixerBuffer, 32, mMixerBufferSize); in onStateChange()
230 ALOG_ASSERT(mMixerBuffer != NULL); in onStateChange()
267 (void *)mMixerBuffer); in onStateChange()
336 ALOG_ASSERT(mMixerBuffer != NULL); in onWork()
417 if ((command & FastMixerState::WRITE) && (mOutputSink != NULL) && (mMixerBuffer != NULL)) { in onWork()
419 memset(mMixerBuffer, 0, mMixerBufferSize); in onWork()
423 void *buffer = mSinkBuffer != NULL ? mSinkBuffer : mMixerBuffer; in onWork()
425 memcpy_by_audio_format(buffer, mFormat.mFormat, mMixerBuffer, mMixerBufferFormat, in onWork()