comparison 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
comparison
equal deleted inserted replaced
17:9c108ad04e9b 18:530bf5009ee2
1
2 package org.vamp_plugins;
3
4 public class Feature {
5 public boolean hasTimestamp;
6 public RealTime timestamp;
7 public boolean hasDuration;
8 public RealTime duration;
9 public float[] values;
10 public String label;
11 Feature() {
12 hasTimestamp = false; hasDuration = false;
13 }
14 };
15