Home | History | Annotate | Download | only in audioflinger

Lines Matching refs:EffectModule

1336 void AudioFlinger::ThreadBase::checkSuspendOnEffectEnabled(const sp<EffectModule>& effect,
1344 void AudioFlinger::ThreadBase::checkSuspendOnEffectEnabled_l(const sp<EffectModule>& effect,
5292 sp<EffectModule> effect = ec->mEffects[0];
5642 sp<EffectModule> effect = chain->getEffectFromId_l(0);
5647 if (effect->state() == EffectModule::ACTIVE ||
5648 effect->state() == EffectModule::STOPPING) {
5688 sp<EffectModule> effect;
5750 effect = new EffectModule(this, chain, desc, id, sessionId);
5793 sp<AudioFlinger::EffectModule> AudioFlinger::ThreadBase::getEffect_l(int sessionId, int effectId)
5795 sp<EffectModule> effect;
5806 status_t AudioFlinger::ThreadBase::addEffect_l(const sp<EffectModule>& effect)
5842 void AudioFlinger::ThreadBase::removeEffect_l(const sp<EffectModule>& effect) {
5907 void AudioFlinger::ThreadBase::disconnectEffect(const sp<EffectModule>& effect,
6034 sp<EffectModule> effect = getEffect_l(AUDIO_SESSION_OUTPUT_MIX, EffectId);
6089 // EffectModule implementation
6093 #define LOG_TAG "AudioFlinger::EffectModule"
6095 AudioFlinger::EffectModule::EffectModule(const wp<ThreadBase>& wThread,
6135 AudioFlinger::EffectModule::~EffectModule()
6154 status_t AudioFlinger::EffectModule::addHandle(sp<EffectHandle>& handle)
6186 size_t AudioFlinger::EffectModule::removeHandle(const wp<EffectHandle>& handle)
6225 sp<AudioFlinger::EffectHandle> AudioFlinger::EffectModule::controlHandle()
6235 void AudioFlinger::EffectModule::disconnect(const wp<EffectHandle>& handle, bool unpiniflast)
6238 // keep a strong reference on this EffectModule to avoid calling the
6240 sp<EffectModule> keep(this);
6249 void AudioFlinger::EffectModule::updateState() {
6285 void AudioFlinger::EffectModule::process()
6334 void AudioFlinger::EffectModule::reset_l()
6342 status_t AudioFlinger::EffectModule::configure()
6418 status_t AudioFlinger::EffectModule::init()
6438 status_t AudioFlinger::EffectModule::start()
6444 status_t AudioFlinger::EffectModule::start_l()
6474 status_t AudioFlinger::EffectModule::stop()
6480 status_t AudioFlinger::EffectModule::stop_l()
6510 status_t AudioFlinger::EffectModule::command(uint32_t cmdCode,
6540 status_t AudioFlinger::EffectModule::setEnabled(bool enabled)
6587 bool AudioFlinger::EffectModule::isEnabled()
6603 bool AudioFlinger::EffectModule::isProcessEnabled()
6619 status_t AudioFlinger::EffectModule::setVolume(uint32_t *left, uint32_t *right, bool controller)
6652 status_t AudioFlinger::EffectModule::setDevice(uint32_t device)
6696 status_t AudioFlinger::EffectModule::setMode(uint32_t mode)
6716 void AudioFlinger::EffectModule::setSuspended(bool suspended)
6721 bool AudioFlinger::EffectModule::suspended()
6727 status_t AudioFlinger::EffectModule::dump(int fd, const Vector<String16>& args)
6818 AudioFlinger::EffectHandle::EffectHandle(const sp<EffectModule>& effect,
7106 sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromDesc_l(effect_descriptor_t *descriptor)
7108 sp<EffectModule> effect;
7121 sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromId_l(int id)
7123 sp<EffectModule> effect;
7137 sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromType_l(
7140 sp<EffectModule> effect;
7197 status_t AudioFlinger::EffectChain::addEffect_l(const sp<EffectModule>& effect)
7217 // accumulation stage. Saturation is done in EffectModule::process() before
7311 size_t AudioFlinger::EffectChain::removeEffect_l(const sp<EffectModule>& effect)
7323 if (mEffects[i]->state() == EffectModule::ACTIVE ||
7324 mEffects[i]->state() == EffectModule::STOPPING) {
7445 sp<EffectModule> effect = mEffects[i];
7476 sp<EffectModule> effect = getEffectIfEnabled(type);
7495 sp<EffectModule> effect = desc->mEffect.promote();
7525 Vector< sp<EffectModule> > effects = getSuspendEligibleEffects();
7576 Vector< sp<AudioFlinger::EffectModule> > AudioFlinger::EffectChain::getSuspendEligibleEffects()
7578 Vector< sp<EffectModule> > effects;
7588 sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectIfEnabled(
7591 sp<EffectModule> effect;
7599 void AudioFlinger::EffectChain::checkSuspendOnEffectEnabled(const sp<EffectModule>& effect,