Mercurial > hg > vampy-host
view vampyhost.h @ 8:db72f98403b4 lf-numpy-arrays
Working on the code so that it accepts numpy n-dim arrays directly (output of scikits.audiolab). Not working for stereo.
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Thu, 14 Mar 2013 11:37:07 +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