update to new jack api
authorAndy Wingo <wingo@pobox.com>
Mon, 13 May 2002 18:08:33 +0000 (18:08 +0000)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Sun, 2 Jan 2011 14:30:01 +0000 (14:30 +0000)
Original commit message from CVS:
update to new jack api

ext/jack/gstjack.c
ext/jack/gstjack.h
ext/jack/gstjackbin.c

index 02696901b9db2da010586c3a5048170aee06987b..ab0e4a3c438cd3239fa22d749ad2809e8b8e6ae1 100644 (file)
@@ -410,7 +410,7 @@ gst_jack_loop (GstElement *element)
     this = GST_JACK (element);
     
     g_return_if_fail(this != NULL);
-    len = this->bin->nframes * sizeof (sample_t);
+    len = this->bin->nframes * sizeof (jack_default_audio_sample_t);
     
     do {
         pads = this->pads;
index 4801557eb196b7905aa9f705e46d50a6a133bc22..d13a1dab7d2daadbdb838695ea75d3a1cf36d6b2 100644 (file)
@@ -109,7 +109,7 @@ struct _GstJackBin {
     gchar *client_name;
 
     guint rate;
-    nframes_t nframes;
+    jack_nframes_t nframes;
 
     /* the scheduler needs to be setup from within the jack client thread; this
        variable is to keep track of whether or not we have been set up yet */
index 45ab94fd617e8a38e0e08a3692d85ca1c909645e..49ecca70a985a8fae42657b8cfa298274b15403f 100644 (file)
@@ -30,9 +30,9 @@ static void gst_jack_bin_class_init(GstJackBinClass *klass);
 static GstElementStateReturn gst_jack_bin_change_state(GstElement *element);
 
 /* jack callbacks */
-static int process (nframes_t nframes, void *arg);
-static int buffer_size (nframes_t nframes, void *arg);
-static int sample_rate (nframes_t nframes, void *arg);
+static int process (jack_nframes_t nframes, void *arg);
+static int buffer_size (jack_nframes_t nframes, void *arg);
+static int sample_rate (jack_nframes_t nframes, void *arg);
 static void shutdown (void *arg);
 
 
@@ -225,7 +225,7 @@ gst_jack_bin_change_state (GstElement *element)
 /* keep in mind that these run in another thread, mm-kay? */
 
 static int
-process (nframes_t nframes, void *arg)
+process (jack_nframes_t nframes, void *arg)
 {
     GstJackBin *bin = (GstJackBin*) arg;
     GstJackPad *pad;
@@ -293,14 +293,14 @@ process (nframes_t nframes, void *arg)
 }
 
 static int
-buffer_size (nframes_t nframes, void *arg)
+buffer_size (jack_nframes_t nframes, void *arg)
 {
     printf ("the maximum buffer size is now %lu\n", nframes);
     return 0;
 }
 
 static int
-sample_rate (nframes_t nframes, void *arg)
+sample_rate (jack_nframes_t nframes, void *arg)
 {
     GstJackBin *bin = (GstJackBin*) arg;
     printf ("the sample rate is now %lu/sec\n", nframes);