Home
last modified time | relevance | path

Searched refs:SynthesisMode (Results 1 – 5 of 5) sorted by relevance

/dports/audio/linuxsampler/linuxsampler-2.2.0/src/engines/gig/
H A DSynthesizer.cpp164 void* GetSynthesisFunction(int SynthesisMode) { in GetSynthesisFunction() argument
166 switch (SynthesisMode) { in GetSynthesisFunction()
200 …std::cerr << "gig::Synthesizer: Invalid Synthesis Mode: " << SynthesisMode << std::endl << std::fl… in GetSynthesisFunction()
206 void RunSynthesisFunction(const int SynthesisMode, SynthesisParam* pFinalParam, Loop* pLoop) { in RunSynthesisFunction() argument
207 SynthesizeFragment_Fn* f = (SynthesizeFragment_Fn*) GetSynthesisFunction(SynthesisMode); in RunSynthesisFunction()
H A DSynthesizer.h55 void* GetSynthesisFunction(const int SynthesisMode);
56 void RunSynthesisFunction(const int SynthesisMode, SynthesisParam* pFinalParam, Loop* pLoop);
/dports/audio/linuxsampler/linuxsampler-2.2.0/src/engines/common/
H A DAbstractVoice.cpp36 SynthesisMode = 0; // set all mode bits to 0 first in AbstractVoice()
39 …SYNTHESIS_MODE_SET_IMPLEMENTATION(SynthesisMode, Features::supportsMMX() && Features::supportsSSE(… in AbstractVoice()
41 SYNTHESIS_MODE_SET_IMPLEMENTATION(SynthesisMode, false); in AbstractVoice()
43 SYNTHESIS_MODE_SET_PROFILING(SynthesisMode, gig::Profiler::isEnabled()); in AbstractVoice()
148 SYNTHESIS_MODE_SET_CHANNELS(SynthesisMode, SmplInfo.ChannelCount == 2); in Trigger()
150 SYNTHESIS_MODE_SET_BITDEPTH24(SynthesisMode, SmplInfo.BitDepth == 24); in Trigger()
336 SYNTHESIS_MODE_SET_FILTER(SynthesisMode, bUseFilter); in Trigger()
528 (SYNTHESIS_MODE_GET_FILTER(SynthesisMode) && in Synthesize()
604 if (SYNTHESIS_MODE_GET_FILTER(SynthesisMode)) { in Synthesize()
614 SYNTHESIS_MODE_SET_INTERPOLATE(SynthesisMode, bResamplingRequired); in Synthesize()
[all …]
H A DVoiceBase.h118 SYNTHESIS_MODE_SET_LOOP(SynthesisMode, false); in Render()
127 … if (RAMLoop) SYNTHESIS_MODE_SET_LOOP(SynthesisMode, true); // enable looping in Render()
H A DAbstractVoice.h147 int SynthesisMode; variable