summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn Glover <j@johnglover.net>2012-08-11 20:00:14 +0100
committerJohn Glover <j@johnglover.net>2012-08-11 20:00:14 +0100
commit773e21b80a38de52ed59738a152ef34d001e4cee (patch)
treed816ae7f2a658ac457747df3652fd328ab93334f /src
parent1a9b414bc24a894c602d2d5794ebea1ce612c713 (diff)
downloadsimpl-773e21b80a38de52ed59738a152ef34d001e4cee.tar.gz
simpl-773e21b80a38de52ed59738a152ef34d001e4cee.tar.bz2
simpl-773e21b80a38de52ed59738a152ef34d001e4cee.zip
[sndobj] Add C++ implementation of SndObjPartialTracking.
Diffstat (limited to 'src')
-rw-r--r--src/simpl/partial_tracking.cpp94
-rw-r--r--src/simpl/partial_tracking.h26
2 files changed, 120 insertions, 0 deletions
diff --git a/src/simpl/partial_tracking.cpp b/src/simpl/partial_tracking.cpp
index 34da931..27b7e12 100644
--- a/src/simpl/partial_tracking.cpp
+++ b/src/simpl/partial_tracking.cpp
@@ -189,7 +189,101 @@ Peaks SMSPartialTracking::update_partials(Frame* frame) {
p->frequency = _data.pFSinFreq[i];
p->phase = _data.pFSinPha[i];
peaks.push_back(p);
+ frame->add_partial(p);
+ }
+
+ return peaks;
+}
+
+// ---------------------------------------------------------------------------
+// SndObjPartialTracking
+// ---------------------------------------------------------------------------
+
+SndObjPartialTracking::SndObjPartialTracking() {
+ _threshold = 0.003;
+ _num_bins = 1025;
+ _input = new SndObj();
+ _analysis = new SinAnal(_input, _num_bins, _threshold, _max_partials);
+ _peak_amplitude = NULL;
+ _peak_frequency = NULL;;
+ _peak_phase = NULL;
+ init_peaks();
+}
+
+SndObjPartialTracking::~SndObjPartialTracking() {
+ delete _input;
+ delete _analysis;
+
+ _input = NULL;
+ _analysis = NULL;
+
+ delete [] _peak_amplitude;
+ delete [] _peak_frequency;
+ delete [] _peak_phase;
+
+ _peak_amplitude = NULL;
+ _peak_frequency = NULL;;
+ _peak_phase = NULL;
+}
+
+void SndObjPartialTracking::init_peaks() {
+ if(_peak_amplitude) {
+ delete [] _peak_amplitude;
+ }
+ if(_peak_frequency) {
+ delete [] _peak_frequency;
+ }
+ if(_peak_phase) {
+ delete [] _peak_phase;
+ }
+
+ _peak_amplitude = new sample[_max_partials];
+ _peak_frequency = new sample[_max_partials];
+ _peak_phase = new sample[_max_partials];
+
+ memset(_peak_amplitude, 0.0, sizeof(sample) * _max_partials);
+ memset(_peak_frequency, 0.0, sizeof(sample) * _max_partials);
+ memset(_peak_phase, 0.0, sizeof(sample) * _max_partials);
+}
+
+void SndObjPartialTracking::max_partials(int new_max_partials) {
+ _max_partials = new_max_partials;
+ _analysis->Set("max tracks", new_max_partials);
+}
+
+Peaks SndObjPartialTracking::update_partials(Frame* frame) {
+ int num_peaks = _max_partials;
+ if(num_peaks > frame->num_peaks()) {
+ num_peaks = frame->num_peaks();
+ }
+
+ for(int i = 0; i < num_peaks; i++) {
+ _peak_amplitude[i] = frame->peak(i)->amplitude;
+ _peak_frequency[i] = frame->peak(i)->frequency;
+ _peak_phase[i] = frame->peak(i)->phase;
+ }
+
+ _analysis->SetPeaks(_max_partials, _peak_amplitude,
+ _max_partials, _peak_frequency,
+ _max_partials, _peak_phase);
+ _analysis->PartialTracking();
+
+ int num_partials = _analysis->GetTracks();
+ Peaks peaks;
+
+ for(int i = 0; i < num_partials; i++) {
+ Peak* p = new Peak();
+ p->amplitude = _analysis->Output(i * 3);
+ p->frequency = _analysis->Output((i * 3) + 1);
+ p->phase = _analysis->Output((i * 3) + 2);
+ peaks.push_back(p);
+ frame->add_partial(p);
+ }
+
+ for(int i = num_partials; i < _max_partials; i++) {
+ Peak* p = new Peak();
+ peaks.push_back(p);
frame->add_partial(p);
}
diff --git a/src/simpl/partial_tracking.h b/src/simpl/partial_tracking.h
index 964d959..f94886e 100644
--- a/src/simpl/partial_tracking.h
+++ b/src/simpl/partial_tracking.h
@@ -7,6 +7,11 @@ extern "C" {
#include "sms.h"
}
+#include "SndObj.h"
+#include "HammingTable.h"
+#include "IFGram.h"
+#include "SinAnal.h"
+
using namespace std;
namespace simpl
@@ -67,6 +72,27 @@ class SMSPartialTracking : public PartialTracking {
Peaks update_partials(Frame* frame);
};
+// ---------------------------------------------------------------------------
+// SndObjPartialTracking
+// ---------------------------------------------------------------------------
+class SndObjPartialTracking : public PartialTracking {
+ private:
+ sample _threshold;
+ int _num_bins;
+ SndObj* _input;
+ SinAnal* _analysis;
+ sample* _peak_amplitude;
+ sample* _peak_frequency;
+ sample* _peak_phase;
+ void init_peaks();
+
+ public:
+ SndObjPartialTracking();
+ ~SndObjPartialTracking();
+ void max_partials(int new_max_partials);
+ Peaks update_partials(Frame* frame);
+};
+
} // end of namespace Simpl