File: jclient.cc

package info (click to toggle)
ambdec 0.4.2-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 540 kB
  • ctags: 710
  • sloc: cpp: 4,625; makefile: 47
file content (273 lines) | stat: -rw-r--r-- 5,941 bytes parent folder | download
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
/*
    Copyright (C) 2006-2009 Fons Adriaensen <fons@kokkinizita.net>
    
    This program 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
    (at your option) any later version.

    This program 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, write to the Free Software
    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/


#include <string.h>
#include "jclient.h"


static const char *ipnames [MAXIP] = { "0w", "1x", "1y", "1z", "2r", "2s", "2t", "2u", "2v", "3p", "3q" };
static const int ipind30 [7] = { 0, 1, 2, 7, 8, 9, 10 };
static const int ipind31 [8] = { 0, 1, 2, 3, 7, 8, 9, 10 };
static const int ipind22 [9] = { 0, 1, 2, 3, 4, 5, 6, 7, 8 };



Jclient::Jclient (const char *jname) :
    A_thread ("Jclient"),
    _jack_client (0),
    _jack_testip (0),
    _jname (jname),
    _state (ST_BYPASS),
    _n_inp (0),
    _n_out (0),
    _gain (0),
    _mute (0),
    _solo (0),
    _test (0)
{
    init_jack ();   
    _decoder.init (_fsamp);
    memset (_level, 0, MAXOP * sizeof (float));
}


Jclient::~Jclient (void)
{
    if (_jack_client) close_jack ();
}


void Jclient::init_jack (void)
{
    int            i;
    char           s [16];
    jack_status_t  stat;

    if ((_jack_client = jack_client_open (_jname, (jack_options_t) 0, &stat)) == 0)
    {
        fprintf (stderr, "Can't connect to JACK\n");
        exit (1);
    }

    jack_set_process_callback (_jack_client, jack_static_process, (void *) this);
    jack_on_shutdown (_jack_client, jack_static_shutdown, (void *) this);

    if (jack_activate (_jack_client))
    {
        fprintf(stderr, "Can't activate JACK.\n");
        exit (1);
    }

    _jname = jack_get_client_name (_jack_client);
    _fsamp = jack_get_sample_rate (_jack_client);
    _fsize = jack_get_buffer_size (_jack_client);
    for (i = 0; i < MAXIP; i++)
    {
	sprintf (s, "in.%s", ipnames [i]);
        _jack_ipports [i] = jack_port_register (_jack_client, s, JACK_DEFAULT_AUDIO_TYPE, JackPortIsInput, 0);
	_ipmap [i] = 0;
    }
    _jack_testip = jack_port_register (_jack_client, "test", JACK_DEFAULT_AUDIO_TYPE, JackPortIsInput, 0);
}


void Jclient::close_jack ()
{
    jack_port_unregister (_jack_client, _jack_testip);
    jack_deactivate (_jack_client);
    jack_client_close (_jack_client);
}


void Jclient::jack_static_shutdown (void *arg)
{
    return ((Jclient *) arg)->jack_shutdown ();
}


void Jclient::jack_shutdown (void)
{
    send_event (EV_EXIT, 1);
}


int Jclient::jack_static_process (jack_nframes_t nframes, void *arg)
{
    return ((Jclient *) arg)->jack_process (nframes);
}


int Jclient::jack_process (jack_nframes_t nframes)
{
    unsigned int   i, s;
    int            e;
    float          *tip;
    float          *ipp [MAXIP];
    float          *opp [MAXOP];

    s = _state;
    e = get_event_nowait ();
    if (e != EV_TIME) switch (e)
    {
    case EV_GO_BYPASS:  s = ST_BYPASS;  break;
    case EV_GO_SILENCE: s = ST_SILENCE; break;
    case EV_GO_PROCESS: s = ST_PROCESS; break;
    }

    if (_state != ST_BYPASS)
    {
        for (i = 0; i < _n_out; i++) opp [i] = (float *) jack_port_get_buffer (_jack_opports [i], nframes);
	if (_state == ST_PROCESS)
	{
 	    tip = (float *) jack_port_get_buffer (_jack_testip, nframes);
  	    for (i = 0; i < _n_inp; i++)
	    {
                ipp [i] = (float *) jack_port_get_buffer (_ipmap [i], nframes);
	    }
	    _decoder.set_gain (s == ST_PROCESS ? _gain : 0);
	    _decoder.set_mute (_mute);
	    _decoder.set_solo (_solo);
	    _decoder.set_test (_test);
	    _decoder.process (nframes, ipp, opp, tip, _level);
	}
	else
	{
	    for (i = 0; i < _n_out; i++) memset (opp [i], 0, nframes * sizeof (float));
	}
    }

    if (e != EV_TIME)
    {
        _state = s;
        send_event (e, 1);
    }
    return 0;
}


void Jclient::set_config (AD_conf *C)
{
    _decoder.set_config (C);
}


void Jclient::set_matrix (AD_conf *C)
{
    _decoder.set_matrix (C);
}


void Jclient::set_ipports (AD_conf *C)
{
    int         i, n;
    const int   *p;

    switch ((C->_dec.h_ord << 4) | C->_dec.v_ord)
    {
    case 0x10:
	p = ipind30;
	n = 3;
	break;
    case 0x11:
	p = ipind31;
	n = 4;
	break;
    case 0x20:
	p = ipind30;
	n = 5;
	break;
    case 0x21:
	p = ipind31;
	n = 6;
	break;
    case 0x22:
	p = ipind22;
	n = 9;
	break;
    case 0x30:
	p = ipind30;
	n = 7;
	break;
    case 0x31:
	p = ipind31;
	n = 8;
	break;
    default:
	p = 0;
	n = 0;
    }

    for (i = 0; i < n; i++) _ipmap [i] = _jack_ipports [p [i]];
    while (i < 11) _ipmap [i++] = 0;
    _n_inp = n;
}


void Jclient::create_opports (AD_conf *C)
{
    unsigned int i;
    char s [64];

    delete_opports ();
    _n_out = C->_dec.nspkr;
    for (i = 0; i < _n_out; i++)
    {
	sprintf (s, "out_%s", C->_speakers [i]._label);
        _jack_opports [i] = jack_port_register (_jack_client, s, JACK_DEFAULT_AUDIO_TYPE, JackPortIsOutput, 0);
    }
}


void Jclient::delete_opports (void)
{
    unsigned int i;

    for (i = 0; i < _n_out; i++)
    {
	jack_port_unregister (_jack_client, _jack_opports [i]);
    }
    _n_out = 0;
}


void Jclient::connect_opports (AD_conf *C)
{
    unsigned int i;
    char s [64];

    disconn_opports ();
    for (i = 0; i < _n_out; i++)
    {
	sprintf (s, "%s:out_%s", _jname, C->_speakers [i]._label);
	jack_connect (_jack_client, s, C->_speakers [i]._jackp);
    }
}


void Jclient::disconn_opports (void)
{
    unsigned int i;

    for (i = 0; i < _n_out; i++)
    {
	jack_port_disconnect (_jack_client, _jack_opports [i]);
    }
}