Home
last modified time | relevance | path

Searched refs:fOutChannel (Results 1 – 18 of 18) sorted by relevance

/dports/audio/sc3-plugins/sc3-plugins-Version-3.9.0/source/DEINDUGens/include/faust/audio/
H A Ddummy-audio.h68 FAUSTFLOAT** fOutChannel; variable
86 delete[] fOutChannel[i]; in ~dummyaudio()
90 delete [] fOutChannel; in ~dummyaudio()
99 fOutChannel = new FAUSTFLOAT*[fDSP->getNumOutputs()]; in init()
106 fOutChannel[i] = new FAUSTFLOAT[fBufferSize]; in init()
107 memset(fOutChannel[i], 0, sizeof(FAUSTFLOAT) * fBufferSize); in init()
124 fDSP->compute(fBufferSize, fInChannel, fOutChannel); in render()
137 …std::cout << std::fixed << std::setprecision(6) << "sample out " << fOutChannel[0][frame] << std::… in render()
140 …std::cout << std::fixed << std::setprecision(6) << "sample out " << fOutChannel[0][0] << std::endl; in render()
H A Djack-dsp.h198 float** fOutChannel = (float**)alloca(fOutputPorts.size() * sizeof(float*)); in process() local
200 fOutChannel[i] = (float*)jack_port_get_buffer(fOutputPorts[i], nframes); in process()
203 fDSP->compute(nframes, fInChannel, fOutChannel); in process()
526 float** fOutChannel = (float**)alloca(fOutputPorts.size() * sizeof(float*)); in processAudio() local
528 fOutChannel[i] = (float*)jack_port_get_buffer(fOutputPorts[i], nframes); in processAudio()
532 fDSP->compute(-1, nframes, fInChannel, fOutChannel); in processAudio()
H A Dcoreaudio-dsp.h229 float** fOutChannel; variable
974 fOutChannel[i] = (float*)ioData->mBuffers[i].mData; in Render()
976 …dioConvertHostTimeToNanos(inTimeStamp->mHostTime))/1000., inNumberFrames, fInChannel, fOutChannel); in Render()
990 fInChannel(0),fOutChannel(0), in TCoreAudioRenderer()
1053 fOutChannel = 0; in OpenDefault()
1076 fOutChannel = new float*[fDevNumOutChans]; in OpenDefault()
1403 delete[] fOutChannel; in Close()
H A Dcoreaudio-ios-dsp.h165 float* fOutChannel[fDevNumOutChans]; in Render() local
172 fOutChannel[chan] = (float*)ioData->mBuffers[chan].mData; in Render()
178 fDSP->compute((int)inNumberFrames, fInChannel, fOutChannel); in Render()
/dports/audio/faust/faust-2.37.3/architecture/faust/audio/
H A Ddummy-audio.h62 REAL** fOutChannel; variable
115 fInChannel(nullptr), fOutChannel(nullptr), in fSampleRate()
124 fInChannel(nullptr), fOutChannel(nullptr),
137 delete[] fOutChannel[i]; in ~dummyaudio_real()
140 delete [] fOutChannel; in ~dummyaudio_real()
152 fOutChannel = new REAL*[fNumOutputs]; in init()
159 fOutChannel[i] = new REAL[fBufferSize]; in init()
160 memset(fOutChannel[i], 0, sizeof(REAL) * fBufferSize); in init()
210 …fferSize, reinterpret_cast<FAUSTFLOAT**>(fInChannel), reinterpret_cast<FAUSTFLOAT**>(fOutChannel)); in render()
218 …std::cout << std::fixed << std::setprecision(6) << "sample out " << fOutChannel[0][frame] << std::… in render()
H A Desp32-dsp.h52 float** fOutChannel; variable
83 fDSP->compute(fBufferSize, fInChannel, fOutChannel); in audioTask()
90 samples_data_out[i*AUDIO_MAX_CHAN] = clip(fOutChannel[0][i]); in audioTask()
91 samples_data_out[i*AUDIO_MAX_CHAN+1] = clip(fOutChannel[1][i]); in audioTask()
96 samples_data_out[i*AUDIO_MAX_CHAN] = clip(fOutChannel[0][i]); in audioTask()
118 delete[] fOutChannel[i]; in destroy()
120 delete [] fOutChannel; in destroy()
150 fOutChannel(nullptr), in esp32audio()
242 fOutChannel = new FAUSTFLOAT*[fNumOutputs]; in init()
244 fOutChannel[i] = new FAUSTFLOAT[fBufferSize]; in init()
[all …]
H A Dteensy-dsp.h63 float** fOutChannel; variable
86 fDSP->compute(AUDIO_BLOCK_SAMPLES, fInChannel, fOutChannel); in updateImp()
93 int32_t val = fOutChannel[channel][i]*MULT_16; in updateImp()
117 delete[] fOutChannel[i]; in ~teensyaudio()
119 delete [] fOutChannel; in ~teensyaudio()
137 fOutChannel = new float*[fDSP->getNumOutputs()]; in init()
139 fOutChannel[i] = new float[AUDIO_BLOCK_SAMPLES]; in init()
142 fOutChannel = NULL; in init()
H A Djack-dsp.h181 float** fOutChannel = (float**)alloca(fOutputPorts.size() * sizeof(float*)); in process() local
183 fOutChannel[i] = (float*)jack_port_get_buffer(fOutputPorts[i], nframes); in process()
186 …(nframes, reinterpret_cast<FAUSTFLOAT**>(fInChannel), reinterpret_cast<FAUSTFLOAT**>(fOutChannel)); in process()
478 float** fOutChannel = (float**)alloca(fOutputPorts.size() * sizeof(float*)); in processAudio() local
480 fOutChannel[i] = (float*)jack_port_get_buffer(fOutputPorts[i], nframes); in processAudio()
484 … nframes, reinterpret_cast<FAUSTFLOAT**>(fInChannel), reinterpret_cast<FAUSTFLOAT**>(fOutChannel)); in processAudio()
H A Dcoreaudio-dsp.h221 float** fOutChannel; variable
988 fOutChannel[i] = (float*)ioData->mBuffers[i].mData; in Render()
993 …dioConvertHostTimeToNanos(inTimeStamp->mHostTime))/1000., inNumberFrames, fInChannel, fOutChannel); in Render()
1011 fInChannel(0),fOutChannel(0), in TCoreAudioRenderer()
1076 fOutChannel = 0; in OpenDefault()
1099 fOutChannel = new float*[fDevNumOutChans]; in OpenDefault()
1427 delete[] fOutChannel; in Close()
H A Dcoreaudio-ios-dsp.h150 float* fOutChannel[fDevNumOutChans]; in Render() local
157 fOutChannel[chan] = (float*)ioData->mBuffers[chan].mData; in Render()
160 fDSP->compute((int)inNumberFrames, fInChannel, fOutChannel); in Render()
/dports/audio/faust/faust-2.37.3/tests/osc-tests/
H A Doscmin.cpp71 FAUSTFLOAT** fOutChannel; member in dummyaudio
80 fInChannel(0), fOutChannel(0) in dummyaudio()
88 delete[] fOutChannel[i]; in ~dummyaudio()
91 delete [] fOutChannel; in ~dummyaudio()
104 fOutChannel = new FAUSTFLOAT*[fDSP->getNumOutputs()]; in init()
111 fOutChannel[i] = new FAUSTFLOAT[fBufferSize]; in init()
112 memset(fOutChannel[i], 0, sizeof(FAUSTFLOAT) * fBufferSize); in init()
122 fDSP->compute(fBufferSize, fInChannel, fOutChannel); in render()
125 …std::cout << frame << ":\t" << std::fixed << std::setprecision(6) << fOutChannel[0][frame] << std:… in render()
/dports/audio/faust/faust-2.37.3/architecture/teensy/
H A Dteensy.cpp125 fOutChannel = new float*[fDSP->getNumOutputs()]; in AudioFaust()
127 fOutChannel[i] = new float[AUDIO_BLOCK_SAMPLES]; in AudioFaust()
130 fOutChannel = NULL; in AudioFaust()
150 delete[] fOutChannel[i]; in ~AudioFaust()
152 delete [] fOutChannel; in ~AudioFaust()
185 fDSP->compute(AUDIO_BLOCK_SAMPLES, fInChannel, fOutChannel); in updateImp()
192 int32_t val = fOutChannel[channel][i]*MULT_16; in updateImp()
H A Dteensy.h60 float** fOutChannel; variable
/dports/audio/jack/jack2-eaedec353489f26617221d66f80fd2503953c663/macosx/coreaudio/
H A DTiPhoneCoreAudioRenderer.h48 float* fOutChannel[MAX_CHANNELS]; variable
65 memset(fOutChannel, 0, sizeof(float*) * MAX_CHANNELS); in TiPhoneCoreAudioRenderer()
72 fOutChannel[i] = new float[8192]; in TiPhoneCoreAudioRenderer()
83 delete[] fOutChannel[i]; in ~TiPhoneCoreAudioRenderer()
109 fAudioCallback(frames, fInChannel, fOutChannel, fCallbackArg); in PerformAudioCallback()
H A DTiPhoneCoreAudioRenderer.mm98 … ((int*)ioData->mBuffers[chan].mData)[frame] = int(renderer->fOutChannel[chan][frame] * coef);
/dports/audio/faustlive/faustlive-2.5.7/src/Audio/CA/
H A DCA_audioFader.h42 fOutChannel[i] = (float*)ioData->mBuffers[i].mData; in Render()
44 …dioConvertHostTimeToNanos(inTimeStamp->mHostTime))/1000., inNumberFrames, fInChannel, fOutChannel); in Render()
47 crossfade_Calcul(inNumberFrames, fDevNumOutChans, fOutChannel); in Render()
/dports/audio/faust/faust-2.37.3/architecture/unsupported-arch/
H A Diphone-cocoa.cpp132 float* fOutChannel[MAX_CHANNELS]; member in TiPhoneCoreAudioRenderer
149 memset(fOutChannel, 0, sizeof(float*) * MAX_CHANNELS); in TiPhoneCoreAudioRenderer()
156 fOutChannel[i] = new float[8192]; in TiPhoneCoreAudioRenderer()
167 delete[] fOutChannel[i]; in ~TiPhoneCoreAudioRenderer()
269 DSP.compute((int)inNumberFrames, renderer->fInChannel, renderer->fOutChannel); in Render()
273 … ((long*)ioData->mBuffers[chan].mData)[frame] = long(renderer->fOutChannel[chan][frame] * coef); in Render()
/dports/audio/faust/faust-2.37.3/architecture/
H A Djack-internal.cpp383 float* fOutChannel[256]; member
467 obj->fOutChannel[i] = (float *)jack_port_get_buffer(obj->fOutputPorts[i], nframes); in process()
469 obj->fDSP.compute(nframes, obj->fInChannel, obj->fOutChannel); in process()