Commit Graph

837 Commits

Author SHA1 Message Date
Tobias Doerffel
312872aed3 CALF: updated up to commit b22ca910642433a4507f33ec08bcbf8e6d02e3ff
* Fix broken band issue in EQ plugins.
  * Persist extension 0.2
(cherry picked from commit 2721fbae95)
2011-04-25 11:37:12 +02:00
Tobias Doerffel
785a07b85e CAPS: updated to version 0.4.5
Updated CAPS plugins to version 0.4.5 - changes:

  * Narrower plugin added
  * fixed 'configure.py' to work with python3
  * fixed Sin, Roessler and Lorenz gain smoothing on activation

Signed-off-by: Tobias Doerffel <tobias.doerffel@gmail.com>
(cherry picked from commit d98acff3bb)
2011-04-05 14:35:18 +02:00
Tobias Doerffel
df94c7674c CALF: updated up to commit 3889df5d1448faf5078b0a2bdd4c220823b82bf9
* Simplify exciter code. No functional change... I hope!
* Work in progress on rotary speaker. May contain bugs.
* Replace allpass vibrato in Calf Organ with a simulation of scanner vibrato.
* Implement switchable vibrato type.
* Initialise delta members in ramp classes.
(cherry picked from commit 8d61675e3e)
2011-01-26 11:14:16 +01:00
Tobias Doerffel
491967b6d2 LB302: fixed typo
It has to be "imitation" instead of "immitation". Thanks to Capdan for
pointing this out.

Closes #3158102.
(cherry picked from commit 15fabc6a17)
2011-01-24 16:52:59 +01:00
Tobias Doerffel
18bdfa1211 PeakControllerEffect: properly save and load all settings
The settings for the new attack and decay controls weren't saved and
loaded at all while just the values of all other knobs were saved
(instead automation data, controllers etc.).
(cherry picked from commit ec9658d205)
2011-01-24 16:08:25 +01:00
Tobias Doerffel
14f043598c Sf2Player: load default soundfont upon instantiation
When creating a new Sf2Player plugin instance, load the default
soundfont. Might decrease performance a little bit when loading projects
which make use of many other soundfonts but for the sake of improved
usability we should accept this.

Partially closes #3149779.
(cherry picked from commit 510f87bfcc)
2011-01-23 23:59:07 +01:00
Tobias Doerffel
05590f1fb9 Lv2Browser: exclude from build for the time being
The Lv2Browser plugin causes a crash at startup, therefore do not
build it anymore as it even is not of much use at the moment.
2011-01-16 20:26:35 +01:00
Tobias Doerffel
15a0316899 CMT LADSPA plugins: get rid of -nostartfiles linker flag
Using the -nostartfiles linker flag makes the CMT LADSPA plugin
library not being linked against neccessary libraries on recent Linux
systems. Therefore remove it.
(cherry picked from commit 60970495b0)
2011-01-16 20:26:25 +01:00
Tobias Doerffel
a4de8fa16a Fixed various minor semantic glitches
There were various minor semantic glitches reported by cppcheck and
Andrei Smirnov.
2011-01-08 00:16:03 +01:00
Tobias Doerffel
a6c6e18508 CALF: updated up to commit b9b6dc839c40cebbd632ca776817a11c2543265c
There were many changes in the CALF repository. Cherry picking all of
them individually would be lot's of work, that's why I just applied
a diff made up from the following commits:

 * Add ChangeLog entries of the remaining bugfix 0.0.18 releases.
 * First attempt to update ChangeLog with the changes from last 2 years.
 * Fluidsynth: set sample rate on a synth instance.
 * Monosynth: allow modulation matrix when configure is available.
 * Improve LADISH level 1 integration. Doxygenize host_session a little bit.
 * Avoid starting LASH just to display the help text.
 * Reuse instance IDs of removed plugins.
 * Don't crash on failure of the save operation.
 * Remove by pointer, not by position - better for rearranged lists.
 * Mark the reorder function as experimental. Print new plugin order to stdout.
 * Add channel number to internal MIDI API. Fix stack overflow in Calf Organ.
 * Ignore data type for now, to help diagnosing restore issue with Ardour.
