Up to [cvs.NetBSD.org] / pkgsrc / audio / vamp-plugin-sdk
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.12 / (download) - annotate - [select for diffs], Tue Jul 18 12:56:06 2023 UTC (4 months, 1 week ago) by nia
Branch: MAIN
CVS Tags: pkgsrc-2023Q3-base,
pkgsrc-2023Q3,
HEAD
Changes since 1.11: +3 -1
lines
Diff to previous 1.11 (colored)
audio: Where possible, adapt packages to use USE_(CC|CXX)_FEATURES
Revision 1.11 / (download) - annotate - [select for diffs], Thu Jul 13 13:45:41 2023 UTC (4 months, 2 weeks ago) by nia
Branch: MAIN
Changes since 1.10: +1 -4
lines
Diff to previous 1.10 (colored)
*: remove all instances of GCC_REQD where my name is the most recent in "cvs annotate" (part 1) Hopefully this commit can be reviewed later if a better replacement for GCC_REQD is committed.
Revision 1.10 / (download) - annotate - [select for diffs], Sat May 6 19:08:47 2023 UTC (6 months, 3 weeks ago) by ryoon
Branch: MAIN
CVS Tags: pkgsrc-2023Q2-base,
pkgsrc-2023Q2
Changes since 1.9: +2 -2
lines
Diff to previous 1.9 (colored)
*: Recursive revbump from audio/libopus 1.4
Revision 1.9 / (download) - annotate - [select for diffs], Sun Sep 11 12:51:05 2022 UTC (14 months, 2 weeks ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2023Q1-base,
pkgsrc-2023Q1,
pkgsrc-2022Q4-base,
pkgsrc-2022Q4,
pkgsrc-2022Q3-base,
pkgsrc-2022Q3
Changes since 1.8: +2 -2
lines
Diff to previous 1.8 (colored)
*: bump PKGREVISION for flac shlib bump
Revision 1.8 / (download) - annotate - [select for diffs], Mon Mar 28 10:43:40 2022 UTC (20 months ago) by tnn
Branch: MAIN
CVS Tags: pkgsrc-2022Q2-base,
pkgsrc-2022Q2,
pkgsrc-2022Q1-base,
pkgsrc-2022Q1
Changes since 1.7: +2 -1
lines
Diff to previous 1.7 (colored)
a*/*: revbump(1) for libsndfile
Revision 1.7 / (download) - annotate - [select for diffs], Thu Dec 3 21:37:10 2020 UTC (2 years, 11 months ago) by nia
Branch: MAIN
CVS Tags: pkgsrc-2021Q4-base,
pkgsrc-2021Q4,
pkgsrc-2021Q3-base,
pkgsrc-2021Q3,
pkgsrc-2021Q2-base,
pkgsrc-2021Q2,
pkgsrc-2021Q1-base,
pkgsrc-2021Q1,
pkgsrc-2020Q4-base,
pkgsrc-2020Q4
Changes since 1.6: +5 -6
lines
Diff to previous 1.6 (colored)
vamp-plugin-sdk: Update to 2.10 Version 2.10, 2020-05-18 (minor feature release) * Add a method to PluginWrapper, the host-side base for adapters like PluginInputDomainAdapter that modify the processing behaviour of a plugin, that tells it to "disown" the wrapped plugin. The former behaviour, and still the default, is for the wrapper to take ownership of the wrapped plugin. The alternative behaviour makes it easier to mix these classes with some modern C++ styles that use managed pointers
Revision 1.6 / (download) - annotate - [select for diffs], Tue Aug 18 17:57:26 2020 UTC (3 years, 3 months ago) by leot
Branch: MAIN
CVS Tags: pkgsrc-2020Q3-base,
pkgsrc-2020Q3
Changes since 1.5: +2 -1
lines
Diff to previous 1.5 (colored)
*: revbump for libsndfile
Revision 1.5 / (download) - annotate - [select for diffs], Thu Feb 20 16:18:03 2020 UTC (3 years, 9 months ago) by nia
Branch: MAIN
CVS Tags: pkgsrc-2020Q2-base,
pkgsrc-2020Q2,
pkgsrc-2020Q1-base,
pkgsrc-2020Q1
Changes since 1.4: +7 -5
lines
Diff to previous 1.4 (colored)
vamp-plugin-sdk: Update to 2.9.0 Version 2.9, 2019-11-13 (maintenance release) * Fix non-thread-safe behaviour in PluginAdapter. Plugins built using the adapter classes in version 2.8 or earlier cannot safely be used simultaneously across threads with other instances of themselves or of other plugins in the same library (i.e. shared object). Hosts have been required to provide synchronisation for such cases. Version 2.9 introduces synchronisation in the plugin, making this usage safe. Unfortunately this does not make host code safe when using older plugin builds, as the problem and its fix are in the plugin side of the SDK. Caution is still required, but this fix does allow updated plugin builds to avoid problems with some existing hosts * Change required C++ language standard from C++98 to C++11. This is because of the use of std::mutex in the above fix
Revision 1.4 / (download) - annotate - [select for diffs], Wed Feb 12 02:50:13 2020 UTC (3 years, 9 months ago) by nia
Branch: MAIN
Changes since 1.3: +8 -1
lines
Diff to previous 1.3 (colored)
vamp-plugin-sdk: Fix usage of -ldl in pkgconfig file
Revision 1.3 / (download) - annotate - [select for diffs], Sat Nov 23 11:46:35 2019 UTC (4 years ago) by nia
Branch: MAIN
CVS Tags: pkgsrc-2019Q4-base,
pkgsrc-2019Q4
Changes since 1.2: +3 -1
lines
Diff to previous 1.2 (colored)
vamp-plugin-sdk: Remove unsupported linker args on SunOS
Revision 1.2 / (download) - annotate - [select for diffs], Fri Jul 26 15:31:08 2019 UTC (4 years, 4 months ago) by nia
Branch: MAIN
CVS Tags: pkgsrc-2019Q3-base,
pkgsrc-2019Q3
Changes since 1.1: +8 -16
lines
Diff to previous 1.1 (colored)
vamp-plugin-sdk: Update to 2.8.0 Version 2.8, 2019-02-07 (maintenance and minor feature release) * When running in a 32-bit process within 64-bit Windows (WoW64), use the VAMP_PATH_32 environment variable instead of VAMP_PATH (hosts running in this context already use "Program Files (x86)" instead of Program Files) * Fix off-by-one rounding errors in frame-to-ns conversions. Unlike the other changes here which are invisible to plugin code, this change can lead to different results in the lowest significant figures from existing plugins if relinked against the newer code * Fix path environment variable character encoding handling on Windows * Fix theoretical possibility of integer overflow in RealTime constructor * Fix use of undefined behaviour in PluginRateExtractor Version 2.7.1, 2017-03-06 (maintenance release) * Fix inclusion mechanism for FFTs which could cause a host application to crash in certain circumstances due to conflicting versions of C-linkage symbols Version 2.7, 2017-02-24 (maintenance and minor feature release) * Add ability to PluginLoader to list plugins only in (or not in) certain library files * Fix fixed-sample-rate output timestamps in printout from the simple host, and add regression test script using test plugin * Switch the convenience FFT interface for plugin usage from the very slow reference implementation previously provided, to the somewhat faster KissFFT * Add a top-secret compiler flag to switch internal FFTs to single- precision only * Fix some small but long-standing memory leaks and minor bugs
Revision 1.1 / (download) - annotate - [select for diffs], Sun Dec 27 23:35:33 2015 UTC (7 years, 11 months ago) by kamil
Branch: MAIN
CVS Tags: pkgsrc-2019Q2-base,
pkgsrc-2019Q2,
pkgsrc-2019Q1-base,
pkgsrc-2019Q1,
pkgsrc-2018Q4-base,
pkgsrc-2018Q4,
pkgsrc-2018Q3-base,
pkgsrc-2018Q3,
pkgsrc-2018Q2-base,
pkgsrc-2018Q2,
pkgsrc-2018Q1-base,
pkgsrc-2018Q1,
pkgsrc-2017Q4-base,
pkgsrc-2017Q4,
pkgsrc-2017Q3-base,
pkgsrc-2017Q3,
pkgsrc-2017Q2-base,
pkgsrc-2017Q2,
pkgsrc-2017Q1-base,
pkgsrc-2017Q1,
pkgsrc-2016Q4-base,
pkgsrc-2016Q4,
pkgsrc-2016Q3-base,
pkgsrc-2016Q3,
pkgsrc-2016Q2-base,
pkgsrc-2016Q2,
pkgsrc-2016Q1-base,
pkgsrc-2016Q1
Import vamp-plugin-sdk 2.6 as audio/vamp-plugin-sdk Vamp is an audio processing plugin system for plugins that extract descriptive information from audio typically referred to as audio analysis plugins or audio feature extraction plugins. Just like an audio effects plugin (such as a VST), a Vamp plugin is a binary module that can be loaded up by a host application and fed audio data. However, unlike an effects plugin, a Vamp plugin generates not more audio, but some sort of symbolic information. Typical things that a Vamp plugin might calculate include the locations of moments such as note onset times, visualisable representations of the audio such as spectrograms, or curve data such as power or fundamental frequency.