JackWeakAPI now working.
[jack2.git] / common / JackConstants.h
blob00a0be997d2ee9d99f8956d039c4371e5cb04034
1 /*
2 Copyright (C) 2004-2008 Grame
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
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
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 #ifndef __JackConstants__
21 #define __JackConstants__
23 #ifdef HAVE_CONFIG_H
24 #include "config.h"
25 #endif
27 #define VERSION "1.9.4"
29 #define BUFFER_SIZE_MAX 8192
31 #define JACK_PORT_NAME_SIZE 256
32 #define JACK_PORT_TYPE_SIZE 32
34 #define JACK_CLIENT_NAME_SIZE 64
35 #define JACK_MESSAGE_SIZE 256
37 #ifndef PORT_NUM
38 #define PORT_NUM 2048
39 #endif
41 #define DRIVER_PORT_NUM 256
43 #ifndef PORT_NUM_FOR_CLIENT
44 #define PORT_NUM_FOR_CLIENT 512
45 #endif
47 #define FIRST_AVAILABLE_PORT 1
49 #define CONNECTION_NUM_FOR_PORT PORT_NUM_FOR_CLIENT
51 #ifndef CLIENT_NUM
52 #define CLIENT_NUM 64
53 #endif
55 #define AUDIO_DRIVER_REFNUM 0 // Audio driver is initialized first, it will get the refnum 0
56 #define FREEWHEEL_DRIVER_REFNUM 1 // Freewheel driver is initialized second, it will get the refnum 1
58 #define JACK_DEFAULT_SERVER_NAME "default"
60 #ifdef WIN32
61 #define jack_server_dir "server"
62 #define jack_client_dir "client"
63 #define ADDON_DIR "jack"
64 #endif
66 #ifdef __APPLE__
67 #define jack_server_dir "/tmp"
68 #define jack_client_dir "/tmp"
69 #define JACK_DEFAULT_DRIVER "coreaudio"
70 #endif
72 #ifdef __linux__
73 #define jack_server_dir "/dev/shm"
74 #define jack_client_dir "/dev/shm"
75 #define JACK_DEFAULT_DRIVER "alsa"
76 #endif
78 #if defined(__sun__) || defined(sun)
79 #define jack_server_dir "/tmp"
80 #define jack_client_dir "/tmp"
81 #define JACK_DEFAULT_DRIVER "oss"
82 #endif
84 #define jack_server_entry "jackdmp_entry"
85 #define jack_client_entry "jack_client"
87 #define ALL_CLIENTS -1 // for notification
89 #define JACK_PROTOCOL_VERSION 7
91 #define SOCKET_TIME_OUT 5 // in sec
92 #define DRIVER_OPEN_TIMEOUT 5 // in sec
93 #define FREEWHEEL_DRIVER_TIMEOUT 10 // in sec
94 #define DRIVER_TIMEOUT_FACTOR 10
96 #define NO_PORT 0xFFFE
98 #define EMPTY 0xFFFD
99 #define FREE 0xFFFC
101 #endif