diff org/vamp_plugins/Feature.java @ 18:530bf5009ee2

Pull out Feature to a separate file; JNI doesn't seem to be able to find its constructor otherwise. Also a couple of other fixes
author Chris Cannam
date Tue, 07 Feb 2012 12:12:36 +0000
parents
children f2914a92b553
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/org/vamp_plugins/Feature.java	Tue Feb 07 12:12:36 2012 +0000
@@ -0,0 +1,15 @@
+
+package org.vamp_plugins;
+
+public class Feature {
+    public boolean hasTimestamp;
+    public RealTime timestamp;
+    public boolean hasDuration;
+    public RealTime duration;
+    public float[] values;
+    public String label;
+    Feature() {
+	hasTimestamp = false; hasDuration = false;
+    }
+};
+