-
Notifications
You must be signed in to change notification settings - Fork 18
/
pitch_detector.c
203 lines (181 loc) · 5.57 KB
/
pitch_detector.c
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
#include "pitch_detector.h"
#include "lv2.h"
#ifdef DEBUGPLOT
#include <time.h>
void setpixel8(SDL_Surface *screen, int x, int y,Uint32 colour )
{
Uint8 *pixmem8 = (Uint8*) screen->pixels + y*1024 + x;
*pixmem8 = colour;
}
#endif
const float * obtain_autocovariance(PitchDetector *pdetector, fft_vars* fftvars, CircularBuffer* buffer,long int N) {
#ifdef DEBUGPLOT
if(!printed) {
SDL_FillRect( screen, NULL, 0 );
}
Uint32 colour= SDL_MapRGB( screen->format, 255,255,255);
#endif
// Window and fill FFT buffer
long int i;
for (i=0; i<N; i++) {
float windowval=pdetector->cbwindow[i];
float inputbuffer=buffer->cbi[(buffer->cbiwr-i+N)%N];
fftvars->ffttime[i] = inputbuffer*windowval;
#ifdef DEBUGPLOT
if(i&1 && !printed) {
setpixel8(screen,i/2,fftvars->ffttime[i]*-50+50,colour);
}
#endif
}
#ifdef DEBUGPLOT
if(!printed) {
printed=1;
}
#endif
// Calculate FFT
fft_forward(fftvars);
// Remove DC
fftvars->complex[0][0] = 0;
fftvars->complex[0][1] = 0;
long int Nf=N/2;
// Take magnitude squared
for (i=1; i<Nf; i++) {
fftvars->complex[i][0] = (fftvars->complex[i][0] )*(fftvars->complex[i][0]) + (fftvars->complex[i][1])*(fftvars->complex[i][1]);
fftvars->complex[i][1] = 0;
}
// Calculate IFFT
fft_inverse(fftvars);
// Normalize
const float noise_floor = 0.05; // To prevent rounding errors when quiet.
float tf = (float)1/fmax(fftvars->ffttime[0], noise_floor);
for (i=1; i<N; i++) {
// Mathematically x[i] <= x[0], but there can be rounding errors.
fftvars->ffttime[i] = fmin(fftvars->ffttime[i] * tf, 1.0);
}
fftvars->ffttime[0] = 1;
return fftvars->ffttime;
}
float get_pitch_period(PitchDetector * pdetector, const float* autocorr, unsigned long Nf, float fs) {
//MPM Algorithm, thanks to Philip McLeod, and Geoff Wyvill, adapted from their GPL Tartini program
// Calculate pitch period
// Division, so min and max are swapped.
float pperiod = 1 / *pdetector->p_pmax;
unsigned long nmax = (unsigned long)(fs / *pdetector->p_pmin);
if (nmax > pdetector->corrsize) {
nmax = pdetector->corrsize;
}
unsigned long nmin = (unsigned long)(fs / *pdetector->p_pmax);
const float* end=autocorr + nmax;
const float* start=autocorr + nmin;
//circular buffer of peaks.
const int numpeaks=2000;
const float* peaks[numpeaks];
memset(peaks,0, sizeof(float*) * numpeaks);
//current write pointer
const float** peakindex=peaks;
//end of buffer
const float** endpeak=peaks+numpeaks;
//Choose peak so far
const float** bestpeakindex=peaks;
//This tells us if the interval we are testing has a peak higher than all previous peaks. If not, we can ignore it, because it will never be picked.
bool newmaxima=false;
const float* i=autocorr;
//go to second zero-crossing
while(*i>=0 && i<end) i++;
while(*i<=0 && i<end) i++;
while(i<start) i++;
*peaks=i;
float peak=-2; //height of highest peak found
bool abovezero=true; //Was the last sample above zero?
while (i<end) {
if(*i<=0) {
//If the height of this last peak was bigger than all before it.
if(abovezero && newmaxima) {
//recalculate best peak index;
while(**bestpeakindex < *pdetector->p_ppickthresh * peak) {
bestpeakindex++;
if(bestpeakindex>=endpeak) {
bestpeakindex=peaks;
}
}
peakindex++;
if(peakindex>=endpeak) {
peakindex=peaks;
}
if(peakindex==bestpeakindex) {
//Our circular buffer wrapped around! This is bad! Should I throw an error or just return the best one we have so far?
fprintf(stderr,"TalentedHack Error! Peak picking buffer wrapped around! Very bad!\n");
break;
}
*peakindex=i;
newmaxima=false;
}
abovezero=false;
} else {
if (*i>peak) {
peak = *i;
newmaxima=true;
}
if(*i>**peakindex) {
*peakindex=i;
}
abovezero=true;
}
i++;
}
const float *bestpeak=*bestpeakindex;
if (peak>0) {
int peakindex=bestpeak-autocorr;
pdetector->confidence = (*bestpeak) * pdetector->acwinv[peakindex];
if (bestpeak<end) {
//Parabolically interpolate to find the peak
int denominator=2*bestpeak[0]-bestpeak[1]-bestpeak[-1];
if(denominator!=0) {
int numerator=bestpeak[1]-bestpeak[-1];
float fmax=peakindex+((float)numerator)/((float)denominator);
pperiod=fmax/fs;
} else {
pperiod=peakindex/fs;
}
} else {
pperiod = (float)(peakindex)/fs;
}
} else {
pdetector->confidence=0;
}
// Convert to semitones
if (pdetector->confidence>=*pdetector->p_vthresh) {
return pperiod;
} else {
return -1; //Could not find pitch;
}
}
void InstantiatePitchDetector(PitchDetector * pdetector,fft_vars* fftvars, unsigned long cbsize, double SampleRate) {
pdetector->corrsize=cbsize/2+1;
// Generate a window with a single raised cosine from N/4 to 3N/4
pdetector->cbwindow=(float*)calloc(cbsize, sizeof(float));
int i;
for (i=0; i<(cbsize/2 ); i++) {
pdetector->cbwindow[i+cbsize/4] = -0.5*cos(4*PI*i/(cbsize - 1)) + 0.5;
}
// ---- Calculate autocorrelation of window ----
pdetector->acwinv = calloc(cbsize, sizeof(float));
memcpy(fftvars->ffttime,pdetector->cbwindow,cbsize*sizeof(float));
fft_forward(fftvars);
for (i=0; i<pdetector->corrsize; i++) {
fftvars->complex[i][0] = (fftvars->complex[i][0] )*(fftvars->complex[i][0]) + (fftvars->complex[i][1])*(fftvars->complex[i][1]);
fftvars->complex[i][1] = 0;
}
fft_inverse(fftvars);
for (i=1; i<cbsize; i++) {
pdetector->acwinv[i] = fftvars->ffttime[i]/fftvars->ffttime[0];
if (pdetector->acwinv[i] > 0.000001) {
pdetector->acwinv[i] = (float)1/pdetector->acwinv[i];
}
else {
pdetector->acwinv[i] = 0;
}
}
pdetector->acwinv[0] = 1;
// ---- END Calculate autocorrelation of window ----
}