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/arts/gst_arts.c | |
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/arts/gst_arts.c')
-rw-r--r-- | ext/arts/gst_arts.c | 8 |
1 files changed, 4 insertions, 4 deletions
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 <math.h> #include <sys/soundcard.h> -//#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)); |