summaryrefslogtreecommitdiffstats
path: root/audio/jack-tools/man/jack-dl.1
blob: 8d0f2070c180d863cbdf5ecbe6103a9249dc8897 (plain)
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
'\" t
.\"     Title: jack-dl
.\"    Author: Rohan Drape <rd@slavepianos.org>
.\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/>
.\"      Date: 06/16/2013
.\"    Manual: \ \&
.\"    Source: \ \&
.\"  Language: English
.\"
.TH "JACK\-DL" "1" "06/16/2013" "\ \&" "\ \&"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.\" http://bugs.debian.org/507673
.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.ie \n(.g .ds Aq \(aq
.el       .ds Aq '
.\" -----------------------------------------------------------------
.\" * set default formatting
.\" -----------------------------------------------------------------
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.ad l
.\" -----------------------------------------------------------------
.\" * MAIN CONTENT STARTS HERE *
.\" -----------------------------------------------------------------
.SH "NAME"
jack-dl \- JACK shared library dsp loader
.SH "SYNOPSIS"
.sp
jack\-dl [options]
.SH "OPTIONS"
.TP
\fB\-b\fR
Set the number of buffers (default=8)\&.
.TP
\fB\-c\fR
Set the number of input and output channels (default=8)\&.
.TP
\fB\-k\fR
Set the number of control buses (default=64)\&.
.TP
\fB\-p\fR
Set the udp port number (default=57190)\&.
.SH "DESCRIPTION"
.sp
jack\-dl loads dsp algorithms from shared libraries and allows user interaction with the executing graph\&. Commands are sent as OSC packets over a UDP connection\&.
.sp
The dsp graph code must provide three functions:
.sp
.if n \{\
.RS 4
.\}
.nf
size_t (*dsp_memreq)();
void (*dsp_init)(void *);
void (*dsp_step)(void *,int);
.fi
.if n \{\
.RE
.\}
.sp
jack\-dl accepts the OSC commands:
.sp
Command - Arguments (Description)
.br
/b_alloc - id::int frames::int channels::int (buffer allocate)
.br
/c_set - index::int value::float (control set)
.br
/g_load - object\-file::file\-path (graph load)
.sp
jack\-dl consults the JACK_DL_CONNECT_TO and JACK_DL_CONNECT_FROM environment variables\&.
.sp
jack\-dl implements only a subset of the OSC protocol\&. In particular it does not implement the patten matching rules and does not implement a scheduler for incoming messages\&.
.sp
jack\-dl drops all unrecognized incoming packets\&.
.SH "AUTHOR"
.sp
Rohan Drape http://rd\&.slavepianos\&.org/
.SH "SEE ALSO"
.sp
jackd(1), OSC(7) http://opensoundcontrol\&.org/
.SH "AUTHOR"
.PP
\fBRohan Drape\fR <\&rd@slavepianos\&.org\&>
.RS 4
Author.
.RE