Mercurial > hg > jvamp
view org/vamp_plugins/Plugin.java @ 25:b568b30c167f
Enum constant names -> caps
author | Chris Cannam |
---|---|
date | Thu, 15 Nov 2012 14:40:34 +0000 |
parents | cd430fbf6795 |
children | f2914a92b553 |
line wrap: on
line source
package org.vamp_plugins; import java.util.TreeMap; import java.util.ArrayList; public class Plugin { private long nativeHandle; protected Plugin(long handle) { nativeHandle = handle; } public native void dispose(); // PluginBase methods public native int getVampApiVersion(); public native String getIdentifier(); public native String getName(); public native String getDescription(); public native String getMaker(); public native String getCopyright(); public native int getPluginVersion(); public native ParameterDescriptor[] getParameterDescriptors(); public native float getParameter(String identifier); public native void setParameter(String identifier, float value); public native String[] getPrograms(); public native String getCurrentProgram(); public native void selectProgram(String program); // Plugin methods public native boolean initialise(int inputChannels, int stepSize, int blockSize); public native void reset(); public static enum InputDomain { TIME_DOMAIN, FREQUENCY_DOMAIN }; public native InputDomain getInputDomain(); public native int getPreferredBlockSize(); public native int getPreferredStepSize(); public native int getMinChannelCount(); public native int getMaxChannelCount(); public native OutputDescriptor[] getOutputDescriptors(); // "Pseudo-typedef antipattern - don't do this": http://www.ibm.com/developerworks/java/library/j-jtp02216/index.html // (I would like to!) // public class FeatureList extends ArrayList<Feature>; // public class FeatureSet extends TreeMap<Integer, FeatureList>; public TreeMap<Integer, ArrayList<Feature>> process(float[][] inputBuffers, RealTime timestamp) { return process(inputBuffers, 0, timestamp); } public native TreeMap<Integer, ArrayList<Feature>> process(float[][] inputBuffers, int offset, RealTime timestamp); public native TreeMap<Integer, ArrayList<Feature>> getRemainingFeatures(); }