-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsplit-rsp-8bit2sb.c
72 lines (52 loc) · 1.48 KB
/
split-rsp-8bit2sb.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
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char **argv)
{
if (argc != 2) {
fprintf(stderr, "usage: %s stream_nr", argv[0]);
exit(1);
}
unsigned stream_nr = atoi(argv[1]);
if (stream_nr >= 12) {
fprintf(stderr, "stream_nr must be < 12");
exit(1);
}
struct header {
char bytes[16];
};
struct {
struct header header;
char payload[24][16][2][2];
} in_packet;
struct {
struct header header;
signed char payload[2][16][2][2];
} out_packet;
unsigned long long good = 0, bad = 0;
unsigned long long *head = ((unsigned long long*)(&in_packet.header));
while (fread(&in_packet, sizeof in_packet, 1, stdin) == 1)
{ // fprintf (stderr, "0x%LX%LX\n", head[0], head[1]);
out_packet.header = in_packet.header;
for (unsigned i = 0; i < 1 * 16 * 2 * 2; i ++) {
char value = in_packet.payload[2*stream_nr][0][0][i]; // Subband 1
if (value < -128)
value = -128, ++ bad;
if (value > 127)
value = 127, ++ bad;
out_packet.payload[0][0][0][i] = value;
value = in_packet.payload[2*stream_nr+1][0][0][i]; // Subband 2
if (value < -128)
value = -128, ++ bad;
if (value > 127)
value = 127, ++ bad;
out_packet.payload[1][0][0][i] = value;
}
good += 1 * 16 * 2 * 2 * 2;
if (fwrite(&out_packet, sizeof out_packet, 1, stdout) != 1) {
perror("could not write in_packet");
exit(1);
}
}
fprintf(stderr, "good = %llu, bad = %llu\n", good, bad);
return 0;
}