mirror of
https://git.freebsd.org/ports.git
synced 2025-07-14 07:49:16 -04:00
Rename them to follow the make makepatch naming, and regenerate them. With hat: portmgr Sponsored by: Absolight
11 lines
656 B
C++
11 lines
656 B
C++
--- creox/effects_dsp/echoprocessor.cpp.orig 2011-06-21 21:27:40 UTC
|
|
+++ creox/effects_dsp/echoprocessor.cpp
|
|
@@ -221,7 +221,7 @@ void EchoProcessor::signalFlow_run(const
|
|
parallelEchoes += parEcho * m_parallelEchoParam[count].decay_f;
|
|
#ifdef FP_FAST_FMAF
|
|
*(m_parallelEchoChain[count].buffer + m_parallelEchoChain[count].offset) =
|
|
- std::fmaf(parEcho, m_parallelEchoParam[count].feedback_f, inputSample);
|
|
+ fmaf(parEcho, m_parallelEchoParam[count].feedback_f, inputSample);
|
|
#else
|
|
*(m_parallelEchoChain[count].buffer + m_parallelEchoChain[count].offset) =
|
|
inputSample + (parEcho * m_parallelEchoParam[count].feedback_f);
|