# HG changeset patch # User Chris Cannam # Date 1401449191 -3600 # Fri May 30 12:26:31 2014 +0100 # Branch jni # Node ID 5ed32cdbacc72fdb4fa828e862a57614d1e50d19 # Parent 54b259b2941f80d9de812b22f19071e6761c2042 Doc diff --git a/com/breakfastquay/minibpm/MiniBpm.java b/com/breakfastquay/minibpm/MiniBpm.java --- a/com/breakfastquay/minibpm/MiniBpm.java +++ b/com/breakfastquay/minibpm/MiniBpm.java @@ -67,7 +67,9 @@ public native void setBeatsPerBar(int bpb); /** - * Get the current number of beats per bar. + * Get the current number of beats per bar. (This simply returns + * the value set by setBeatsPerBar, which is a hint to the tempo + * estimator: the estimator does not estimate meter.) */ public native int getBeatsPerBar(); diff --git a/src/MiniBpm.h b/src/MiniBpm.h --- a/src/MiniBpm.h +++ b/src/MiniBpm.h @@ -70,7 +70,9 @@ void setBeatsPerBar(int bpb); /** - * Get the current number of beats per bar. + * Get the current number of beats per bar. (This simply returns + * the value set by setBeatsPerBar, which is a hint to the tempo + * estimator: the estimator does not estimate meter.) */ int getBeatsPerBar() const;