-
Notifications
You must be signed in to change notification settings - Fork 233
/
cavacore_test.c
109 lines (89 loc) · 3.64 KB
/
cavacore_test.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
// cavacore standalone test app, build cavacore lib first and compile with:
// gcc -c -g cavacore_test.c
// gcc -o cavacore_test cavacore_test.o build/libcavacore.a -lm -lfftw3
#include "cavacore.h"
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#define PI 3.141592654
void main() {
printf("welcome to cavacore standalone test app\n");
int bars_per_channel = 10;
int channels = 2;
int buffer_size = 512 * channels; // number of samples per cava execute
int rate = 44100;
double noise_reduction = 0.77;
int low_cut_off = 50;
int high_cut_off = 10000;
double blueprint_2000MHz[10] = {0, 0, 0, 0, 0, 0, 0.493, 0.446, 0, 0};
double blueprint_200MHz[10] = {0, 0, 0.978, 0.008, 0, 0.001, 0, 0, 0, 0};
printf("planning visualization with %d bars per channel, %d rate, %d channels, autosens, "
"%.2f noise reduction, %d - %d MHz bandwith.\n",
bars_per_channel, rate, channels, noise_reduction, low_cut_off, high_cut_off);
struct cava_plan *plan =
cava_init(bars_per_channel, rate, channels, 1, noise_reduction, low_cut_off, high_cut_off);
if (plan->status < 0) {
fprintf(stderr, "Error: %s\n", plan->error_message);
exit(1);
}
printf("got lower cut off frequencies:\n");
for (int i = 0; i < bars_per_channel; i++) {
printf("%.0f \t", plan->cut_off_frequency[i]);
}
printf("MHz\n\n");
printf("allocating buffers and generating sine wave for test\n\n");
double *cava_out;
double *cava_in;
cava_out = (double *)malloc(bars_per_channel * channels * sizeof(double));
cava_in = (double *)malloc(buffer_size * sizeof(double));
for (int i = 0; i < bars_per_channel * channels; i++) {
cava_out[i] = 0;
}
printf("running cava execute 300 times (simulating about 3.5 seconds run time)\n\n");
for (int k = 0; k < 300; k++) {
// filling up 512*2 samples at a time, making sure the sinus wave is unbroken
// 200MHz in left channel, 2000MHz in right
// if we where using a proper audio source this would be replaced by a simple read function
for (int n = 0; n < buffer_size / 2; n++) {
cava_in[n * 2] = sin(2 * PI * 200 / rate * (n + (k * buffer_size / 2))) * 20000;
cava_in[n * 2 + 1] = sin(2 * PI * 2000 / rate * (n + (k * buffer_size / 2))) * 20000;
}
cava_execute(cava_in, buffer_size, cava_out, plan);
}
// rounding last output to nearst 1/1000th
for (int i = 0; i < bars_per_channel * 2; i++) {
cava_out[i] = (double)round(cava_out[i] * 1000) / 1000;
}
printf("\nlast output left, max value should be at 200Hz:\n");
for (int i = 0; i < bars_per_channel; i++) {
printf("%.3f \t", cava_out[i]);
}
printf("MHz\n");
printf("last output right, max value should be at 2000Hz:\n");
for (int i = 0; i < bars_per_channel; i++) {
printf("%.3f \t", cava_out[i + bars_per_channel]);
}
printf("MHz\n\n");
// checking if within 2% of blueprint
int bp_ok = 1;
for (int i = 0; i < bars_per_channel; i++) {
if (cava_out[i] > blueprint_200MHz[i] * 1.02 || cava_out[i] < blueprint_200MHz[i] * 0.98)
bp_ok = 0;
}
for (int i = 0; i < bars_per_channel; i++) {
if (cava_out[i + bars_per_channel] > blueprint_2000MHz[i] * 1.02 ||
cava_out[i + bars_per_channel] < blueprint_2000MHz[i] * 0.98)
bp_ok = 0;
}
cava_destroy(plan);
free(plan);
free(cava_in);
free(cava_out);
if (bp_ok == 1) {
printf("matching blueprint\n");
exit(0);
} else {
printf("not matching blueprint\n");
exit(1);
}
}