mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
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.
This commit is contained in:
parent
3b8cad1d49
commit
fe8058a641
2 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue