Changeset 5bfb0fd


Ignore:
Timestamp:
Nov 5, 2013, 2:10:32 PM (10 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
Children:
4dd7816
Parents:
e97d0b3
Message:

examples/jackio.c: update jack_client_new ot jack_client_open

File:
1 edited

Legend:

Unmodified
Added
Removed
  • examples/jackio.c

    re97d0b3 r5bfb0fd  
    9191  char name[64];
    9292  /* initial jack client setup */
    93   if ((jack_setup->client = jack_client_new (client_name)) == 0) {
     93  jack_options_t options = JackNullOption;
     94  jack_status_t *status = NULL;
     95  if ((jack_setup->client = jack_client_open (client_name, options, status)) == 0) {
    9496    AUBIO_ERR ("jack server not running?\n");
    9597    AUBIO_QUIT (AUBIO_FAIL);
Note: See TracChangeset for help on using the changeset viewer.