comparison 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
comparison
equal deleted inserted replaced
24:cd430fbf6795 25:b568b30c167f
35 int stepSize, 35 int stepSize,
36 int blockSize); 36 int blockSize);
37 37
38 public native void reset(); 38 public native void reset();
39 39
40 public static enum InputDomain { TimeDomain, FrequencyDomain }; 40 public static enum InputDomain { TIME_DOMAIN, FREQUENCY_DOMAIN };
41 public native InputDomain getInputDomain(); 41 public native InputDomain getInputDomain();
42 42
43 public native int getPreferredBlockSize(); 43 public native int getPreferredBlockSize();
44 public native int getPreferredStepSize(); 44 public native int getPreferredStepSize();
45 public native int getMinChannelCount(); 45 public native int getMinChannelCount();