1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-01-11 23:25:53 +01:00

Update libvamp to 2.5.

This commit is contained in:
lllucius
2013-10-31 06:33:59 +00:00
parent c8aa505879
commit 6fef6dd8b4
77 changed files with 6254 additions and 3598 deletions

View File

@@ -1,5 +1,55 @@
Version 2.5, 2013-05-08 (maintenance release):
Version 2.0
* Fix incorrect handling of FixedSampleRate outputs in the
PluginBufferingAdapter. Un-timestamped features on these outputs
were incorrectly being timestamped from the process timestamp,
where they should have been timed relative to the previous
feature on the output according to the output's sample rate.
* Fix return of uninitialised memory through getCurrentProgram
when plugin specifies no programs
* Ensure output sample rate is initialised (to 0) for variable-rate
outputs where the plugin forgets to set a rate
Version 2.4, 2012-07-12 (maintenance and minor feature release):
* Provide a simple FFT implementation as a convenience for plugins
* Add symbols to make the library versions discoverable by autoconf
using C linkage
* Fix failure to open plugins from Unicode builds on Windows (thanks
RJ Ryan)
* Fix thread-safety issue in PluginInputDomainAdapter
* Add build for OS/X 10.7+/Xcode 4; remove build for OpenSolaris
Version 2.3, 2011-09-28 (minor feature release):
* Add window type property to PluginInputDomainAdapter
* Permit vamp-simple-host to use streaming input with indeterminate
length (thanks Dan Stowell)
* Print label as well as values from vamp-simple-host (thanks Dan)
Version 2.2.1, 2011-04-05 (maintenance release):
* Minor build fixes for OS/X
Version 2.2, 2010-08-26 (maintenance release):
* Fixes to OS/X build procedures so as to build three-way
universal binaries (PPC, i386, x86_64) by default. Forced upon
us by OS/X 10.6 defaulting to 64-bit rather than 32-bit
Version 2.1, 2009-09-22 (maintenance and minor feature release):
* Add ProcessTimestampMethod to PluginInputDomainAdapter, offering
the ability to decide how data buffering and timestamping works for
frequency-domain plugins (whose process timestamps have to be at
the centre of each processing block rather than the start)
* Make PluginBufferingAdapter take into account any timestamp shift
introduced by a PluginInputDomainAdapter that it wraps
* Fix crash in PluginAdapter when plugin library getDescriptor fails
on plugin construction
* Add plugin skeleton files as starting point for new developers
Version 2.0, 2008-12-08 (major release):
* Feature structure now has an optional duration (plugin API change)
* Libraries reorganised into separate include and src directories for