view tipic/tipic.cpp @ 56:5e9027b32179 tip master

Fixes for updated subrepos
author Chris Cannam <cannam@all-day-breakfast.com>
date Wed, 16 May 2018 15:51:14 +0100
parents 4d450d496793
children
line wrap: on
line source

#include "PiperExport.h"

#include "TipicVampPlugin.h"

using piper_vamp_js::PiperAdapter;
using piper_vamp_js::PiperPluginLibrary;

static std::string libname("tipic");

static PiperAdapter<Tipic>
tipicAdapter(
    libname,
    { "Visualisation" },
    {
        { "pitch",
            { "http://purl.org/ontology/af/Spectrogram" }
        },
        { "pitch-smoothed",
            { "" }
        },
        { "chroma",
            { "http://purl.org/ontology/af/Chromagram" }
        },
        { "chroma-smoothed",
            { "" }
        },
        { "clp",
            { "http://purl.org/ontology/af/Chromagram" }
        },
        { "clp-smoothed",
            { "" }
        },
        { "cens",
            { "" }
        },
        { "crp",
            { "http://purl.org/ontology/af/Chromagram" }
        },
        { "crp-smoothed",
            { "" }
        }
    }
    );

static PiperPluginLibrary library({
    &tipicAdapter
});

PIPER_EXPORT_LIBRARY(library);