From 4359de26166000e317604b6b20283c79dd2a0521 Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Tue, 19 Mar 2002 04:10:06 +0000 Subject: 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. --- ext/arts/Makefile.am | 2 +- ext/arts/gst_arts.c | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'ext/arts') diff --git a/ext/arts/Makefile.am b/ext/arts/Makefile.am index 0a31dad1..5206edcf 100644 --- a/ext/arts/Makefile.am +++ b/ext/arts/Makefile.am @@ -21,7 +21,7 @@ CLEANFILES = gst_artsio.h gst_artsio.cc gst_artsio.mcopclass gst_artsio.mcoptype libgstarts_la_SOURCES = gst_arts.c gst_artsio.cc gst_artsio_impl.cc libgstarts_la_CFLAGS = $(GST_CFLAGS) libgstarts_la_CXXFLAGS = $(ARTS_CXXFLAGS) $(GST_CFLAGS) -libgstarts_la_LIBADD = $(GST_LIBS) $(ARTS_LIBS) -lartsflow +libgstarts_la_LIBADD = $(ARTS_LIBS) -lartsflow libgstarts_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) EXTRA_DIST = gst_artsio.idl diff --git a/ext/arts/gst_arts.c b/ext/arts/gst_arts.c index 7cd4b250..736b41c1 100644 --- a/ext/arts/gst_arts.c +++ b/ext/arts/gst_arts.c @@ -21,7 +21,7 @@ #include #include -//#define DEBUG_ENABLED +/*#define DEBUG_ENABLED */ #include "gst_arts.h" #include "gst_artsio_impl.h" @@ -115,7 +115,7 @@ static void gst_arts_loop (GstElement *element); static GstElementClass *parent_class = NULL; -//static guint gst_arts_signals[LAST_SIGNAL] = { 0 }; +/*static guint gst_arts_signals[LAST_SIGNAL] = { 0 }; */ GType gst_arts_get_type (void) @@ -159,7 +159,7 @@ gst_arts_init (GstARTS *arts) arts->sinkpad = gst_pad_new_from_template(GST_PADTEMPLATE_GET(sink_temp),"sink"); gst_element_add_pad(GST_ELEMENT(arts),arts->sinkpad); -// arts->srcpad = gst_pad_new_from_template(GST_PADTEMPLATE_GET(src_temp),"src"); +/* arts->srcpad = gst_pad_new_from_template(GST_PADTEMPLATE_GET(src_temp),"src"); */ arts->srcpad = gst_pad_new_from_template(mad_src_template_factory (), "src"); gst_element_add_pad(GST_ELEMENT(arts),arts->srcpad); @@ -223,7 +223,7 @@ plugin_init (GModule *module, GstPlugin *plugin) g_return_val_if_fail(gstarts != NULL, FALSE); gst_elementfactory_add_padtemplate(gstarts, GST_PADTEMPLATE_GET(sink_temp)); -// gst_elementfactory_add_padtemplate(gstarts, GST_PADTEMPLATE_GET(src_temp)); +/* gst_elementfactory_add_padtemplate(gstarts, GST_PADTEMPLATE_GET(src_temp)); */ gst_elementfactory_add_padtemplate(gstarts, mad_src_template_factory ()); gst_plugin_add_feature (plugin, GST_PLUGIN_FEATURE (gstarts)); -- cgit v1.2.1