diff options
author | Andy Wingo <wingo@pobox.com> | 2002-03-19 04:10:06 +0000 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2002-03-19 04:10:06 +0000 |
commit | 4359de26166000e317604b6b20283c79dd2a0521 (patch) | |
tree | bc587b41e92b76e4f12e5e11984989e4e89d9935 /ext/jack | |
parent | 0dc999da00ffc311ee1fc040ab754dab6660f2c7 (diff) | |
download | gst-plugins-bad-4359de26166000e317604b6b20283c79dd2a0521.tar.gz gst-plugins-bad-4359de26166000e317604b6b20283c79dd2a0521.tar.bz2 gst-plugins-bad-4359de26166000e317604b6b20283c79dd2a0521.zip |
removal of //-style comments don't link plugins to core libs -- the versioning is done internally to the plugins with...
Original commit message from CVS:
* removal of //-style comments
* don't link plugins to core libs -- the versioning is done internally to the plugins with the plugin_info struct,
and symbol resolution is lazy, so we can always know if a plugin can be loaded by the plugin_info data. in theory.
Diffstat (limited to 'ext/jack')
-rw-r--r-- | ext/jack/Makefile.am | 2 | ||||
-rw-r--r-- | ext/jack/gstjack.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/ext/jack/Makefile.am b/ext/jack/Makefile.am index fc5c110d..7c1b5c23 100644 --- a/ext/jack/Makefile.am +++ b/ext/jack/Makefile.am @@ -4,7 +4,7 @@ plugin_LTLIBRARIES = libgstjack.la libgstjack_la_SOURCES = gstjack.c libgstjack_la_CFLAGS = $(GST_CFLAGS) $(JACK_CFLAGS) -libgstjack_la_LIBADD = $(GST_LIBS) $(JACK_LIBS) +libgstjack_la_LIBADD = $(JACK_LIBS) libgstjack_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) noinst_HEADERS = gstjack.h diff --git a/ext/jack/gstjack.c b/ext/jack/gstjack.c index 82da2aee..816c5036 100644 --- a/ext/jack/gstjack.c +++ b/ext/jack/gstjack.c @@ -259,7 +259,7 @@ gst_jack_request_new_pad (GstElement *element, GstPadTemplate *templ, const gcha if (this->client) *pad_list = g_list_append (*pad_list, pad); -// this->pads = g_list_append (this->pads, pad); +/* this->pads = g_list_append (this->pads, pad); */ return pad->pad; } @@ -555,7 +555,7 @@ shutdown (void *arg) { GstJackClient *client = (GstJackClient*) arg; printf ("shutdown\n"); -// gst_element_set_state (GST_ELEMENT (client->manager), GST_STATE_READY); +/* gst_element_set_state (GST_ELEMENT (client->manager), GST_STATE_READY); */ } static gboolean |