-
Notifications
You must be signed in to change notification settings - Fork 2
/
audiotest.h
68 lines (47 loc) · 1.16 KB
/
audiotest.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#ifndef AUDIOTEST_H
#define AUDIOTEST_H
#include <memory>
#include <array>
#include <QObject>
#include <QAudioInput>
#include "fft.h"
class AudioReader : public QObject
{
Q_OBJECT
public:
typedef std::int16_t Sample;
signals:
void incoming(std::int16_t const* data, std::size_t sampleCount);
void inputLevel(int level);
public slots:
void onNotify();
void onReadyRead();
void setGain(int gain);
void setBatchRate(int ratePerSec);
public:
explicit AudioReader(QObject *parent = nullptr);
~AudioReader();
void start();
void stop();
int sampleRate() const;
int getBatchRate() const noexcept;
private:
void timerEvent(QTimerEvent * event);
Sample updateLevel(Sample const* st, Sample const* en);
typedef FFT<double, 13> FFTType;
std::unique_ptr<FFTType> fft;
QAudioInput *ai;
QAudioFormat afmt;
QIODevice *aio;
int batchRatePerSec;
int batchSize;
Sample level;
float inverseGain;
std::array<Sample,3200> buf;
int bufLevel;
Sample result[FFTType::halfPoints];
Sample quantizedResult[FFTType::halfPoints];
signals:
public slots:
};
#endif // AUDIOTEST_H