Updating audio_jack to new interface for creating a client. Fixes depricated warning.
[debian/gnuradio] / gr-audio-jack / src / audio_jack_source.cc
index ca3df51d7f5eaf9601cfa8602963e1757414f4db..a92e970f5825efb3febb2c5b2cf4f297fefdeb28 100644 (file)
@@ -110,7 +110,12 @@ audio_jack_source::audio_jack_source (int sampling_rate,
 #endif
 
   // try to become a client of the JACK server
-  if ((d_jack_client = jack_client_new (d_device_name.c_str ())) == 0) {
+  jack_options_t options = JackNullOption;
+  jack_status_t status;
+  const char *server_name = NULL;
+  if ((d_jack_client = jack_client_open (d_device_name.c_str (),
+                                        options, &status,
+                                        server_name)) == NULL) {
     fprintf (stderr, "audio_jack_source[%s]: jack server not running?\n",
             d_device_name.c_str());
     throw std::runtime_error ("audio_jack_source");