2015-12-26 22:46:02 +03:00
|
|
|
#include <QAudioRecorder>
|
|
|
|
#include <QAudioProbe>
|
|
|
|
|
|
|
|
#include "audio/LinearFilter.hpp"
|
|
|
|
#include "audio/ZeroCross.hpp"
|
2015-12-27 20:31:26 +03:00
|
|
|
#include "scale/Scale.hpp"
|
2015-12-26 22:46:02 +03:00
|
|
|
|
|
|
|
class Tuner : public QObject {
|
|
|
|
Q_OBJECT
|
|
|
|
Q_PROPERTY(bool running READ GetRunning WRITE SetRunning NOTIFY runningChanged)
|
|
|
|
Q_PROPERTY(double freq READ GetFreq NOTIFY freqChanged)
|
2015-12-27 20:31:26 +03:00
|
|
|
Q_PROPERTY(double deviation READ GetDeviation NOTIFY deviationChanged)
|
|
|
|
Q_PROPERTY(int note READ GetNote NOTIFY noteChanged)
|
|
|
|
Q_PROPERTY(int octave READ GetOctave NOTIFY octaveChanged)
|
2016-01-02 12:19:37 +03:00
|
|
|
Q_PROPERTY(bool found READ GetFound NOTIFY foundChanged)
|
2015-12-27 20:31:26 +03:00
|
|
|
Q_PROPERTY(QString noteName READ GetNoteName NOTIFY noteNameChanged)
|
2015-12-26 22:46:02 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
QAudioRecorder *recorder;
|
|
|
|
QAudioEncoderSettings settings;
|
|
|
|
QAudioProbe *probe;
|
|
|
|
|
|
|
|
LinearFilter<int16_t> *high_filter;
|
|
|
|
ZeroCross<int16_t> *cross;
|
2015-12-27 20:31:26 +03:00
|
|
|
Scale *scale;
|
2015-12-26 22:46:02 +03:00
|
|
|
|
2016-01-02 12:19:37 +03:00
|
|
|
bool running, found;
|
2015-12-27 20:31:26 +03:00
|
|
|
double freq, deviation;
|
2015-12-29 23:32:57 +03:00
|
|
|
int note, octave, nb_sample_running;
|
2016-01-02 12:19:37 +03:00
|
|
|
int note_found, count_found, count_not_found;
|
2015-12-26 22:46:02 +03:00
|
|
|
|
|
|
|
static const int rate = 16000;
|
|
|
|
static const int defaultNbFrame = 1024;
|
|
|
|
static const int defaultFreqMin = 50;
|
|
|
|
static const int defaultFreqMax = 2000;
|
2015-12-29 23:32:57 +03:00
|
|
|
static const int nbSamplePreventRunning = rate * 40; // 40 seconds
|
2016-01-02 12:19:37 +03:00
|
|
|
/// number of analyses to confirm a note
|
|
|
|
static const int nbConfirm = 3;
|
|
|
|
/// number of analyses to drop a note
|
|
|
|
static const int nbDefect = 20;
|
|
|
|
|
2015-12-26 22:46:02 +03:00
|
|
|
|
|
|
|
inline void ComputeFrame(int16_t v);
|
2016-01-02 12:19:37 +03:00
|
|
|
void SetFound(int note, int octave, double deviation);
|
|
|
|
void SetNotFound();
|
2015-12-26 22:46:02 +03:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void AudioCb(const QAudioBuffer &buffer);
|
|
|
|
|
|
|
|
public:
|
|
|
|
Tuner();
|
|
|
|
~Tuner();
|
|
|
|
|
|
|
|
void Start();
|
|
|
|
void Stop();
|
|
|
|
|
2015-12-28 16:16:08 +03:00
|
|
|
void AudioAnalyse(const int16_t *buffer, int size);
|
|
|
|
|
2015-12-26 22:46:02 +03:00
|
|
|
bool GetRunning();
|
|
|
|
void SetRunning(bool r);
|
|
|
|
double GetFreq();
|
2015-12-27 20:31:26 +03:00
|
|
|
int GetNote();
|
|
|
|
int GetOctave();
|
|
|
|
double GetDeviation();
|
2016-01-02 12:19:37 +03:00
|
|
|
bool GetFound();
|
2015-12-28 16:16:08 +03:00
|
|
|
const char* GetNoteName();
|
2015-12-26 22:46:02 +03:00
|
|
|
|
|
|
|
signals:
|
|
|
|
void runningChanged();
|
|
|
|
void freqChanged();
|
2015-12-27 20:31:26 +03:00
|
|
|
void noteChanged();
|
|
|
|
void noteNameChanged();
|
|
|
|
void octaveChanged();
|
|
|
|
void deviationChanged();
|
2016-01-02 12:19:37 +03:00
|
|
|
void foundChanged();
|
2015-12-26 22:46:02 +03:00
|
|
|
};
|