view tuning-difference/tuning-difference.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 ce1f0e2a1f75
children
line wrap: on
line source

#include "PiperExport.h"
#include "TuningDifference.h"

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

static std::string libname("tuning-difference");

static PiperAdapter<TuningDifference>
tuningDifferenceAdapter(
    libname,
    { "Key and Tonality" },
    {
        { "cents",
            { "" }
        },
        { "tuningfreq",
            { "" }
        },
        { "reffeature",
            { "" }
        },
        { "otherfeature",
            { "" }
        },
        { "rotfeature",
            { "" }
        }
    }
    );

static PiperPluginLibrary library({
    &tuningDifferenceAdapter
});

PIPER_EXPORT_LIBRARY(library);