diff options
| author | Alexander Levin <al.le@rockbox.org> | 2009-09-20 17:10:16 +0000 |
|---|---|---|
| committer | Alexander Levin <al.le@rockbox.org> | 2009-09-20 17:10:16 +0000 |
| commit | 72578ef558cb175ac87c078df62ceefcf38bf225 (patch) | |
| tree | ab369c6dc4739eeff12493cb02aa806a4c8ea16e | |
| parent | 8b32a2d473fff5e1e52a51ad71f0a149f1cc7cf6 (diff) | |
| download | rockbox-72578ef558cb175ac87c078df62ceefcf38bf225.zip rockbox-72578ef558cb175ac87c078df62ceefcf38bf225.tar.gz rockbox-72578ef558cb175ac87c078df62ceefcf38bf225.tar.bz2 rockbox-72578ef558cb175ac87c078df62ceefcf38bf225.tar.xz | |
Clarify the unit of note frequency
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22760 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/plugins/pitch_detector.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/pitch_detector.c b/apps/plugins/pitch_detector.c index 461b856..7e8cfea 100644 --- a/apps/plugins/pitch_detector.c +++ b/apps/plugins/pitch_detector.c @@ -262,7 +262,7 @@ static int recording=0; struct note_entry { const char *name; /* Name of the note, e.g. "A#" */ - const fixed freq; /* Note frequency */ + const fixed freq; /* Note frequency, Hz */ const fixed logfreq; /* log2(frequency) */ }; |