Home
last modified time | relevance | path

Searched refs:pSyncable (Results 1 – 6 of 6) sorted by relevance

/dports/audio/mixxx/mixxx-2.3.0/src/engine/sync/
H A Denginesync.cpp47 if (pSyncable->isPlaying() && pSyncable->isAudible()) { in pickMaster()
91 setMasterParams(pSyncable, pSyncable->getBeatDistance(), in requestSyncMode()
92 pSyncable->getBaseBpm(), pSyncable->getBpm()); in requestSyncMode()
113 deactivateSync(pSyncable); in requestSyncMode()
163 deactivateSync(pSyncable); in requestEnableSync()
224 if (newMaster != pSyncable) { in requestEnableSync()
258 pSyncable->requestSync(); in notifyPlayingAudible()
263 Q_UNUSED(pSyncable); in notifyScratching()
274 setMasterBpm(pSyncable, bpm); in notifyBpmChanged()
325 if (pSyncable == nullptr) { in activateFollower()
[all …]
H A Dbasesyncablelistener.cpp29 if (m_syncables.contains(pSyncable)) { in addSyncableDeck()
33 m_syncables.append(pSyncable); in addSyncableDeck()
51 return pSyncable; in getSyncableForGroup()
59 if (pSyncable->isSynchronized() && pSyncable->getBaseBpm() > 0) { in syncDeckExists()
93 if (pSyncable == pSource || in setMasterBpm()
97 pSyncable->setMasterBpm(bpm); in setMasterBpm()
106 if (pSyncable == pSource || in setMasterInstantaneousBpm()
119 if (pSyncable == pSource || in setMasterBeatDistance()
134 if (pSyncable == pSource || in setMasterParams()
150 if (pSyncable->isPlaying()) { in checkUniquePlayingSyncable()
[all …]
H A Denginesync.h19 void requestSyncMode(Syncable* pSyncable, SyncMode state) override;
23 void requestEnableSync(Syncable* pSyncable, bool enabled) override;
28 void notifyBpmChanged(Syncable* pSyncable, double bpm) override;
29 void requestBpmUpdate(Syncable* pSyncable, double bpm) override;
30 void notifyInstantaneousBpmChanged(Syncable* pSyncable, double bpm) override;
31 void notifyBeatDistanceChanged(Syncable* pSyncable, double beatDistance) override;
32 void notifyPlayingAudible(Syncable* pSyncable, bool playingAudible) override;
33 void notifyScratching(Syncable* pSyncable, bool scratching) override;
61 void activateMaster(Syncable* pSyncable, bool explicitMaster);
65 void activateFollower(Syncable* pSyncable);
[all …]
H A Dsyncable.h107 virtual void requestSyncMode(Syncable* pSyncable, SyncMode mode) = 0;
111 virtual void requestEnableSync(Syncable* pSyncable, bool enabled) = 0;
115 virtual void notifyBpmChanged(Syncable* pSyncable, double bpm) = 0;
116 virtual void requestBpmUpdate(Syncable* pSyncable, double bpm) = 0;
121 virtual void notifyInstantaneousBpmChanged(Syncable* pSyncable, double bpm) = 0;
124 virtual void notifyScratching(Syncable* pSyncable, bool scratching) = 0;
129 Syncable* pSyncable, double beatDistance) = 0;
131 virtual void notifyPlayingAudible(Syncable* pSyncable, bool playingAudible) = 0;
H A Dbasesyncablelistener.h19 void addSyncableDeck(Syncable* pSyncable);
/dports/audio/mixxx/mixxx-2.3.0/src/engine/controls/
H A Denginecontrol.cpp109 Syncable* pSyncable = pEngineSync->pickNonSyncSyncTarget(pThisChannel); in pickSyncTarget() local
112 if (pSyncable) { in pickSyncTarget()
113 return pSyncable->getChannel()->getEngineBuffer(); in pickSyncTarget()