/[svn]/linuxsampler/trunk/src/effects
ViewVC logotype

Log of /linuxsampler/trunk/src/effects

View Directory Listing Directory Listing


Sticky Revision:

Revision 3054 - Directory Listing
Modified Thu Dec 15 12:47:45 2016 UTC (7 years, 4 months ago) by schoenebeck
* Fixed numerous compiler warnings.
* Bumped version (2.0.0.svn32).


Revision 2509 - Directory Listing
Modified Sat Jan 18 18:10:49 2014 UTC (10 years, 3 months ago) by schoenebeck
* ASIO driver: be more verbose when no ASIO card could be found
  (fixes #203)
* ignore missing LADSPA paths without ignoring valid LADSPA paths
  (fixes #208)
* updated linuxsampler man page


Revision 2434 - Directory Listing
Modified Thu Mar 7 19:23:24 2013 UTC (11 years, 1 month ago) by schoenebeck
* Started to spread new C++ keyword "override" over the code base
  (keyword introduced with C++11 standard).


Revision 2420 - Directory Listing
Modified Sun Feb 24 08:59:25 2013 UTC (11 years, 1 month ago) by persson
* removed usage of deprecated Automake variable INCLUDES
* ASIO driver: removed compiler warnings


Revision 2412 - Directory Listing
Modified Mon Feb 4 21:52:56 2013 UTC (11 years, 2 months ago) by schoenebeck
* Bugfix: update effects on sample rate & period size changes.
* JACK: allow to register jackd shutdown listeners.


Revision 2335 - Directory Listing
Modified Sat Mar 17 06:19:01 2012 UTC (12 years, 1 month ago) by persson
* fixed compilation with gcc 4.7


Revision 2313 - Directory Listing
Modified Sun Feb 12 11:32:43 2012 UTC (12 years, 2 months ago) by persson
* bugfix: LADSPA_PATH was not evaluated correctly when containing
  multiple paths (#165)


Revision 2296 - Directory Listing
Modified Thu Dec 8 20:03:47 2011 UTC (12 years, 4 months ago) by iliev
* fixed crash when trying to create an effect instance with controls
  which min and/or max values depend on the sample rate
* experimental support for per voice equalization (work in progress)
* sfz engine: implemented opcodes eq1_freq, eq2_freq, eq3_freq,
  eq1_freqccN, eq2_freqccN, eq3_freqccN, eq1_bw, eq2_bw, eq3_bw,
  eq1_bwccN, eq2_bwccN, eq3_bwccN, eq1_gain, eq2_gain, eq3_gain,
  eq1_gainccN, eq2_gainccN, eq3_gainccN


Revision 2198 - Directory Listing
Modified Sun Jul 3 18:06:51 2011 UTC (12 years, 9 months ago) by iliev
* bugfix: LSCP command "REMOVE FX_SEND EFFECT" was broken
* fixed a bug in FxSend::SetDestinationEffect
* bugfix: parent was not set when effect instance is appended
* bugfix: was able to remove effect chain while FX send is connected to it
* bugfix: was able to remove effect instance from effect chain while
  FX send is connected to that instance


Revision 2188 - Directory Listing
Modified Fri Jun 24 19:39:11 2011 UTC (12 years, 9 months ago) by iliev
* Added LSCP commands "SUBSCRIBE EFFECT_INSTANCE_COUNT",
  "SUBSCRIBE EFFECT_INSTANCE_INFO", "SUBSCRIBE SEND_EFFECT_CHAIN_COUNT",
  "SUBSCRIBE SEND_EFFECT_CHAIN_INFO"


Revision 2183 - Directory Listing
Modified Sat Jun 11 17:53:32 2011 UTC (12 years, 10 months ago) by persson
* Mac OS X fixes: support the new dir for Core Audio SDK, fixed name
  collision of enum in EffectControl, fixed building outside source
  directory, fixed wrong name of destructor in
  AudioOutputDeviceCoreAudio.cpp
* made sure all source files for hostplugins are included when doing
  "make dist"
* removed empty directories left from the cvs to svn migration


Revision 2137 - Directory Listing
Modified Mon Oct 4 12:20:23 2010 UTC (13 years, 6 months ago) by schoenebeck
* revised previously added new LSCP commands regarding effect handling:
  renamed "master effects" to "send effects", since this is the actual
  correct common term for those effects
* also corrected the names regarding "send effects" in the respective
  methods of the "FxSsnd" class and "AudioOutputDevice" class of the
  sampler's C++ API, the old methods are still available but marked as
  deprecated and scheduled for removal
* added LSCP command "SET FX_SEND SEND_EFFECT <sampler_channel>
  <fx_send_id> <effect_chain> <chain_pos>"
* added LSCP command "REMOVE FX_SEND SEND_EFFECT <sampler_channel>
  <fx_send_id>"
* added a list of common known LADSPA paths (for Windows and POSIX) which
  will be automatically checked for being used as LADSPA plugin directory
  (if the user did not set the LADSPA_PATH environment variable explicitly)
* bumped version to 1.0.0.cvs8


Revision 2135 - Directory Listing
Modified Thu Sep 30 20:00:43 2010 UTC (13 years, 6 months ago) by schoenebeck
* added and implemented a set of 19 new LSCP commands for controlling
  internal effects:
  - added LSCP command "GET AVAILABLE_EFFECTS"
  - added LSCP command "LIST AVAILABLE_EFFECTS"
  - added LSCP command "GET EFFECT INFO <effect-index>"
  - added LSCP command "CREATE EFFECT_INSTANCE <effect-index>"
  - added LSCP command
    "CREATE EFFECT_INSTANCE <effect-system> <module> <effect-name>"
  - added LSCP command "DESTROY EFFECT_INSTANCE <effect-instance>"
  - added LSCP command "GET EFFECT_INSTANCES"
  - added LSCP command "LIST EFFECT_INSTANCES"
  - added LSCP command "GET EFFECT_INSTANCE INFO <effect-instance>"
  - added LSCP command "GET EFFECT_INSTANCE_INPUT_CONTROL INFO
    <effect-instance> <input-control>"
  - added LSCP command "SET EFFECT_INSTANCE_INPUT_CONTROL <effect-instance>
    <input-control> <value>"
  - added LSCP command "GET MASTER_EFFECT_CHAINS <audio-device>"
  - added LSCP command "LIST MASTER_EFFECT_CHAINS <audio-device>"
  - added LSCP command "ADD MASTER_EFFECT_CHAIN <audio-device>"
  - added LSCP command
    "REMOVE MASTER_EFFECT_CHAIN <audio-device> <effect-chain>"
  - added LSCP command
    "GET MASTER_EFFECT_CHAIN INFO <audio-device> <effect-chain>"
  - added LSCP command "APPEND MASTER_EFFECT_CHAIN EFFECT <audio-device>
    <effect-chain> <effect-instance>"
  - added LSCP command "INSERT MASTER_EFFECT_CHAIN EFFECT <audio-device>
    <effect-chain> <effect-instance> <effect-chain-pos>"
  - added LSCP command "REMOVE MASTER_EFFECT_CHAIN EFFECT <audio-device>
    <effect-chain> <effect-instance>"
* bumped version to 1.0.0.cvs7


Revision 2126 - Directory Listing
Modified Tue Sep 21 06:00:25 2010 UTC (13 years, 7 months ago) by persson
* fixed memory leak in the new internal effects code


Revision 2125 - Directory Listing
Modified Sat Sep 18 10:02:48 2010 UTC (13 years, 7 months ago) by schoenebeck
- forgot to commit file with previous commit batch


Revision 2124 - Directory Listing
Modified Sat Sep 18 09:24:41 2010 UTC (13 years, 7 months ago) by schoenebeck
* implemented support for internal LADSPA effects (work in progress)


Revision 1722 - Directory Listing
Added Thu Apr 10 17:41:32 2008 UTC (16 years ago) by schoenebeck
* minor preparations for internal effects support
* bumped version to 0.5.1.5cvs


  ViewVC Help
Powered by ViewVC