forked from gordonjcp/lysdr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaudio_jack.c
171 lines (142 loc) · 4.68 KB
/
audio_jack.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
/* lysdr Software Defined Radio
(C) 2010-2011 Gordon JC Pearce MM0YEQ and others
audio_jack.c
handle setting up and tearing down jack connections
This file is part of lysdr.
lysdr is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
any later version.
lysdr 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 lysdr. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdlib.h>
#include <stdio.h>
#include <jack/jack.h>
#include <errno.h>
#include "sdr.h"
#include "audio_jack.h"
static jack_port_t *I_in;
static jack_port_t *Q_in;
static jack_port_t *L_out;
static jack_port_t *R_out;
static jack_client_t *client;
static jack_status_t status;
static const char *client_name = "lysdr";
static int audio_process(jack_nframes_t nframes, void *psdr) {
// actually kick off processing the samples
jack_default_audio_sample_t *ii, *qq, *L, *R;
int i, n;
sdr_data_t *sdr;
sdr = (sdr_data_t *) psdr; // void* cast back to sdr_data_t*
// get all four buffers
ii = jack_port_get_buffer (I_in, nframes);
qq = jack_port_get_buffer (Q_in, nframes);
L = jack_port_get_buffer (L_out, nframes);
R = jack_port_get_buffer (R_out, nframes);
// the SDR expects a bunch of complex samples
for(i = 0; i < nframes; i++) {
// uncomment whichever is appropriate
sdr->iqSample[i] = ii[i] + I * qq[i]; // I on left
// sdr->iqSample[i] = qq[i] + I * ii[i]; // I on right
}
// actually run the SDR for a frame
sdr_process(sdr);
// copy the frames to the output
for(i = 0; i < nframes; i++) {
L[i]=sdr->output[i];
R[i]=sdr->output[i];
}
// we're happy, return okay
return 0;
}
int audio_start(sdr_data_t *sdr) {
// open a client connection to the JACK server
client = jack_client_open (client_name, JackNullOption, &status, NULL);
if (client == NULL) {
fprintf (stderr, "jack_client_open() failed - check jack installation (status %x)\n", status);
if (status & JackServerFailed) {
fprintf (stderr, "Unable to connect to JACK server\n");
}
exit (1);
}
if (status & JackServerStarted) {
fprintf (stderr, "JACK server started\n");
}
if (status & JackNameNotUnique) {
client_name = jack_get_client_name(client);
fprintf (stderr, "unique name `%s' assigned\n", client_name);
}
// save some info in the SDR
sdr->size = jack_get_buffer_size(client);
sdr->sample_rate = jack_get_sample_rate(client);
sdr->iqSample = g_new0(double complex, sdr->size);
sdr->output = g_new0(double, sdr->size);
return 0;
}
int audio_stop(sdr_data_t *sdr) {
// remove the connection to the jack server
// we may also want to clean up any audio buffers
jack_client_close (client);
if (sdr->iqSample) g_free(sdr->iqSample);
if (sdr->output) g_free(sdr->output);
return 0;
}
int audio_connect(sdr_data_t *sdr, gboolean ci, gboolean co) {
const char **ports;
// start processing audio
jack_set_process_callback (client, audio_process, sdr);
//jack_on_shutdown (client, jack_shutdown, 0);
I_in = jack_port_register (client, "I input",
JACK_DEFAULT_AUDIO_TYPE,
JackPortIsInput, 0);
Q_in = jack_port_register (client, "Q input",
JACK_DEFAULT_AUDIO_TYPE,
JackPortIsInput, 0);
L_out = jack_port_register (client, "L output",
JACK_DEFAULT_AUDIO_TYPE,
JackPortIsOutput, 0);
R_out = jack_port_register (client, "R output",
JACK_DEFAULT_AUDIO_TYPE,
JackPortIsOutput, 0);
if (jack_activate (client)) {
fprintf (stderr, "cannot activate client");
exit (1);
}
if (co) {
ports = jack_get_ports (client, NULL, NULL,
JackPortIsPhysical|JackPortIsInput);
if (ports == NULL) {
fprintf(stderr, "no physical playback ports\n");
exit (1);
}
if (jack_connect (client, jack_port_name (L_out), ports[0])) {
fprintf (stderr, "cannot connect output ports\n");
}
if (jack_connect (client, jack_port_name (R_out), ports[1])) {
fprintf (stderr, "cannot connect output ports\n");
}
free(ports);
}
if (ci) {
ports = jack_get_ports (client, NULL, NULL,
JackPortIsPhysical|JackPortIsOutput);
if (ports == NULL) {
fprintf(stderr, "no physical capture ports\n");
exit (1);
}
if (jack_connect (client, ports[0], jack_port_name (I_in))) {
fprintf (stderr, "cannot connect capture ports\n");
}
if (jack_connect (client, ports[1], jack_port_name (Q_in))) {
fprintf (stderr, "cannot connect capture ports\n");
}
free(ports);
}
return 0;
}
/* vim: set noexpandtab ai ts=4 sw=4 tw=4: */