Lines Matching refs:mMixerBuffer
59 mMixerBuffer(NULL), in FastMixer()
120 free(mMixerBuffer); in onExit()
174 free(mMixerBuffer); in onStateChange()
175 mMixerBuffer = NULL; in onStateChange()
186 (void)posix_memalign(&mMixerBuffer, 32, mMixerBufferSize); in onStateChange()
223 ALOG_ASSERT(mMixerBuffer != NULL); in onStateChange()
260 (void *)mMixerBuffer); in onStateChange()
329 ALOG_ASSERT(mMixerBuffer != NULL); in onWork()
410 if ((command & FastMixerState::WRITE) && (outputSink != NULL) && (mMixerBuffer != NULL)) { in onWork()
412 memset(mMixerBuffer, 0, mMixerBufferSize); in onWork()
415 void *buffer = mSinkBuffer != NULL ? mSinkBuffer : mMixerBuffer; in onWork()
417 memcpy_by_audio_format(buffer, format.mFormat, mMixerBuffer, mMixerBufferFormat, in onWork()