diff options
author | Rene Ladan <rene@FreeBSD.org> | 2018-12-31 13:37:58 +0000 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2018-12-31 13:37:58 +0000 |
commit | d1a5353b9cccb568b52fb525175941ad0b8a0345 (patch) | |
tree | 25abb8f5b9cdfd31fb9d446791a87606bf77ff0b /audio/creox/files/patch-creox_effects__dsp_tremoloprocessor.cpp | |
parent | cad/z88: update 13.0 -> 15 (diff) |
Remove expired ports:
2018-12-31 net/libsrtp: Superseded by libsrtp2
2018-12-31 x11-toolkits/wlc: Deprecated upstream
2018-12-31 japanese/spamassassin: does not build
2018-12-31 www/spdylay: SPDY is deprecated, use HTTP/2 instead
2018-12-31 www/moodle33: Upstream no longer maintained
2018-12-31 security/krb5-114: EOL twelve months after release of krb5-1.16
2018-12-31 databases/mongodb32: EOL upstream since September 2018
2018-12-31 databases/mongodb32-tools: EOL upstream since September 2018
2018-12-31 audio/creox: Qt4 has been EOL since december 2015
2018-12-31 audio/terminatorx: Unmaintained, broken too often
2018-12-31 audio/shoutcast: Upstream vendor no longer provides releases
2018-12-31 dns/powerdns-recursor40: FreeBSD 10.3 has reached EoL since 2018-04-30; users should upgrade and use dns/powerdns-recursor instead
2018-12-31 sysutils/ataidle: obsoleted by camcontrol(8)
2018-12-31 sysutils/syslog-ng37: No longer officially supported by Balabit, does not support openssl111
2018-12-31 sysutils/cfengine22: No longeer supported by cfengine.com
2018-12-31 sysutils/syslog-ng36: No longer officially supported by Balabit, does not support openssl111
Diffstat (limited to 'audio/creox/files/patch-creox_effects__dsp_tremoloprocessor.cpp')
-rw-r--r-- | audio/creox/files/patch-creox_effects__dsp_tremoloprocessor.cpp | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/audio/creox/files/patch-creox_effects__dsp_tremoloprocessor.cpp b/audio/creox/files/patch-creox_effects__dsp_tremoloprocessor.cpp deleted file mode 100644 index 966768bb3463..000000000000 --- a/audio/creox/files/patch-creox_effects__dsp_tremoloprocessor.cpp +++ /dev/null @@ -1,13 +0,0 @@ ---- creox/effects_dsp/tremoloprocessor.cpp.orig 2011-06-21 21:27:40 UTC -+++ creox/effects_dsp/tremoloprocessor.cpp -@@ -182,8 +182,8 @@ void TremoloProcessor::signalFlow_run(co - register const float inputSample = *(inputBuffer++) * m_inputGain_f; - #ifdef FP_FAST_FMAF - *(outputBuffer++) = (inputSample * m_dry_f) -- + (inputSample * m_wet_f * std::fmaf(amplitudeModulation, -- m_modulationMulti, m_modulationShift); -+ + (inputSample * m_wet_f * fmaf(amplitudeModulation, -+ m_modulationMulti, m_modulationShift)); - #else - *(outputBuffer++) = (inputSample * m_dry_f) - + (inputSample * m_wet_f * ((amplitudeModulation * m_modulationMulti) |