summaryrefslogtreecommitdiff
path: root/libs/plugins
AgeCommit message (Collapse)Author
2020-03-30Clean up double/float narrowing math in plugins.Robin Gareus
2020-03-02Fix previous commit (increase max, not default)Robin Gareus
2020-03-02Allow a-delay to boost output gainRobin Gareus
From #ardour IRC: > there have been a few times that I wished a-Delay could boost volume > it has an "output gain" slider, but it only subtracts. the maximum is 0db > delay is a big part of guitar solos, so a boost in the same plugin would be awesome
2020-02-26Remove easter-eggRobin Gareus
Every day can be x-mas day, how else can we be lovers? :)
2020-01-25Update waf2.x "subst" feature uses obj attributesRobin Gareus
2020-01-25Towards waf python 2+3 supportDavid Runge
2020-01-17Make it possible to use reasonable-synth in productionRobin Gareus
This allows to disable the xmass easter-egg for those who don't celebrate x-mas.
2020-01-06Fix windows fallback for LV2 state:freePath featureRobin Gareus
2019-12-08Add support for LV2 state:freePath featureRobin Gareus
This fixes a memory-leak issue for Windows builds. see also https://github.com/drobilla/lilv/issues/14
2019-11-26Fix thread-safety issue in a-fluidsynth.Stefan Westerfeld
This fix ensures that the a-fluidsynth "synth" object is not used in two threads at the same time during midi event handling (run() in RT thread vs. load_sf2() in worker thread), which could result in crashes.
2019-11-10Log warning if host does not support midnam/bankpatch extensionsChristopher Arndt
Signed-off-by: Christopher Arndt <chris@chrisarndt.de>
2019-11-10Fix segfault: don't try to use midnam:update extension if host doesn't ↵Christopher Arndt
support it Signed-off-by: Christopher Arndt <chris@chrisarndt.de>
2019-09-04Amend 69a3b0b46e, remove CCs not used by fluidsynthRobin Gareus
2019-09-04Expose CCs that fluidsynth uses by default in midnamRobin Gareus
2019-08-03Update plugins/addons GPL boilerplate and (C) from git logRobin Gareus
2019-05-12Fix for #7755: initialize reverb and chorus of fluidsynth objectJohannes Mueller
The reverb and chorus states in the fluidsynth object need to be initialized to 0 (false) in accordance with the initial state of a-fluidsynth's v_port[...]. Otherwise they are not updated in the first run() and remain to fluidsynth's default state 1 (true) even though the plugin's state requires 0.
2019-04-15Align port layout and code of a-exp with the one of a-compJohannes Mueller
2019-04-15Remove switch for different inline displays from a-comp.Johannes Mueller
Reverts a0a4db47a76da788096e3a93c3824d56c8e804b5 This feature never was in a release.
2019-04-08Undo more incorrect sample/frame replacementsRobin Gareus
2019-03-06Remove unused fluidsynth setting (since fluidsynth 2.0)Robin Gareus
2019-03-01NO-OP: whitespaceRobin Gareus
2019-03-01Don't use c99 (amend 959947e7f84a)Robin Gareus
2019-02-28NO-OP: whitespace (remove vi modelines)Robin Gareus
2018-12-28remove configure-time --no-lv2 option. LV2 is integral to what we doPaul Davis
2018-12-19Compliant LV2 state path-mappingRobin Gareus
lv2 state mandates that > The plugin MUST use this function [ absolute_path] in order to > actually open or otherwise use any paths loaded from plugin state. Previously the plugin uses the value directly. Also > The caller is responsible for freeing the returned value with free(). is now implemented on systems other than windows (where this is not possible, since the memory must be free()ed in the same module where it was allocated.
2018-10-18Follow fluidsynth's API changes introduced with 2.0.0Andreas Müller
Updated patch from Andreas Müller <schnitzeltony@gmail.com>
2018-10-14remove use of hardcoded -fPIC compiler flag, and use compiler flag dict insteadPaul Davis
2018-09-30Adapt our remaining MSVC projects for 'boost::atomic' (in case it later gets ↵John Emmas
extended to the other libs) Stage 3 of 3
2018-09-10Initial changes needed for building Mixbus (with MSVC) as version 5John Emmas
(Mixbus itself will probably need extra changes)
2018-06-20Put duplicate code of a-comp and a-expander into one file ...Johannes Mueller
... for better maintainability consolidated duplicate code: * drawing the dB-grid of a-comp's and a-expander's full display * drawing the gain reduction bar of a-comp's and a-expander's full display * the entire only-bars display
2018-06-20Consolidated a-comp/a-exp run_mono() and run_stereo() to one run()Johannes Mueller
Up to now we had in a-comp and a-exp one run_mono() and one run_stero() function which where almost identical except that run_stereo() treated two in/outs and run_mono() only one. Now we store the number of channels acomp->n_channels according to the URI and in run() we loop over an array of pointers to the in/out buffers.
2018-06-20Make makeup_gain smoothening of a-expander same as in a-compJohannes Mueller
2018-06-20a-comp: makeup_gain needs to be smoothened after every sample ...Johannes Mueller
... not only once in every run
2018-06-20Add a control port to a-comp select which mode to display inlineJohannes Mueller
2018-06-20Make a-comp's meter show numerical values in "4.1f"Johannes Mueller
according to discussion in irc.
2018-06-20Put input level meter before output level meter in the generic guiJohannes Mueller
This is done by relying on the fact that the generic gui orders the meters according to their port indices.
2018-06-20Visualize the peak of the compressor state in a-compJohannes Mueller
2018-06-20Drop LPF of input level visualization in a-compJohannes Mueller
2018-06-20Show the input level in acomp's inline display rather than output levelJohannes Mueller
2018-06-20Inlevel output port to visualize the input level in the generic GUIJohannes Mueller
2018-06-20Improve level vizualisation in a-compJohannes Mueller
* LPF in the signal visialization * Lower minimum values
2018-06-20GR-based visualization in a-compJohannes Mueller
2018-06-20New attack and release behavior for a-compJohannes Mueller
Details in http://tracker.ardour.org/view.php?id=7439
2018-06-20Don't use acomp->v_gainr outside LV2_EXTENDED ifdefsJohannes Mueller
2018-05-12Make the peak indication in the graph of a-expander green ...Johannes Mueller
... so that it has a different color than the expander curve
2018-05-12Limit gain reduction of a-expander to 160 dB in order to ...Johannes Mueller
improve release behavior. This slows down the release after events like single snare hits as, the gain reduction only releases to 160 dB rather than to inf.
2018-05-12Visualize peak input in a-expanderJohannes Mueller
2018-05-12Add output control port to a-exp for input levelJohannes Mueller
2018-05-12Indicate input level in a-exp's inline display rather than outputJohannes Mueller
2018-05-12Increase the range of a-exp's ratio to make it usable like a gateJohannes Mueller