2011-01-03 00:01:29 +01:00
Tobias Doerffel
4616a53eb2 ZynAddSubFX: fixed improved packaging of ZynAddSubFxCore library
When packaging the ZynAddSubFxCore library (Windows builds), there's no
need for including the DLL import library, so skip it. Furthermore make
sure to strip the ZynAddSubFxCore library which decreases its size from
8 MB to about 1 MB.
2011-01-02 23:44:12 +01:00
Tobias Doerffel
7b68713008 NotePlayHandle: send correct MidiNoteOff events if base note changed
When changing an InstrumentTrack's base note while NotePlayHandles are
active, they will send a wrong MidiNoteOff event due to the masterKey()
translation in InstrumentTrack::processOutEvent().

Therefore in NotePlayHandle remember the original base note value and
add the difference between original and current base note to the value
returned by NotePlayHandle::key(). Fixes hanging notes in MIDI-based
instruments such as ZynAddSubFX.

Furthermore some coding style improvements.

Closes #3146975.
(cherry picked from commit a9717c0cc3)
2010-12-31 13:32:51 +01:00
Tobias Doerffel
65c073ec63 Merge branch 'win64-vst'
* win64-vst:
  VST support layer: fixed non-working 64 bit VST plugins
  VST support layer: added 32 bit VST plugin support for Win64
  Win64Toolchain: added 32 bit compiler configuration
  ZynAddSubFX: use new RemotePlugin::init() method
  RemotePlugin: added support for running remote process multiple times
2010-12-26 11:22:39 +01:00
Tobias Doerffel
ab814c03a7 SpectrumAnalyzer: fixed multiple instantiations
When instantiating the SpectrumAnalyzer plugin more than once the
processed data somehow got invalid and caused all but the first
SpectrumAnalyzer instance not to work at all. This can be fixed easily
by clearing m_buffer in SpectrumAnalyzer's constructor.

