JACK-AUDIO-CONNECTION-KIT
statistics.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2004 Rui Nuno Capela, Lee Revell
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public License
6  * as published by the Free Software Foundation; either version 2.1
7  * of the License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this program; if not, write to the Free
16  * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
17  * 02111-1307, USA.
18  *
19  */
20 
21 #ifndef __statistics_h__
22 #define __statistics_h__
23 
24 #ifdef __cplusplus
25 extern "C" {
26 #endif
27 
28 #include <jack/types.h>
29 
36 
43 
51 
52 #ifdef __cplusplus
53 }
54 #endif
55 
56 #endif /* __statistics_h__ */
client
jack_client_t * client
Definition: simple_client.c:17
jack_status_t
enum JackStatus jack_status_t
Definition: types.h:247
types.h
jack_client_close
int jack_client_close(jack_client_t *client) JACK_OPTIONAL_WEAK_EXPORT
main
int main(int argc, char *argv[])
Definition: simple_client.c:51
jack_shutdown
void jack_shutdown(void *arg)
Definition: simple_client.c:45
JackPortIsInput
@ JackPortIsInput
Definition: types.h:488
JACK_DEFAULT_AUDIO_TYPE
#define JACK_DEFAULT_AUDIO_TYPE
Definition: types.h:466
jack_port_t
struct _jack_port jack_port_t
Definition: types.h:83
jack_client_t
struct _jack_client jack_client_t
Definition: types.h:89
JackPortIsPhysical
@ JackPortIsPhysical
Definition: types.h:500
jack_options_t
enum JackOptions jack_options_t
Definition: types.h:161
jack_reset_max_delayed_usecs
void jack_reset_max_delayed_usecs(jack_client_t *client)
jack_get_xrun_delayed_usecs
float jack_get_xrun_delayed_usecs(jack_client_t *client)
jack_activate
int jack_activate(jack_client_t *client) JACK_OPTIONAL_WEAK_EXPORT
jack_get_max_delayed_usecs
float jack_get_max_delayed_usecs(jack_client_t *client)
jack_on_shutdown
void jack_on_shutdown(jack_client_t *client, JackShutdownCallback function, void *arg) JACK_OPTIONAL_WEAK_EXPORT
JackPortIsOutput
@ JackPortIsOutput
Definition: types.h:494
jack_default_audio_sample_t
float jack_default_audio_sample_t
Definition: types.h:474
jack_port_get_buffer
void * jack_port_get_buffer(jack_port_t *, jack_nframes_t) JACK_OPTIONAL_WEAK_EXPORT
jack_client_open
jack_client_t * jack_client_open(const char *client_name, jack_options_t options, jack_status_t *status,...) JACK_OPTIONAL_WEAK_EXPORT
JackServerStarted
@ JackServerStarted
Definition: types.h:195
jack_nframes_t
uint32_t jack_nframes_t
Definition: types.h:53
input_port
jack_port_t * input_port
Definition: simple_client.c:15
jack_port_register
jack_port_t * jack_port_register(jack_client_t *client, const char *port_name, const char *port_type, unsigned long flags, unsigned long buffer_size) JACK_OPTIONAL_WEAK_EXPORT
jack_get_ports
const char ** jack_get_ports(jack_client_t *, const char *port_name_pattern, const char *type_name_pattern, unsigned long flags) JACK_OPTIONAL_WEAK_EXPORT
jack.h
jack_get_client_name
char * jack_get_client_name(jack_client_t *client) JACK_OPTIONAL_WEAK_EXPORT
jack_connect
int jack_connect(jack_client_t *, const char *source_port, const char *destination_port) JACK_OPTIONAL_WEAK_EXPORT
jack_set_process_callback
int jack_set_process_callback(jack_client_t *client, JackProcessCallback process_callback, void *arg) JACK_OPTIONAL_WEAK_EXPORT
process
int process(jack_nframes_t nframes, void *arg)
Definition: simple_client.c:28
jack_get_sample_rate
jack_nframes_t jack_get_sample_rate(jack_client_t *) JACK_OPTIONAL_WEAK_EXPORT
jack_port_name
const char * jack_port_name(const jack_port_t *port) JACK_OPTIONAL_WEAK_EXPORT
JackServerFailed
@ JackServerFailed
Definition: types.h:200
JackNullOption
@ JackNullOption
Definition: types.h:112
output_port
jack_port_t * output_port
Definition: simple_client.c:16
JackNameNotUnique
@ JackNameNotUnique
Definition: types.h:187