forked from xwax/xwax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pitch.h
71 lines (55 loc) · 1.7 KB
/
pitch.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
69
70
71
/*
* Copyright (C) 2021 Mark Hills <mark@xwax.org>
*
* This file is part of "xwax".
*
* "xwax" is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License, version 3 as
* published by the Free Software Foundation.
*
* "xwax" is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <https://www.gnu.org/licenses/>.
*
*/
#ifndef PITCH_H
#define PITCH_H
/* Values for the filter concluded experimentally */
#define ALPHA (1.0/512)
#define BETA (ALPHA/256)
/* State of the pitch calculation filter */
struct pitch {
double dt, x, v;
};
/* Prepare the filter for observations every dt seconds */
static inline void pitch_init(struct pitch *p, double dt)
{
p->dt = dt;
p->x = 0.0;
p->v = 0.0;
}
/* Input an observation to the filter; in the last dt seconds the
* position has moved by dx.
*
* Because the vinyl uses timestamps, the values for dx are discrete
* rather than smooth. */
static inline void pitch_dt_observation(struct pitch *p, double dx)
{
double predicted_x, predicted_v, residual_x;
predicted_x = p->x + p->v * p->dt;
predicted_v = p->v;
residual_x = dx - predicted_x;
p->x = predicted_x + residual_x * ALPHA;
p->v = predicted_v + residual_x * BETA / p->dt;
p->x -= dx; /* relative to previous */
}
/* Get the pitch after filtering */
static inline double pitch_current(struct pitch *p)
{
return p->v;
}
#endif