aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/test_filter.c
blob: 8c822929be03dedb8610a1124a9acd6c4d96f2d6 (plain)
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
#include <stdio.h>
#include <stdint.h>
#include <math.h>
#include <string.h>
#include "../common/filter.h"
#include "../common/debug.h"

#define level2db(level)		(20 * log10(level))
#define db2level(db)		pow(10, (double)db / 20.0)

#define SAMPLERATE	48000

static double get_level(double *samples)
{
#if 0
	int i;
	double last = 0, envelope = 0;
	int up = 0;

	for (i = SAMPLERATE/2; i < SAMPLERATE; i++) {
		if (last < samples[i]) {
			up = 1;
		} else if (last > samples[i]) {
			if (up) {
				if (last > envelope)
					envelope = last;
			}
			up = 0;
		}
		last = samples[i];
	}
#else
	int i;
	double envelope = 0;
	for (i = SAMPLERATE/2; i < SAMPLERATE; i++) {
		if (samples[i] > envelope)
			envelope = samples[i];
	}
#endif

	return envelope;
}

static void gen_samples(double *samples, double freq)
{
	int i;
	double value;

	for (i = 0; i < SAMPLERATE; i++) {
		value = cos(2.0 * M_PI * freq / (double)SAMPLERATE * (double)i);
		samples[i] = value;
	}
}

int main(void)
{
	filter_t filter_low;
	filter_t filter_high;
	double samples[SAMPLERATE];
	double level;
	int iter = 2;
	int i;

	debuglevel = DEBUG_DEBUG;

	printf("testing low-pass filter with %d iterations\n", iter);

	filter_lowpass_init(&filter_low, 1000.0, SAMPLERATE, iter);

	for (i = 0; i < 4001; i += 100) {
		gen_samples(samples, (double)i);
		filter_process(&filter_low, samples, SAMPLERATE);
		level = get_level(samples);
		printf("%4d Hz: %.1f dB", i, level2db(level));
		if (i == 1000)
			printf(" cutoff\n");
		else if (i == 2000)
			printf(" double frequency\n");
		else if (i == 4000)
			printf(" quad frequency\n");
		else
			printf("\n");
	}

	printf("testing high-pass filter with %d iterations\n", iter);

	filter_highpass_init(&filter_high, 2000.0, SAMPLERATE, iter);

	for (i = 0; i < 4001; i += 100) {
		gen_samples(samples, (double)i);
		filter_process(&filter_high, samples, SAMPLERATE);
		level = get_level(samples);
		printf("%4d Hz: %.1f dB", i, level2db(level));
		if (i == 2000)
			printf(" cutoff\n");
		else if (i == 1000)
			printf(" half frequency\n");
		else if (i == 500)
			printf(" quarter frequency\n");
		else
			printf("\n");
	}

	printf("testing band-pass filter with %d iterations\n", iter);

	filter_lowpass_init(&filter_low, 2000.0, SAMPLERATE, iter);
	filter_highpass_init(&filter_high, 1000.0, SAMPLERATE, iter);

	for (i = 0; i < 4001; i += 100) {
		gen_samples(samples, (double)i);
		filter_process(&filter_low, samples, SAMPLERATE);
		filter_process(&filter_high, samples, SAMPLERATE);
		level = get_level(samples);
		printf("%4d Hz: %.1f dB", i, level2db(level));
		if (i == 1000)
			printf(" cutoff high\n");
		else if (i == 2000)
			printf(" cutoff low\n");
		else
			printf("\n");
	}

	return 0;
}