Browse Source

simple_client_timestamps

pull/450/head
Christoph Kuhr 7 years ago
parent
commit
43cfc40773
1 changed files with 7 additions and 5 deletions
  1. +7
    -5
      example-clients/simple_client.c

+ 7
- 5
example-clients/simple_client.c View File

@@ -131,8 +131,8 @@ process (jack_nframes_t nframes, void *arg)
// fprintf(filepointer, "send error %d %s %s\n", errno, strerror(errno), msg_send);fflush(filepointer);
}

out1 = (jack_default_audio_sample_t*)jack_port_get_buffer ( jack_port_by_name(client, "output1"), nframes);
out2 = (jack_default_audio_sample_t*)jack_port_get_buffer ( jack_port_by_name(client, "output2"), nframes);
out1 = (jack_default_audio_sample_t*)jack_port_get_buffer (output_port1, nframes);
out2 = (jack_default_audio_sample_t*)jack_port_get_buffer (output_port2, nframes);

for( i=0; i<nframes; i++ )
{
@@ -203,9 +203,6 @@ main (int argc, char *argv[])
printf("create success %s\n", Q_NAME);fflush(stdout);
}

if( pthread_create( &writerThread, NULL, (&worker_thread_listener_fileWriter), NULL) != 0 ) {
printf("Error creating thread\n");fflush(stdout);
}



@@ -263,6 +260,11 @@ main (int argc, char *argv[])
exit (1);
}

if( pthread_create( &writerThread, NULL, (&worker_thread_listener_fileWriter), NULL) != 0 ) {
printf("Error creating thread\n");fflush(stdout);
}


/* Tell the JACK server that we are ready to roll. Our
* process() callback will start running now. */



Loading…
Cancel
Save