summaryrefslogtreecommitdiff
path: root/libs/plugins/a-comp.lv2
AgeCommit message (Collapse)Author
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-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
2017-11-12a-comp: Fix typo with previous patchDamien Zammit
2017-11-11a-comp: Fix noise floor - asymptoticsDamien Zammit
2017-07-31Signal wish to show inline display in gui by lv2:optionalFeatureJohannes Mueller
... in .ttl file rather than by extension_data() in code. That's more in the spirit of LV2.
2017-07-31Tweaking the a-comp inline display a bit. Make it more skinny.Johannes Mueller
2017-07-31Indicate whether to show plugin's inline display in GUIJohannes Mueller
This is currently done by an extension data similarly to LV2_INLINEDISPLAY__interface.
2017-07-31Simplified inline display if the channel strip is not wide enoughJohannes Mueller
If the width of the display area is below 200 px, we switch from the graph display to displaying only two bars, one for output level and one for gain reduction. In the bar mode we also visualize threshold and ratio.
2017-07-31Honor attack and release parameters in a-comp's inline graphJohannes Mueller
2017-07-31Indicate gain reduction in a-compJohannes Mueller
2017-07-31Show range -60 .. +10 dBFS in acomp's inline displayRobin Gareus
2017-07-31Set makeup to 0.f when bypassed also in stereo versionJohannes Mueller
2017-07-31Adjust the indication of the treshold value by the makup gain.Johannes Mueller
When lifting the compressor curve by the makeup gain value the actual treshold (the level when the curve kinks in) is also lifted. Therefore we need to adjust the dashed line indicating the threshold as well as the level when the color gradient to show compression kicks in.
2017-07-31Also the stereo version needs to set need_exposeJohannes Mueller
2017-07-31Show a-comp's makeup grain in inline renderingJohannes Mueller
2017-07-21Increase range of a-comp#stereo release timeJohannes Mueller
Like for the mono version in f52443e17e818145d736e8f386b6a7aba6d8b5c7
2017-07-12Fix duplicate ‘const’ declaration specifierJelle van der Waa
2016-11-29Protect a-comp's display/state against NaN/Inf.Robin Gareus
2016-10-15Increase range of a-comp release time.Robin Gareus
This facilitates ducking music for voice-overs w/o hold-time.
2016-09-18update a-plugins to use official lv2plug.in URIRobin Gareus
2016-08-27backwards compatible a-comp stereo sidechain portsRobin Gareus
2016-08-27Prepare a-comp for click-free bypass/enableRobin Gareus
2016-08-27NO-OP clean up plugin ttlRobin Gareus
2016-08-13Nobody expects the LV2 inquisition!Robin Gareus
2016-08-09clean up plugin ttls - always add semicolon for compatibilityRobin Gareus
2016-07-20a-Comp: Fix bug with DSP in the knee processing regionDamien Zammit
2016-07-14clean up a-comp, remove old prototype UIRobin Gareus
2016-07-12a-reverb prototype (based on setBfree b_reverb)Robin Gareus
2016-07-12fix compilation with lv2 < 1.10 (lv2 extended)Robin Gareus
2016-07-05tweak a-series plugin namesRobin Gareus
2016-07-05consistent use of fmaxf() in a-compRobin Gareus
2016-07-05a-comp: Use input signal x as cutoff for inline comp curveDamien Zammit
2016-07-05a-comp: Fix inline comp curve shadingDamien Zammit
2016-07-05a-comp: Fix peak level on both stereo and mono pluginsDamien Zammit
2016-07-04add required check for cairo in a-compPaul Davis
2016-07-05a-comp: Make ratio control logarithmicDamien Zammit
2016-07-05a-comp: Add stereo versionDamien Zammit
2016-07-04a-comp display is getting fancy :)Robin Gareus