jack2 codebase
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

318 lines
11KB

  1. /*
  2. Copyright (C) 2009-2010 Grame
  3. This program is free software; you can redistribute it and/or modify
  4. it under the terms of the GNU Lesser General Public License as published by
  5. the Free Software Foundation; either version 2.1 of the License, or
  6. (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU Lesser General Public License for more details.
  11. You should have received a copy of the GNU Lesser General Public License
  12. along with this program; if not, write to the Free Software
  13. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  14. */
  15. #ifndef __net_h__
  16. #define __net_h__
  17. #ifdef __cplusplus
  18. extern "C"
  19. {
  20. #endif
  21. #include <jack/systemdeps.h>
  22. #include <jack/types.h>
  23. #define DEFAULT_MULTICAST_IP "225.3.19.154"
  24. #define DEFAULT_PORT 19000
  25. #define DEFAULT_MTU 1500
  26. #define MASTER_NAME_SIZE 256
  27. #define SOCKET_ERROR -1
  28. enum JackNetEncoder {
  29. JackFloatEncoder = 0, // samples are transmitted as float
  30. JackIntEncoder = 1, // samples are transmitted as 16 bits integer
  31. JackCeltEncoder = 2, // samples are transmitted using CELT codec (http://www.celt-codec.org/)
  32. JackOpusEncoder = 3, // samples are transmitted using OPUS codec (http://www.opus-codec.org/)
  33. };
  34. typedef struct {
  35. int audio_input; // from master or to slave (-1 to take master audio physical inputs)
  36. int audio_output; // to master or from slave (-1 to take master audio physical outputs)
  37. int midi_input; // from master or to slave (-1 to take master MIDI physical inputs)
  38. int midi_output; // to master or from slave (-1 to take master MIDI physical outputs)
  39. int mtu; // network Maximum Transmission Unit
  40. int time_out; // in second, -1 means in infinite
  41. int encoder; // encoder type (one of JackNetEncoder)
  42. int kbps; // KB per second for CELT encoder
  43. int latency; // network latency
  44. } jack_slave_t;
  45. typedef struct {
  46. int audio_input; // master audio physical outputs (-1 to take slave wanted audio inputs)
  47. int audio_output; // master audio physical inputs (-1 to take slave wanted audio outputs)
  48. int midi_input; // master MIDI physical outputs (-1 to take slave wanted MIDI inputs)
  49. int midi_output; // master MIDI physical inputs (-1 to take slave wanted MIDI outputs)
  50. jack_nframes_t buffer_size; // mater buffer size
  51. jack_nframes_t sample_rate; // mater sample rate
  52. char master_name[MASTER_NAME_SIZE]; // master machine name
  53. } jack_master_t;
  54. /**
  55. * jack_net_slave_t is an opaque type. You may only access it using the
  56. * API provided.
  57. */
  58. typedef struct _jack_net_slave jack_net_slave_t;
  59. /**
  60. * Open a network connection with the master machine.
  61. * @param ip the multicast address of the master
  62. * @param port the connection port
  63. * @param request a connection request structure
  64. * @param result a connection result structure
  65. *
  66. * @return Opaque net handle if successful or NULL in case of error.
  67. */
  68. jack_net_slave_t* jack_net_slave_open(const char* ip, int port, const char* name, jack_slave_t* request, jack_master_t* result);
  69. /**
  70. * Close the network connection with the master machine.
  71. * @param net the network connection to be closed
  72. *
  73. * @return 0 on success, otherwise a non-zero error code
  74. */
  75. int jack_net_slave_close(jack_net_slave_t* net);
  76. /**
  77. * Prototype for Process callback.
  78. * @param nframes buffer size
  79. * @param audio_input number of audio inputs
  80. * @param audio_input_buffer an array of audio input buffers (from master)
  81. * @param midi_input number of MIDI inputs
  82. * @param midi_input_buffer an array of MIDI input buffers (from master)
  83. * @param audio_output number of audio outputs
  84. * @param audio_output_buffer an array of audio output buffers (to master)
  85. * @param midi_output number of MIDI outputs
  86. * @param midi_output_buffer an array of MIDI output buffers (to master)
  87. * @param arg pointer to a client supplied structure supplied by jack_set_net_process_callback()
  88. *
  89. * @return zero on success, non-zero on error
  90. */
  91. typedef int (* JackNetSlaveProcessCallback) (jack_nframes_t buffer_size,
  92. int audio_input,
  93. float** audio_input_buffer,
  94. int midi_input,
  95. void** midi_input_buffer,
  96. int audio_output,
  97. float** audio_output_buffer,
  98. int midi_output,
  99. void** midi_output_buffer,
  100. void* data);
  101. /**
  102. * Set network process callback.
  103. * @param net the network connection
  104. * @param net_callback the process callback
  105. * @param arg pointer to a client supplied structure
  106. *
  107. * @return 0 on success, otherwise a non-zero error code
  108. */
  109. int jack_set_net_slave_process_callback(jack_net_slave_t * net, JackNetSlaveProcessCallback net_callback, void *arg);
  110. /**
  111. * Start processing thread, the net_callback will start to be called.
  112. * @param net the network connection
  113. *
  114. * @return 0 on success, otherwise a non-zero error code
  115. */
  116. int jack_net_slave_activate(jack_net_slave_t* net);
  117. /**
  118. * Stop processing thread.
  119. * @param net the network connection
  120. *
  121. * @return 0 on success, otherwise a non-zero error code
  122. */
  123. int jack_net_slave_deactivate(jack_net_slave_t* net);
  124. /**
  125. * Prototype for BufferSize callback.
  126. * @param nframes buffer size
  127. * @param arg pointer to a client supplied structure supplied by jack_set_net_buffer_size_callback()
  128. *
  129. * @return zero on success, non-zero on error
  130. */
  131. typedef int (*JackNetSlaveBufferSizeCallback)(jack_nframes_t nframes, void *arg);
  132. /**
  133. * Prototype for SampleRate callback.
  134. * @param nframes sample rate
  135. * @param arg pointer to a client supplied structure supplied by jack_set_net_sample_rate_callback()
  136. *
  137. * @return zero on success, non-zero on error
  138. */
  139. typedef int (*JackNetSlaveSampleRateCallback)(jack_nframes_t nframes, void *arg);
  140. /**
  141. * Set network buffer size callback.
  142. * @param net the network connection
  143. * @param bufsize_callback the buffer size callback
  144. * @param arg pointer to a client supplied structure
  145. *
  146. * @return 0 on success, otherwise a non-zero error code
  147. */
  148. int jack_set_net_slave_buffer_size_callback(jack_net_slave_t *net, JackNetSlaveBufferSizeCallback bufsize_callback, void *arg);
  149. /**
  150. * Set network sample rate callback.
  151. * @param net the network connection
  152. * @param samplerate_callback the sample rate callback
  153. * @param arg pointer to a client supplied structure
  154. *
  155. * @return 0 on success, otherwise a non-zero error code
  156. */
  157. int jack_set_net_slave_sample_rate_callback(jack_net_slave_t *net, JackNetSlaveSampleRateCallback samplerate_callback, void *arg);
  158. /**
  159. * Prototype for server Shutdown callback (if not set, the client will just restart, waiting for an available master again).
  160. * @param arg pointer to a client supplied structure supplied by jack_set_net_shutdown_callback()
  161. */
  162. typedef void (*JackNetSlaveShutdownCallback)(void* data);
  163. /**
  164. * Set network shutdown callback.
  165. * @param net the network connection
  166. * @param shutdown_callback the shutdown callback
  167. * @param arg pointer to a client supplied structure
  168. *
  169. * @return 0 on success, otherwise a non-zero error code
  170. */
  171. int jack_set_net_slave_shutdown_callback(jack_net_slave_t *net, JackNetSlaveShutdownCallback shutdown_callback, void *arg);
  172. /**
  173. * jack_net_master_t is an opaque type, you may only access it using the API provided.
  174. */
  175. typedef struct _jack_net_master jack_net_master_t;
  176. /**
  177. * Open a network connection with the slave machine.
  178. * @param ip the multicast address of the master
  179. * @param port the connection port
  180. * @param request a connection request structure
  181. * @param result a connection result structure
  182. *
  183. * @return Opaque net handle if successful or NULL in case of error.
  184. */
  185. jack_net_master_t* jack_net_master_open(const char* ip, int port, const char* name, jack_master_t* request, jack_slave_t* result);
  186. /**
  187. * Close the network connection with the slave machine.
  188. * @param net the network connection to be closed
  189. *
  190. * @return 0 on success, otherwise a non-zero error code
  191. */
  192. int jack_net_master_close(jack_net_master_t* net);
  193. /**
  194. * Receive sync and data from the network.
  195. * @param net the network connection
  196. * @param audio_input number of audio inputs
  197. * @param audio_input_buffer an array of audio input buffers
  198. * @param midi_input number of MIDI inputs
  199. * @param midi_input_buffer an array of MIDI input buffers
  200. *
  201. * @return zero on success, non-zero on error
  202. */
  203. int jack_net_master_recv(jack_net_master_t* net, int audio_input, float** audio_input_buffer, int midi_input, void** midi_input_buffer);
  204. /**
  205. * Send sync and data to the network.
  206. * @param net the network connection
  207. * @param audio_output number of audio outputs
  208. * @param audio_output_buffer an array of audio output buffers
  209. * @param midi_output number of MIDI ouputs
  210. * @param midi_output_buffer an array of MIDI output buffers
  211. *
  212. * @return zero on success, non-zero on error
  213. */
  214. int jack_net_master_send(jack_net_master_t* net, int audio_output, float** audio_output_buffer, int midi_output, void** midi_output_buffer);
  215. // Experimental Adapter API
  216. /**
  217. * jack_adapter_t is an opaque type, you may only access it using the API provided.
  218. */
  219. typedef struct _jack_adapter jack_adapter_t;
  220. /**
  221. * Create an adapter.
  222. * @param input number of audio inputs
  223. * @param output of audio outputs
  224. * @param host_buffer_size the host buffer size in frames
  225. * @param host_sample_rate the host buffer sample rate
  226. * @param adapted_buffer_size the adapted buffer size in frames
  227. * @param adapted_sample_rate the adapted buffer sample rate
  228. *
  229. * @return 0 on success, otherwise a non-zero error code
  230. */
  231. jack_adapter_t* jack_create_adapter(int input, int output,
  232. jack_nframes_t host_buffer_size,
  233. jack_nframes_t host_sample_rate,
  234. jack_nframes_t adapted_buffer_size,
  235. jack_nframes_t adapted_sample_rate);
  236. /**
  237. * Destroy an adapter.
  238. * @param adapter the adapter to be destroyed
  239. *
  240. * @return 0 on success, otherwise a non-zero error code
  241. */
  242. int jack_destroy_adapter(jack_adapter_t* adapter);
  243. /**
  244. * Flush internal state of an adapter.
  245. * @param adapter the adapter to be flushed
  246. *
  247. * @return 0 on success, otherwise a non-zero error code
  248. */
  249. void jack_flush_adapter(jack_adapter_t* adapter);
  250. /**
  251. * Push input to and pull output from adapter ringbuffer.
  252. * @param adapter the adapter
  253. * @param input an array of audio input buffers
  254. * @param output an array of audio ouput buffers
  255. * @param frames number of frames
  256. *
  257. * @return 0 on success, otherwise a non-zero error code
  258. */
  259. int jack_adapter_push_and_pull(jack_adapter_t* adapter, float** input, float** output, unsigned int frames);
  260. /**
  261. * Pull input to and push output from adapter ringbuffer.
  262. * @param adapter the adapter
  263. * @param input an array of audio input buffers
  264. * @param output an array of audio ouput buffers
  265. * @param frames number of frames
  266. *
  267. * @return 0 on success, otherwise a non-zero error code
  268. */
  269. int jack_adapter_pull_and_push(jack_adapter_t* adapter, float** input, float** output, unsigned int frames);
  270. #ifdef __cplusplus
  271. }
  272. #endif
  273. #endif /* __net_h__ */