Searched refs:mMixerBuffer (Results 1 - 4 of 4) sorted by relevance

/frameworks/av/services/audioflinger/
H A DFastMixer.cpp59 mMixerBuffer(NULL),
122 free(mMixerBuffer);
180 free(mMixerBuffer);
181 mMixerBuffer = NULL;
197 (void)posix_memalign(&mMixerBuffer, 32, mMixerBufferSize);
231 ALOG_ASSERT(mMixerBuffer != NULL);
267 (void *)mMixerBuffer);
342 ALOG_ASSERT(mMixerBuffer != NULL);
432 if ((command & FastMixerState::WRITE) && (mOutputSink != NULL) && (mMixerBuffer != NULL)) {
434 memset(mMixerBuffer,
[all...]
H A DFastMixer.h72 void* mMixerBuffer; // mixer output buffer. member in class:android::FastMixer
H A DThreads.cpp1661 mMixerBuffer(NULL),
1731 free(mMixerBuffer);
1821 dprintf(fd, " Mixer buffer: %p\n", mMixerBuffer);
2593 // We resize the mMixerBuffer according to the requirements of the sink buffer which
2595 free(mMixerBuffer);
2596 mMixerBuffer = NULL;
2601 (void)posix_memalign(&mMixerBuffer, 32, mMixerBufferSize);
3372 // mMixerBuffer with data if mMixerBufferValid is true and mSleepTimeUs == 0.
3373 // Merge mMixerBuffer data into mEffectBuffer (if any effects are valid)
3388 mono_blend(mMixerBuffer, mMixerBufferForma
[all...]
H A DThreads.h822 // Mixer Buffer (mMixerBuffer*)
833 void* mMixerBuffer; member in class:PlaybackThread
835 // Size of mMixerBuffer in bytes: mNormalFrameCount * #channels * sampsize.
838 // The audio format of mMixerBuffer. Set to AUDIO_FORMAT_PCM_(FLOAT|16_BIT) only.
842 // when mMixerBuffer contains valid data after mixing.

Completed in 117 milliseconds