forked from mixxxdj/mixxx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanalyserbeats.h
44 lines (36 loc) · 1.17 KB
/
analyserbeats.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/* Beat Tracking test via vamp-plugins
* analyserbeats.h
*
* Created on: 16/mar/2011
* Author: Vittorio Colao
*/
#ifndef ANALYSERBEATS_H_
#define ANALYSERBEATS_H_
#include <QHash>
#include "analyser.h"
#include "configobject.h"
#include "vamp/vampanalyser.h"
class AnalyserBeats: public Analyser {
public:
AnalyserBeats(ConfigObject<ConfigValue>* pConfig);
virtual ~AnalyserBeats();
bool initialise(TrackPointer tio, int sampleRate, int totalSamples);
bool loadStored(TrackPointer tio) const;
void process(const CSAMPLE *pIn, const int iLen);
void cleanup(TrackPointer tio);
void finalise(TrackPointer tio);
private:
static QHash<QString, QString> getExtraVersionInfo(
QString pluginId, bool bPreferencesFastAnalysis);
QVector<double> correctedBeats(QVector<double> rawbeats);
ConfigObject<ConfigValue>* m_pConfig;
VampAnalyser* m_pVamp;
QString m_pluginId;
bool m_bPreferencesReanalyzeOldBpm;
bool m_bPreferencesFixedTempo;
bool m_bPreferencesOffsetCorrection;
bool m_bPreferencesFastAnalysis;
int m_iSampleRate, m_iTotalSamples;
int m_iMinBpm, m_iMaxBpm;
};
#endif /* ANALYSERVAMPTEST_H_ */