view songparts/libmain.cpp @ 35:d6bb46a1e70c slimline

Fix big memory leak
author Chris Cannam
date Fri, 11 May 2012 17:37:49 +0100
parents 1e34111baea5
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;
    }
}