check for alsa-lib 1.0.18, now required
[jack.git] / jackd / transengine.h
blob9bd238d20fbb7dd6c04794b3d7401be7d9617187
1 /*
2 Internal interfaces for JACK transport engine.
4 Copyright (C) 2003 Jack O'Quin
6 This program is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public License as
8 published by the Free Software Foundation; either version 2 of the
9 License, or (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 int jack_set_sample_rate (jack_engine_t *engine, jack_nframes_t nframes);
22 int jack_timebase_reset (jack_engine_t *engine,
23 jack_client_id_t client_id);
24 int jack_timebase_set (jack_engine_t *engine,
25 jack_client_id_t client_id, int conditional);
26 void jack_transport_activate (jack_engine_t *engine,
27 jack_client_internal_t *client);
28 void jack_transport_init (jack_engine_t *engine);
29 void jack_transport_client_exit (jack_engine_t *engine,
30 jack_client_internal_t *client);
31 void jack_transport_client_new (jack_client_internal_t *client);
32 int jack_transport_client_reset_sync (jack_engine_t *engine,
33 jack_client_id_t client_id);
34 int jack_transport_client_set_sync (jack_engine_t *engine,
35 jack_client_id_t client_id);
36 void jack_transport_cycle_end (jack_engine_t *engine);
37 void jack_transport_cycle_start(jack_engine_t *engine, jack_time_t time);
38 int jack_transport_set_sync_timeout (jack_engine_t *engine,
39 jack_time_t usecs);