Lines Matching refs:effectId
859 sp<AudioFlinger::EffectModule> AudioFlinger::ThreadBase::getEffect(int sessionId, int effectId)
862 return getEffect_l(sessionId, effectId);
865 sp<AudioFlinger::EffectModule> AudioFlinger::ThreadBase::getEffect_l(int sessionId, int effectId)
868 return chain != 0 ? chain->getEffectFromId_l(effectId) : 0;
2111 const sp<AudioFlinger::PlaybackThread::Track> track, int EffectId)
2114 return attachAuxEffect_l(track, EffectId);
2118 const sp<AudioFlinger::PlaybackThread::Track> track, int EffectId)
2122 if (EffectId == 0) {
2126 sp<EffectModule> effect = getEffect_l(AUDIO_SESSION_OUTPUT_MIX, EffectId);
2129 track->setAuxBuffer(EffectId, (int32_t *)effect->inBuffer());
2140 void AudioFlinger::PlaybackThread::detachAuxEffect_l(int effectId)
2144 if (track->auxEffectId() == effectId) {