summaryrefslogtreecommitdiff
path: root/libs/qm-dsp/base/Pitch.cpp
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-03-02 12:37:39 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-03-02 12:37:39 +0000
commit3deba1921bcf5bddd8bea9846a203c92b6c9239d (patch)
tree8b2e00405337396918ff28e282df14e958b84bb9 /libs/qm-dsp/base/Pitch.cpp
parentfa41cfef580b2c8c04adec5b47d6cfa415ca6251 (diff)
add queen mary DSP library
git-svn-id: svn://localhost/ardour2/branches/3.0@9029 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/qm-dsp/base/Pitch.cpp')
-rw-r--r--libs/qm-dsp/base/Pitch.cpp46
1 files changed, 46 insertions, 0 deletions
diff --git a/libs/qm-dsp/base/Pitch.cpp b/libs/qm-dsp/base/Pitch.cpp
new file mode 100644
index 0000000000..9ba8b4b3f7
--- /dev/null
+++ b/libs/qm-dsp/base/Pitch.cpp
@@ -0,0 +1,46 @@
+/* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
+
+/*
+ QM DSP library
+ Centre for Digital Music, Queen Mary, University of London.
+ This file Copyright 2006 Chris Cannam.
+
+ This program is free software; you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation; either version 2 of the
+ License, or (at your option) any later version. See the file
+ COPYING included with this distribution for more information.
+*/
+
+#include "Pitch.h"
+
+#include <math.h>
+
+float
+Pitch::getFrequencyForPitch(int midiPitch,
+ float centsOffset,
+ float concertA)
+{
+ float p = float(midiPitch) + (centsOffset / 100);
+ return concertA * powf(2.0, (p - 69.0) / 12.0);
+}
+
+int
+Pitch::getPitchForFrequency(float frequency,
+ float *centsOffsetReturn,
+ float concertA)
+{
+ float p = 12.0 * (log(frequency / (concertA / 2.0)) / log(2.0)) + 57.0;
+
+ int midiPitch = int(p + 0.00001);
+ float centsOffset = (p - midiPitch) * 100.0;
+
+ if (centsOffset >= 50.0) {
+ midiPitch = midiPitch + 1;
+ centsOffset = -(100.0 - centsOffset);
+ }
+
+ if (centsOffsetReturn) *centsOffsetReturn = centsOffset;
+ return midiPitch;
+}
+