Mercurial > hg > segmenter-vamp-plugin
view songparts/libmain.cpp @ 9:1e34111baea5 slimline
Branch removing duplicates of our other libraries
author | Chris Cannam |
---|---|
date | Thu, 12 Apr 2012 11:45:13 +0100 |
parents | f44aa6d29642 |
children |
line wrap: on
line source
/* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ /* QM Vamp Plugin Set Centre for Digital Music, Queen Mary, University of London. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. See the file COPYING included with this distribution for more information. */ #include <vamp/vamp.h> #include <vamp-sdk/PluginAdapter.h> #include "SongParts.h" static Vamp::PluginAdapter<SongPartitioner> songPartitionerAdapter; const VampPluginDescriptor *vampGetPluginDescriptor(unsigned int vampApiVersion, unsigned int index) { if (vampApiVersion < 1) return 0; switch (index) { case 0: return songPartitionerAdapter.getDescriptor(); default: return 0; } }