Mercurial > hg > vampy-host
view vampyhost.h @ 9:703f52bf8a2e lf-numpy-arrays
Printing a few results
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Thu, 14 Mar 2013 16:52:44 +0000 |
parents | 825d787f12df |
children | 7987e3123909 |
line wrap: on
line source
/* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ #ifndef _VAMPYHOST_H_ #define _VAMPYHOST_H_ #include "vamp-hostsdk/Plugin.h" #include <string> //structure for holding plugin instance data typedef struct { std::string key; std::string identifier; bool isInitialised; float inputSampleRate; size_t channels; size_t blockSize; size_t stepSize; Vamp::Plugin::FeatureSet output; } PyPluginDescriptor; #endif