Home
last modified time | relevance | path

Searched refs:EffectChain (Results 1 – 8 of 8) sorted by relevance

/frameworks/av/services/audioflinger/
DEffects.cpp1397 void AudioFlinger::EffectChain::setVolumeForOutput_l(uint32_t left, uint32_t right) in setVolumeForOutput_l()
1940 AudioFlinger::EffectChain::EffectChain(ThreadBase *thread, in EffectChain() function in android::AudioFlinger::EffectChain
1955 AudioFlinger::EffectChain::~EffectChain() in ~EffectChain()
1960 sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromDesc_l( in getEffectFromDesc_l()
1974 sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromId_l(int id) in getEffectFromId_l()
1988 sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromType_l( in getEffectFromType_l()
2001 std::vector<int> AudioFlinger::EffectChain::getEffectIds() in getEffectIds()
2011 void AudioFlinger::EffectChain::clearInputBuffer() in clearInputBuffer()
2018 void AudioFlinger::EffectChain::clearInputBuffer_l() in clearInputBuffer_l()
2031 void AudioFlinger::EffectChain::process_l() in process_l()
[all …]
DEffects.h65 virtual wp<EffectChain> chain() const = 0;
402 class EffectChain : public RefBase {
404 EffectChain(const wp<ThreadBase>& wThread, audio_session_t sessionId);
405 EffectChain(ThreadBase *thread, audio_session_t sessionId);
406 virtual ~EffectChain();
516 EffectCallback(EffectChain *chain, ThreadBase *thread, AudioFlinger *audioFlinger) in EffectCallback()
550 wp<EffectChain> chain() const override { return mChain; } in chain()
556 wp<EffectChain> mChain;
562 DISALLOW_COPY_AND_ASSIGN(EffectChain);
690 wp<EffectChain> chain() const override { return nullptr; } in chain()
DThreads.h358 sp<EffectChain> getEffectChain(audio_session_t sessionId);
360 sp<EffectChain> getEffectChain_l(audio_session_t sessionId) const;
363 virtual status_t addEffectChain_l(const sp<EffectChain>& chain) = 0;
365 virtual size_t removeEffectChain_l(const sp<EffectChain>& chain) = 0;
370 void lockEffectChains_l(Vector< sp<EffectChain> >& effectChains);
372 void unlockEffectChains(const Vector< sp<EffectChain> >& effectChains);
374 Vector< sp<EffectChain> > getEffectChains_l() const { return mEffectChains; }; in getEffectChains_l()
496 void checkSuspendOnAddEffectChain_l(const sp<EffectChain>& chain);
559 Vector< sp<EffectChain> > mEffectChains;
881 virtual status_t addEffectChain_l(const sp<EffectChain>& chain);
[all …]
DAudioFlinger.cpp2058 sp<EffectChain> chain = getOrphanEffectChain_l(sessionId); in createRecord()
2613 Vector< sp<EffectChain> > effectChains = playbackThread->getEffectChains_l(); in closeOutput_nonvirtual()
2837 sp<EffectChain> chain; in closeInput_nonvirtual()
2840 Vector< sp<EffectChain> > effectChains = recordThread->getEffectChains_l(); in closeInput_nonvirtual()
3027 Vector< sp<EffectChain> > chains; in purgeStaleEffects_l()
3034 sp<EffectChain> ec = t->mEffectChains[j]; in purgeStaleEffects_l()
3045 sp<EffectChain> ec = t->mEffectChains[j]; in purgeStaleEffects_l()
3054 sp<EffectChain> ec = t->mEffectChains[j]; in purgeStaleEffects_l()
3060 sp<EffectChain> ec = chains[i]; in purgeStaleEffects_l()
3593 sp<EffectChain> chain = getOrphanEffectChain_l(sessionId); in createEffect()
[all …]
DThreads.cpp911 sp<EffectChain> chain = mEffectChains[i]; in dumpEffectChains_l()
1053 sp<EffectChain> chain = getEffectChain_l(sessionId); in setEffectSuspended_l()
1065 void AudioFlinger::ThreadBase::checkSuspendOnAddEffectChain_l(const sp<EffectChain>& chain) in checkSuspendOnAddEffectChain_l()
1078 if (sessionEffects.keyAt(i) == EffectChain::kKeyForSuspendAll) { in checkSuspendOnAddEffectChain_l()
1111 int key = EffectChain::kKeyForSuspendAll; in updateSuspendedSessions_l()
1338 sp<EffectChain> chain; in createEffect_l()
1364 chain = new EffectChain(this, sessionId); in createEffect_l()
1478 sp<EffectChain> chain = getEffectChain_l(sessionId); in getEffect_l()
1484 sp<EffectChain> chain = getEffectChain_l(sessionId); in getEffectIds_l()
1494 sp<EffectChain> chain = getEffectChain_l(sessionId); in addEffect_l()
[all …]
DAudioFlinger.h546 class EffectChain; variable
760 status_t putOrphanEffectChain_l(const sp<EffectChain>& chain);
763 sp<EffectChain> getOrphanEffectChain_l(audio_session_t session);
895 DefaultKeyedVector< audio_session_t , sp<EffectChain> > mOrphanEffectChains;
DDeviceEffectManager.h189 wp<EffectChain> chain() const override { return nullptr; } in chain()
DTracks.cpp915 sp<EffectChain> ec = thread->getEffectChain_l(mSessionId); in start()