From d6258153e0aa7d3fe89a31acd3e57b9c13de4464 Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Tue, 19 Mar 2002 04:10:05 +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. --- gst/level/Makefile.am | 2 +- gst/level/gstlevel.c | 4 ++-- gst/level/gstlevel.h | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) (limited to 'gst/level') diff --git a/gst/level/Makefile.am b/gst/level/Makefile.am index f0cd941e..8e033cc9 100644 --- a/gst/level/Makefile.am +++ b/gst/level/Makefile.am @@ -4,7 +4,7 @@ plugin_LTLIBRARIES = libgstlevel.la libgstlevel_la_SOURCES = gstlevel.c libgstlevel_la_CFLAGS = $(GST_CFLAGS) -libgstlevel_la_LIBADD = $(GST_LIBS) +libgstlevel_la_LIBADD = libgstlevel_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) noinst_HEADERS = gstlevel.h filter.func diff --git a/gst/level/gstlevel.c b/gst/level/gstlevel.c index 4b24ce81..52d58bde 100644 --- a/gst/level/gstlevel.c +++ b/gst/level/gstlevel.c @@ -97,7 +97,7 @@ static void inline gst_level_fast_8bit_chain (gint8* data, gint8** out_data, guint numsamples); static GstElementClass *parent_class = NULL; -//static guint gst_filter_signals[LAST_SIGNAL] = { 0 }; +/*static guint gst_filter_signals[LAST_SIGNAL] = { 0 }; */ GType gst_level_get_type(void) { @@ -169,7 +169,7 @@ gst_level_chain (GstPad *pad,GstBuffer *buf) caps = GST_PAD_CAPS(pad); if (caps == NULL) { - // FIXME : Please change this to a better warning method ! + /* FIXME : Please change this to a better warning method ! */ printf ("WARNING : chain : Could not get caps of pad !\n"); } diff --git a/gst/level/gstlevel.h b/gst/level/gstlevel.h index f9dade0a..4d4f4f5f 100644 --- a/gst/level/gstlevel.h +++ b/gst/level/gstlevel.h @@ -24,7 +24,7 @@ #include #include -// #include +/* #include */ #ifdef __cplusplus @@ -51,7 +51,7 @@ struct _GstLevel { GstPad *sinkpad,*srcpad; - //MetaAudioRaw meta; + /*MetaAudioRaw meta; */ }; -- cgit