summaryrefslogtreecommitdiffstats
path: root/gst/level
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2002-03-19 04:10:05 +0000
committerAndy Wingo <wingo@pobox.com>2002-03-19 04:10:05 +0000
commitd6258153e0aa7d3fe89a31acd3e57b9c13de4464 (patch)
tree92fd06f31c13bf0eee35395bfcef45ba6166c0d8 /gst/level
parent0f1d7549324aa62357580b1b35e61bec6b6482ab (diff)
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 'gst/level')
-rw-r--r--gst/level/Makefile.am2
-rw-r--r--gst/level/gstlevel.c4
-rw-r--r--gst/level/gstlevel.h4
3 files changed, 5 insertions, 5 deletions
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 <config.h>
#include <gst/gst.h>
-// #include <gst/meta/audioraw.h>
+/* #include <gst/meta/audioraw.h> */
#ifdef __cplusplus
@@ -51,7 +51,7 @@ struct _GstLevel {
GstPad *sinkpad,*srcpad;
- //MetaAudioRaw meta;
+ /*MetaAudioRaw meta; */
};