Mercurial > hg > lowfreq
view plugins.cpp @ 6:e502cf649389
Fixes to bin counting, etc
author | Chris Cannam |
---|---|
date | Tue, 11 Mar 2014 18:36:24 +0000 |
parents | b26975f6a1f1 |
children | 4a777e3b515e |
line wrap: on
line source
#include <vamp/vamp.h> #include <vamp-sdk/PluginAdapter.h> #include "LowFreq.h" static Vamp::PluginAdapter<LowFreq> lowFreqAdapter; const VampPluginDescriptor * vampGetPluginDescriptor(unsigned int version, unsigned int index) { if (version < 1) return 0; switch (index) { case 0: return lowFreqAdapter.getDescriptor(); default: return 0; } }