Home
last modified time | relevance | path

Searched refs:EngineChannel (Results 1 – 25 of 99) sorted by relevance

1234

/dports/audio/linuxsampler/linuxsampler-2.2.0/src/engines/
H A DEngineChannel.cpp38 struct EngineChannel::private_data_t {
64 EngineChannel::EngineChannel() : p(new private_data_t) { in EngineChannel() function in LinuxSampler::EngineChannel
81 EngineChannel::~EngineChannel() { in ~EngineChannel()
111 int EngineChannel::GetMute() { in GetMute()
115 void EngineChannel::SetSolo(bool solo) { in SetSolo()
121 bool EngineChannel::GetSolo() { in GetSolo()
143 uint8_t EngineChannel::GetMidiProgram() { in GetMidiProgram()
284 int EngineChannel::GetMidiRpnData() { in GetMidiRpnData()
344 int EngineChannel::GetMidiNrpnData() { in GetMidiNrpnData()
349 uint EngineChannel::GetVoiceCount() { in GetVoiceCount()
[all …]
H A DEngineChannelFactory.cpp36 const EngineChannel* pChannel;
39 LockedChannel(const EngineChannel* pChannel) { in LockedChannel()
47 void Add(const EngineChannel* pChannel) { in Add()
51 bool IsDestroyed(const EngineChannel* pChannel) { in IsDestroyed()
63 void Remove(const EngineChannel* pChannel) { in Remove()
73 bool Contains(const EngineChannel* pChannel) { in Contains()
80 LockedChannel* get(const EngineChannel* pChannel) { in get()
113 LinuxSampler::EngineChannel* pEngineChannel; in Create()
115 pEngineChannel = new gig::EngineChannel; in Create()
118 pEngineChannel = new sf2::EngineChannel; in Create()
[all …]
H A DAbstractEngine.h118 … ArrayList<EngineChannel*> engineChannels; ///< All engine channels of a Engine instance.
135 void RouteAudio(EngineChannel* pEngineChannel, uint Samples);
136 …void RouteDedicatedVoiceChannels(EngineChannel* pEngineChannel, optional<float> FxSendLevels[2], u…
150 … virtual void KillAllVoices(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itKillEvent) = 0;
151 …virtual void ProcessNoteOn(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itNoteOnEvent) = …
152 …virtual void ProcessNoteOff(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itNoteOffEvent) …
153 …virtual void ProcessControlChange(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itControlC…
154 …virtual void ProcessChannelPressure(EngineChannel* pEngineChannel, Pool<Event>::Iterator& itChanne…
155 …virtual void ProcessPolyphonicKeyPressure(EngineChannel* pEngineChannel, Pool<Event>::Iterator& it…
156 …virtual void ProcessReleaseTriggerBySustain(EngineChannel* pEngineChannel, RTList<Event>::Iterator…
[all …]
H A DEngineChannelFactory.h44 static EngineChannel* Create(String EngineType) throw (Exception);
49 static void Destroy(EngineChannel* pEngineChannel);
54 static const std::set<EngineChannel*>& EngineChannelInstances();
62 static void SetDeleteEnabled(const EngineChannel* pEngineChannel, bool enable);
H A DFxSend.h36 class EngineChannel; variable
73 … FxSend(EngineChannel* pEngineChannel, uint8_t MidiCtrl, String Name = "") throw (Exception);
221 EngineChannel* pEngineChannel;
/dports/audio/mixxx/mixxx-2.3.0/src/engine/channels/
H A Denginechannel.cpp7 EngineChannel::EngineChannel(const ChannelHandleAndGroup& handle_group, in EngineChannel() function in EngineChannel
45 EngineChannel::~EngineChannel() { in ~EngineChannel()
56 void EngineChannel::setPfl(bool enabled) { in setPfl()
60 bool EngineChannel::isPflEnabled() const { in isPflEnabled()
64 void EngineChannel::setMaster(bool enabled) { in setMaster()
68 bool EngineChannel::isMasterEnabled() const { in isMasterEnabled()
72 void EngineChannel::setTalkover(bool enabled) { in setTalkover()
76 bool EngineChannel::isTalkoverEnabled() const { in isTalkoverEnabled()
80 void EngineChannel::slotOrientationLeft(double v) { in slotOrientationLeft()
86 void EngineChannel::slotOrientationRight(double v) { in slotOrientationRight()
[all …]
/dports/audio/linuxsampler/linuxsampler-2.2.0/src/drivers/midi/
H A DMidiInputPort.cpp112 std::set<EngineChannel*>::iterator engineiter = midiChannelMap[MidiChannel].begin(); in DispatchNoteOn()
113 std::set<EngineChannel*>::iterator end = midiChannelMap[MidiChannel].end(); in DispatchNoteOn()
119 std::set<EngineChannel*>::iterator end = midiChannelMap[midi_chan_all].end(); in DispatchNoteOn()
144 std::set<EngineChannel*>::iterator end = midiChannelMap[MidiChannel].end(); in DispatchNoteOn()
169 std::set<EngineChannel*>::iterator end = midiChannelMap[MidiChannel].end(); in DispatchNoteOff()
194 std::set<EngineChannel*>::iterator end = midiChannelMap[MidiChannel].end(); in DispatchNoteOff()
219 std::set<EngineChannel*>::iterator end = midiChannelMap[MidiChannel].end(); in DispatchPitchbend()
237 std::set<EngineChannel*>::iterator end = midiChannelMap[MidiChannel].end(); in DispatchPitchbend()
255 std::set<EngineChannel*>::iterator end = midiChannelMap[MidiChannel].end(); in DispatchChannelPressure()
591 void MidiInputPort::Connect(EngineChannel* pEngineChannel, midi_chan_t MidiChannel) { in Connect()
[all …]
/dports/audio/linuxsampler/linuxsampler-2.2.0/src/engines/sf2/
H A DEngine.cpp39 LinuxSampler::EngineChannel* pEngineChannel, in ProcessControlChange()
44 EngineChannel* pChannel = dynamic_cast<EngineChannel*>(pEngineChannel); in ProcessControlChange()
61 …void Engine::ProcessChannelPressure(LinuxSampler::EngineChannel* pEngineChannel, Pool<Event>::Iter… in ProcessChannelPressure()
68 …void Engine::ProcessPolyphonicKeyPressure(LinuxSampler::EngineChannel* pEngineChannel, Pool<Event>… in ProcessPolyphonicKeyPressure()
81 LinuxSampler::EngineChannel* pEngineChannel, in TriggerNewVoices()
90 EngineChannel* pChannel = static_cast<EngineChannel*>(pEngineChannel); in TriggerNewVoices()
125 LinuxSampler::EngineChannel* pEngineChannel, in TriggerReleaseVoices()
132 LinuxSampler::EngineChannel* pEngineChannel, in LaunchVoice()
139 EngineChannel* pChannel = static_cast<EngineChannel*>(pEngineChannel); in LaunchVoice()
H A DEngineChannel.cpp30 EngineChannel::EngineChannel() { in EngineChannel() function in LinuxSampler::sf2::EngineChannel
35 EngineChannel::~EngineChannel() { in ~EngineChannel()
46 AbstractEngine::Format EngineChannel::GetEngineFormat() { return AbstractEngine::SF2; } in GetEngineFormat()
49 void EngineChannel::ResetInternal(bool bResetEngine) { in ResetInternal()
63 void EngineChannel::SendProgramChange(uint8_t Program) { in SendProgramChange()
84 void EngineChannel::LoadInstrument() { in LoadInstrument()
154 void EngineChannel::ProcessKeySwitchChange(int key) { } in ProcessKeySwitchChange()
H A DEngine.h52 LinuxSampler::EngineChannel* pEngineChannel,
55 …virtual void ProcessChannelPressure(LinuxSampler::EngineChannel* pEngineChannel, Pool<Event>::Iter…
56 …virtual void ProcessPolyphonicKeyPressure(LinuxSampler::EngineChannel* pEngineChannel, Pool<Event>…
64 LinuxSampler::EngineChannel* pEngineChannel,
73 LinuxSampler::EngineChannel* pEngineChannel,
79 LinuxSampler::EngineChannel* pEngineChannel,
H A DEngineChannel.h43 … class EngineChannel: public LinuxSampler::EngineChannelBase<Voice, ::sf2::Region, ::sf2::Preset> {
56 EngineChannel();
57 virtual ~EngineChannel();
/dports/audio/linuxsampler/linuxsampler-2.2.0/src/engines/sfz/
H A DEngineChannel.cpp30 EngineChannel::EngineChannel() { in EngineChannel() function in LinuxSampler::sfz::EngineChannel
36 EngineChannel::~EngineChannel() { in ~EngineChannel()
48 AbstractEngine::Format EngineChannel::GetEngineFormat() { return AbstractEngine::SFZ; } in GetEngineFormat()
51 void EngineChannel::ResetInternal(bool bResetEngine) { in ResetInternal()
65 void EngineChannel::SendProgramChange(uint8_t Program) { in SendProgramChange()
86 void EngineChannel::LoadInstrument() { in LoadInstrument()
186 void EngineChannel::ProcessKeySwitchChange(int key) { } in ProcessKeySwitchChange()
188 void EngineChannel::PreProcessNoteOn(uint8_t key, uint8_t velocity) { in PreProcessNoteOn()
193 void EngineChannel::PostProcessNoteOn(uint8_t key, uint8_t velocity) { in PostProcessNoteOn()
197 void EngineChannel::PreProcessNoteOff(uint8_t key, uint8_t velocity) { in PreProcessNoteOff()
H A DEngine.cpp77 LinuxSampler::EngineChannel* pEngineChannel, in ProcessControlChange()
83 EngineChannel* pChannel = static_cast<EngineChannel*>(pEngineChannel); in ProcessControlChange()
142 …void Engine::ProcessChannelPressure(LinuxSampler::EngineChannel* pEngineChannel, Pool<Event>::Iter… in ProcessChannelPressure()
149 …void Engine::ProcessPolyphonicKeyPressure(LinuxSampler::EngineChannel* pEngineChannel, Pool<Event>… in ProcessPolyphonicKeyPressure()
162 LinuxSampler::EngineChannel* pEngineChannel, in TriggerNewVoices()
171 EngineChannel* pChannel = static_cast<EngineChannel*>(pEngineChannel); in TriggerNewVoices()
210 LinuxSampler::EngineChannel* pEngineChannel, in TriggerReleaseVoices()
218 EngineChannel* pChannel = static_cast<EngineChannel*>(pEngineChannel); in TriggerReleaseVoices()
255 LinuxSampler::EngineChannel* pEngineChannel, in LaunchVoice()
262 EngineChannel* pChannel = static_cast<EngineChannel*>(pEngineChannel); in LaunchVoice()
H A DEngine.h49 LinuxSampler::EngineChannel* pEngineChannel,
52 …virtual void ProcessChannelPressure(LinuxSampler::EngineChannel* pEngineChannel, Pool<Event>::Iter…
53 …virtual void ProcessPolyphonicKeyPressure(LinuxSampler::EngineChannel* pEngineChannel, Pool<Event>…
68 LinuxSampler::EngineChannel* pEngineChannel,
77 LinuxSampler::EngineChannel* pEngineChannel,
83 LinuxSampler::EngineChannel* pEngineChannel,
H A DEngineChannel.h36 …class EngineChannel: public LinuxSampler::EngineChannelBase<Voice, ::sfz::Region, ::sfz::Instrumen…
54 EngineChannel();
55 virtual ~EngineChannel();
/dports/audio/linuxsampler/linuxsampler-2.2.0/src/engines/gig/
H A DEngineChannel.cpp30 EngineChannel::EngineChannel() { in EngineChannel() function in LinuxSampler::gig::EngineChannel
34 EngineChannel::~EngineChannel() { in ~EngineChannel()
45 AbstractEngine::Format EngineChannel::GetEngineFormat() { return AbstractEngine::GIG; } in GetEngineFormat()
48 void EngineChannel::ResetInternal(bool bResetEngine) { in ResetInternal()
61 void EngineChannel::SendProgramChange(uint8_t Program) { in SendProgramChange()
82 void EngineChannel::LoadInstrument() { in LoadInstrument()
182 void EngineChannel::reloadScript(::gig::Script* script) { in reloadScript()
201 void EngineChannel::ProcessKeySwitchChange(int key) { in ProcessKeySwitchChange()
210 String EngineChannel::InstrumentFileName() { in InstrumentFileName()
214 String EngineChannel::InstrumentFileName(int index) { in InstrumentFileName()
H A DEngine.h53 LinuxSampler::EngineChannel* pEngineChannel,
56 …virtual void ProcessChannelPressure(LinuxSampler::EngineChannel* pEngineChannel, Pool<Event>::Iter…
57 …virtual void ProcessPolyphonicKeyPressure(LinuxSampler::EngineChannel* pEngineChannel, Pool<Event>…
65 LinuxSampler::EngineChannel* pEngineChannel,
74 LinuxSampler::EngineChannel* pEngineChannel,
80 LinuxSampler::EngineChannel* pEngineChannel,
H A DEngine.cpp46 LinuxSampler::EngineChannel* pEngineChannel, in ProcessControlChange()
51 EngineChannel* pChannel = dynamic_cast<EngineChannel*>(pEngineChannel); in ProcessControlChange()
119 …void Engine::ProcessChannelPressure(LinuxSampler::EngineChannel* pEngineChannel, Pool<Event>::Iter… in ProcessChannelPressure()
126 …void Engine::ProcessPolyphonicKeyPressure(LinuxSampler::EngineChannel* pEngineChannel, Pool<Event>… in ProcessPolyphonicKeyPressure()
139 LinuxSampler::EngineChannel* pEngineChannel, in TriggerNewVoices()
149 EngineChannel* pChannel = static_cast<EngineChannel*>(pEngineChannel); in TriggerNewVoices()
171 LinuxSampler::EngineChannel* pEngineChannel, in TriggerReleaseVoices()
180 EngineChannel* pChannel = static_cast<EngineChannel*>(pEngineChannel); in TriggerReleaseVoices()
205 LinuxSampler::EngineChannel* pEngineChannel, in LaunchVoice()
218 EngineChannel* pChannel = static_cast<EngineChannel*>(pEngineChannel); in LaunchVoice()
H A DInstrumentResourceManager.cpp252 std::set<EngineChannel*> engineChannels = in LaunchInstrumentEditor()
254 std::set<EngineChannel*>::iterator iter = engineChannels.begin(); in LaunchInstrumentEditor()
255 std::set<EngineChannel*>::iterator end = engineChannels.end(); in LaunchInstrumentEditor()
304 std::set<EngineChannel*> engineChannels = in OnInstrumentEditorQuit()
480 std::set<EngineChannel*> engineChannels = in OnDataStructureChanged()
756 std::set<EngineChannel*> result; in GetEngineChannelsUsingScriptSourceCode()
765 EngineChannel* pEngineChannel = dynamic_cast<EngineChannel*>(*iter); in GetEngineChannelsUsingScriptSourceCode()
783 std::set<EngineChannel*> result; in GetEngineChannelsUsing()
788 EngineChannel* pEngineChannel = dynamic_cast<EngineChannel*>(*iter); in GetEngineChannelsUsing()
811 EngineChannel* pEngineChannel = dynamic_cast<EngineChannel*>(*iter); in GetEnginesUsing()
[all …]
H A DEngineChannel.h43 …class EngineChannel: public LinuxSampler::EngineChannelBase<Voice, ::gig::DimensionRegion, ::gig::…
60 EngineChannel();
61 virtual ~EngineChannel();
/dports/audio/mixxx/mixxx-2.3.0/src/engine/
H A Denginemaster.cpp62 m_bBusOutputConnected[EngineChannel::LEFT] = false; in EngineMaster()
63 m_bBusOutputConnected[EngineChannel::CENTER] = false; in EngineMaster()
64 m_bBusOutputConnected[EngineChannel::RIGHT] = false; in EngineMaster()
150 for (int o = EngineChannel::LEFT; o <= EngineChannel::RIGHT; ++o) { in EngineMaster()
240 for (int o = EngineChannel::LEFT; o <= EngineChannel::RIGHT; o++) { in ~EngineMaster()
276 m_activeBusChannels[EngineChannel::LEFT].clear(); in processChannels()
278 m_activeBusChannels[EngineChannel::RIGHT].clear(); in processChannels()
510 for (int o = EngineChannel::LEFT; o <= EngineChannel::RIGHT; o++) { in process()
524 m_pOutputBusBuffers[EngineChannel::LEFT], in process()
852 if (i <= EngineChannel::RIGHT) { in getOutputBusBuffer()
[all …]
H A Denginemaster.h18 class EngineChannel; variable
73 void addChannel(EngineChannel* pChannel);
74 EngineChannel* getChannel(const QString& group);
75 static inline CSAMPLE_GAIN gainForOrientation(EngineChannel::ChannelOrientation orientation, in gainForOrientation()
80 case EngineChannel::LEFT: in gainForOrientation()
82 case EngineChannel::RIGHT: in gainForOrientation()
84 case EngineChannel::CENTER: in gainForOrientation()
119 EngineChannel* m_pChannel;
/dports/audio/mixxx/mixxx-2.3.0/src/test/
H A Denginemastertest.cpp20 class EngineChannelMock : public EngineChannel {
58 "[Test1]", EngineChannel::CENTER, m_pEngineMaster); in TEST_F()
95 "[Test1]", EngineChannel::CENTER, m_pEngineMaster); in TEST_F()
132 "[Test1]", EngineChannel::CENTER, m_pEngineMaster); in TEST_F()
135 "[Test2]", EngineChannel::CENTER, m_pEngineMaster); in TEST_F()
189 "[Test1]", EngineChannel::CENTER, m_pEngineMaster); in TEST_F()
192 "[Test2]", EngineChannel::CENTER, m_pEngineMaster); in TEST_F()
246 "[Test1]", EngineChannel::CENTER, m_pEngineMaster); in TEST_F()
249 "[Test2]", EngineChannel::CENTER, m_pEngineMaster); in TEST_F()
252 "[Test3]", EngineChannel::CENTER, m_pEngineMaster); in TEST_F()
[all …]
/dports/audio/linuxsampler/linuxsampler-2.2.0/src/plugins/
H A DInstrumentEditor.h34 class EngineChannel; variable
210 …void Launch(EngineChannel* pEngineChannel, void* pInstrument, String sTypeName, String sTypeVersio…
217 EngineChannel* GetEngineChannel();
249 EngineChannel* pEngineChannel;
/dports/audio/mixxx/mixxx-2.3.0/src/engine/sync/
H A Dsynccontrol.h9 class EngineChannel; variable
24 EngineChannel* pChannel, SyncableListener* pEngineSync);
28 EngineChannel* getChannel() const override { return m_pChannel; } in getChannel()
98 EngineChannel* m_pChannel;

1234