├── .hgignore ├── .hgsub ├── .hgsubstate ├── .hgtags ├── COPYING.rst ├── MANIFEST.in ├── Makefile.inc ├── Makefile.linux ├── Makefile.osx ├── README.rst ├── native ├── FloatConversion.h ├── PyPluginObject.cpp ├── PyPluginObject.h ├── PyRealTime.cpp ├── PyRealTime.h ├── StringConversion.h ├── VectorConversion.cpp ├── VectorConversion.h └── vampyhost.cpp ├── setup.py ├── test ├── test_collect.py ├── test_frames.py ├── test_metadata.py ├── test_plugin_metadata.py ├── test_process.py ├── test_process_block.py └── test_realtime.py └── vamp ├── __init__.py ├── collect.py ├── frames.py ├── load.py └── process.py /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vamp-plugins/vampy-host/HEAD/.hgignore -------------------------------------------------------------------------------- /.hgsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vamp-plugins/vampy-host/HEAD/.hgsub -------------------------------------------------------------------------------- /.hgsubstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vamp-plugins/vampy-host/HEAD/.hgsubstate -------------------------------------------------------------------------------- /.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vamp-plugins/vampy-host/HEAD/.hgtags -------------------------------------------------------------------------------- /COPYING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vamp-plugins/vampy-host/HEAD/COPYING.rst -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vamp-plugins/vampy-host/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vamp-plugins/vampy-host/HEAD/Makefile.inc -------------------------------------------------------------------------------- /Makefile.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vamp-plugins/vampy-host/HEAD/Makefile.linux -------------------------------------------------------------------------------- /Makefile.osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vamp-plugins/vampy-host/HEAD/Makefile.osx -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vamp-plugins/vampy-host/HEAD/README.rst -------------------------------------------------------------------------------- /native/FloatConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vamp-plugins/vampy-host/HEAD/native/FloatConversion.h -------------------------------------------------------------------------------- /native/PyPluginObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vamp-plugins/vampy-host/HEAD/native/PyPluginObject.cpp -------------------------------------------------------------------------------- /native/PyPluginObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vamp-plugins/vampy-host/HEAD/native/PyPluginObject.h -------------------------------------------------------------------------------- /native/PyRealTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vamp-plugins/vampy-host/HEAD/native/PyRealTime.cpp -------------------------------------------------------------------------------- /native/PyRealTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vamp-plugins/vampy-host/HEAD/native/PyRealTime.h -------------------------------------------------------------------------------- /native/StringConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vamp-plugins/vampy-host/HEAD/native/StringConversion.h -------------------------------------------------------------------------------- /native/VectorConversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vamp-plugins/vampy-host/HEAD/native/VectorConversion.cpp -------------------------------------------------------------------------------- /native/VectorConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vamp-plugins/vampy-host/HEAD/native/VectorConversion.h -------------------------------------------------------------------------------- /native/vampyhost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vamp-plugins/vampy-host/HEAD/native/vampyhost.cpp -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vamp-plugins/vampy-host/HEAD/setup.py -------------------------------------------------------------------------------- /test/test_collect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vamp-plugins/vampy-host/HEAD/test/test_collect.py -------------------------------------------------------------------------------- /test/test_frames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vamp-plugins/vampy-host/HEAD/test/test_frames.py -------------------------------------------------------------------------------- /test/test_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vamp-plugins/vampy-host/HEAD/test/test_metadata.py -------------------------------------------------------------------------------- /test/test_plugin_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vamp-plugins/vampy-host/HEAD/test/test_plugin_metadata.py -------------------------------------------------------------------------------- /test/test_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vamp-plugins/vampy-host/HEAD/test/test_process.py -------------------------------------------------------------------------------- /test/test_process_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vamp-plugins/vampy-host/HEAD/test/test_process_block.py -------------------------------------------------------------------------------- /test/test_realtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vamp-plugins/vampy-host/HEAD/test/test_realtime.py -------------------------------------------------------------------------------- /vamp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vamp-plugins/vampy-host/HEAD/vamp/__init__.py -------------------------------------------------------------------------------- /vamp/collect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vamp-plugins/vampy-host/HEAD/vamp/collect.py -------------------------------------------------------------------------------- /vamp/frames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vamp-plugins/vampy-host/HEAD/vamp/frames.py -------------------------------------------------------------------------------- /vamp/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vamp-plugins/vampy-host/HEAD/vamp/load.py -------------------------------------------------------------------------------- /vamp/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vamp-plugins/vampy-host/HEAD/vamp/process.py --------------------------------------------------------------------------------