Browse Source

Robin Gareus patch for Windows JackRouter.

tags/v1.9.11-RC1
Stephane Letz 11 years ago
parent
commit
3260d467e0
2 changed files with 3 additions and 3 deletions
  1. +2
    -2
      common/jack/net.h
  2. +1
    -1
      windows/JackRouter/JackRouter.cpp

+ 2
- 2
common/jack/net.h View File

@@ -321,7 +321,7 @@ int jack_net_master_recv(jack_net_master_t* net, int audio_input, float** audio_
* @param audio_input_buffer an array of audio input buffers
* @param midi_input number of MIDI inputs
* @param midi_input_buffer an array of MIDI input buffers
* @param frames the number of frames to receive.
* @param frames the number of frames to receive
*
* @return zero on success, non-zero on error
*/
@@ -348,7 +348,7 @@ int jack_net_master_send(jack_net_master_t* net, int audio_output, float** audio
* @param audio_output_buffer an array of audio output buffers
* @param midi_output number of MIDI ouputs
* @param midi_output_buffer an array of MIDI output buffers
* @param frames the number of frames to send.
* @param frames the number of frames to send
*
* @return zero on success, non-zero on error
*/


+ 1
- 1
windows/JackRouter/JackRouter.cpp View File

@@ -427,7 +427,7 @@ ASIOBool JackRouter::init(void* sysRef)
_snprintf(name_log, sizeof(name_log) - 1, "JackRouter_%s.log", name);
fClient = jack_client_open(name, JackNullOption, NULL);
fClient = jack_client_open(name, JackNoStartServer, NULL);
if (fClient == NULL) {
strcpy(fErrorMessage, "Open error: is JACK server running?");
printf("Open error: is JACK server running?\n");


Loading…
Cancel
Save