Closes #3137877.
2010-12-24 00:30:27 +01:00
Tobias Doerffel
be92c67b94 VST support layer: fixed non-working 64 bit VST plugins
LMMS' native Win64 VST host capabilities were broken due to wrong data
types in some places. On 32 bit there's no difference between a pointer
and an int but on x64 there is, therefore fix data types where
approriate. Makes 64 bit VST DLLs work in LMMS/Win64.
2010-12-23 23:50:50 +01:00
Tobias Doerffel
619e86dd1a VST support layer: added 32 bit VST plugin support for Win64
Until now it was impossible to load classical 32 bit VST plugins with
the Win64 version of LMMS. This issue has been addressed by building a
32 bit version of the RemoteVstPlugin executable and launch it when
loading a 32 bit VST plugin. This also requires to ship 32 bit QtCore
and zlib DLLs with the Win64 package.
2010-12-23 22:22:01 +01:00
Tobias Doerffel
c974797954 ZynAddSubFX: use new RemotePlugin::init() method
The old method of passing remote process executable and flags to
constructor is not supported anymore. Use RemotePlugin::init() instead.
2010-12-23 22:22:01 +01:00
Tobias Doerffel
52543d4d8c ZynAddSubFX/FLTK: added missing source file
The Windows builds of FLTK require Fl_GDI_Printer.cxx. Add it here.
(cherry picked from commit e1e36e6831)
2010-12-23 22:18:58 +01:00
Tobias Doerffel
45a671c93a ZynAddSubFX: link against -lws2_32 on Win32
Once more explicit linking is required with recent MinGW toolchains.
(cherry picked from commit 1590dd0d39)
2010-12-06 10:43:51 +01:00
Tobias Doerffel
7eea8c5e88 Build system: fixed relative linker paths warnings
Fixed the warnings about relative linker paths issued by CMake >= 2.8.
(cherry picked from commit 625e70d50a)
2010-12-06 00:01:32 +01:00
Krzysztof Foltman
43e2886e79 Reimplement modulation matrix (and tables in general) using configure variables. Slow and most likely incomplete, but a good start. 2010-12-05 23:07:43 +01:00
Krzysztof Foltman
8053f5adcf Add extra checks to detect when param_count != param array size - 1.
(cherry picked from commit 6c8c91c4e03c3d0bc4b860db293549b45303ebc8)
2010-12-05 22:57:05 +01:00
Krzysztof Foltman
661da8e802 Fix another install-related crash, this time due to invalid params in fluidsynth.
(cherry picked from commit 034e3a47cd40eb6bb7d221274fda2a5c1c79f42f)
2010-12-05 22:56:48 +01:00
Krzysztof Foltman
313c268e20 Fix the infamous crash on install.
(cherry picked from commit f0568e2f8a4c7d0003cc5a15e300aa2ebb3f93cb)
2010-12-05 22:56:42 +01:00
Krzysztof Foltman
262edd6e8a The range given in the comment wasn't really correct.
(cherry picked from commit 292cdaa81dab7e7d948f597041cb86d70dc5ff92)
2010-12-05 22:56:19 +01:00
Krzysztof Foltman
a9a91053d9 Use symmetric dB range for EQ plugins.
(cherry picked from commit cb3e7e001da3e0f43b3da8eed3f9660698f87ca2)
2010-12-05 22:56:03 +01:00
Krzysztof Foltman
90e288976f Fix a few bugs in compilation of limited versions (DSSI without GUI, no JACK host).
(cherry picked from commit c260e0d491235f7332f54ab8eb67105052d8149d)
2010-12-05 22:55:36 +01:00
Krzysztof Foltman
71930a1dbb Initialise the vintage delay properly... hopefully this time.
(cherry picked from commit c96ff1d680148cc877fab3b641d666068eea06aa)
2010-12-05 22:54:59 +01:00
Krzysztof Foltman
b167f83499 Unbreak Monosynth by changing listview to use a 'key' attribute instead of 'param'.
The table-edit-iface names are keys of configure variables, not real
parameters (control ports), so using the 'param' is basically incorrect.
(cherry picked from commit ab96b105e50d4de1ea423941dbc12208a997a78e)
2010-12-05 22:54:42 +01:00
André Hentschel
399cafe894 vst_base: Fix winelib build on x86-64 2010-11-04 16:35:31 -04:00
Krzysztof Foltman
52bccb8702 Make meters in compressor/EQ/distortion modules sample-rate-dependent.
(cherry picked from commit 47a87c696223625d31cf106e12ed08cd3293be14)
2010-10-17 18:16:19 +02:00
Krzysztof Foltman
a572acb35f One table_edit_iface per table; start implementing a bridge class.
(cherry picked from commit 2019ae2d8f9636b7d5cdb0c1fdd5f0d6f2b47e3d)
2010-09-28 23:32:59 +02:00
Krzysztof Foltman
16f24125fd Move the table_edit_iface out of plugin_metadata_iface, where it should have never been in first place.
(cherry picked from commit 6907dc9670eae2313707b142c552a8d9e8b477b5)
2010-09-28 23:31:37 +02:00
Krzysztof Foltman
2ff3c32d7b Fix organ crash in calfjackhost.
(cherry picked from commit b2853103199b3f5f3a5d22271c5d89122514dd53)
2010-09-28 23:30:58 +02:00
Krzysztof Foltman
8ff5a37584 Remove the forgotten leftover references to the old extensions.
(cherry picked from commit deb8b77bdb1e1648a38589b3be3d4d66175b4934)
2010-09-28 23:30:21 +02:00
Krzysztof Foltman
9179bf41ee Replace string port/message context using persist extension.
(cherry picked from commit b8e69ceb2ff7aca549efd939d04447e2f08ad5a8)
2010-09-28 23:25:59 +02:00
Krzysztof Foltman
f40e2c85bc Comment out the barfage when passing configure variables via message_run.
(cherry picked from commit 1e767ff88578011c2f65466d5516953271e2cafd)
2010-09-28 23:23:12 +02:00
Krzysztof Foltman
fbc364e68e Add a crude incomplete implementation of persist extension support.
(cherry picked from commit 3ec11c04799fc08fd408c4ef2350df65f88ccfde)
2010-09-28 23:22:46 +02:00
Krzysztof Foltman
2831eb8c59 More refactoring of the VUs. The goal: to be able to add peak meters without major hassle.
(cherry picked from commit 00ee132cc2ebe3b664c7d5760260d76dda37bf26)
2010-09-28 23:19:29 +02:00
Krzysztof Foltman
4b92af788b Fix handling of very short notes in Monosynth.
(cherry picked from commit 5965d9922a0753e2dce4f743a23b9512be01a7ac)
2010-09-28 23:17:23 +02:00
Tobias Doerffel
342ea2ba05 VstEffectControlDialog: fixed preprocessor macro logic
Fixed preprocessor macro logic that was messed up in commit
fa9e0f762c.
2010-09-02 23:48:10 +02:00
Tobias Doerffel
fa9e0f762c VstEffectControlDialog: workaround for invisible GUI on Linux
For some reaons with recent versions of Qt we can't embed the VST FX
GUI into an existing EffectControlDialog anymore. As a workaround, embed
it into a new subwindow and added an additional show/hide button.

Closes #3028717.
2010-09-02 17:33:48 +02:00
Tobias Doerffel
f05c510f4d ZynAddSubFX: only re-instantiate ZASF if m_hasGUI has changed
Do not re-instantiate ZynAddSubFX if m_hasGUI is different from the
value of the according push button.
2010-09-02 17:19:52 +02:00
Tobias Doerffel
b2cc802528 ZynAddSubFX: save which controllers were modified and restore them
We must not only restore the controller knobs but also send updates
to ZynAddSubFX. However this only applies to knobs that were modified.
Therefore save and remember which knobs this applies for.
2010-09-02 17:12:50 +02:00
Tobias Doerffel
1546b7cec0 ZynAddSubFX: fixed identifier for filter resonance controller
The filter resonance controller erroneously was labeled with something
like "cutoff" which is definitely wrong. Use "resonance" instead.
2010-09-02 16:22:32 +02:00
Tobias Doerffel
eb673c0ad5 SID: improved artwork+logo once more
The first version of mikobuntu's logo had a white semitransparent
background. This has been fixed. Additionally the background artwork
of the SID plugin has been changed as well to include the new logo.
Thanks to pgib for preparing this.
2010-09-02 00:05:33 +02:00
Tobias Doerffel
4e695a4ea8 ZynAddSubFX: properly load preset data if knobs are automated/controlled
Commit 534c4debb5 introduced a regression.
If knobs have a song-global automation or controllers attached, they
save these settings in a sub XML node which confused the ZASF preset
loader which assumed the first child node would always be the ZASF
preset data. Fix this by explicitely searching for an XML element named
"ZynAddSubFX-data".

Closes #3057275.
2010-09-01 23:23:13 +02:00
Tobias Doerffel
56ee4db565 SID: added new logo by mikobuntu
Added a logo remake by mikobuntu. Thanks!
2010-09-01 22:26:12 +02:00
Tobias Doerffel
4763da4daa Mirror Commodore logo on SID instrument (v2)
This is an attempt to improve commit c17bb3ba18. The logo has
been mirrored using ImageMagick which doesn't seem to mess up the 8 bit
alpha channel.
2010-09-01 00:25:04 +02:00
Tobias Doerffel
c560ae4207 Revert "Mirror Commodore logo on SID instrument"
This reverts commit c17bb3ba18.
2010-09-01 00:09:37 +02:00