diff options
author | Andy Wingo <wingo@pobox.com> | 2002-03-19 04:10:05 +0000 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2002-03-19 04:10:05 +0000 |
commit | d6258153e0aa7d3fe89a31acd3e57b9c13de4464 (patch) | |
tree | 92fd06f31c13bf0eee35395bfcef45ba6166c0d8 /ext/flac | |
parent | 0f1d7549324aa62357580b1b35e61bec6b6482ab (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 'ext/flac')
-rw-r--r-- | ext/flac/Makefile.am | 2 | ||||
-rw-r--r-- | ext/flac/gstflacdec.c | 6 | ||||
-rw-r--r-- | ext/flac/gstflacenc.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/ext/flac/Makefile.am b/ext/flac/Makefile.am index 370555f1..31922cfa 100644 --- a/ext/flac/Makefile.am +++ b/ext/flac/Makefile.am @@ -4,7 +4,7 @@ plugin_LTLIBRARIES = libgstflac.la libgstflac_la_SOURCES = gstflac.c gstflacenc.c gstflacdec.c libgstflac_la_CFLAGS = $(GST_CFLAGS) -libgstflac_la_LIBADD = $(GST_LIBS) $(FLAC_LIBS) +libgstflac_la_LIBADD = $(FLAC_LIBS) libgstflac_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) noinst_HEADERS = gstflacenc.h gstflacdec.h diff --git a/ext/flac/gstflacdec.c b/ext/flac/gstflacdec.c index 97a2fab9..125f97c5 100644 --- a/ext/flac/gstflacdec.c +++ b/ext/flac/gstflacdec.c @@ -20,7 +20,7 @@ #include <string.h> #include <sys/soundcard.h> -//#define DEBUG_ENABLED +/*#define DEBUG_ENABLED */ #include "gstflacdec.h" @@ -65,7 +65,7 @@ static FLAC__StreamDecoderWriteStatus gst_flacdec_write (const FLAC__StreamDec void *client_data); static GstElementClass *parent_class = NULL; -//static guint gst_flacdec_signals[LAST_SIGNAL] = { 0 }; +/*static guint gst_flacdec_signals[LAST_SIGNAL] = { 0 }; */ GType flacdec_get_type(void) { @@ -153,7 +153,7 @@ gst_flacdec_read (const FLAC__StreamDecoder *decoder, FLAC__byte buffer[], unsig } if (*bytes < insize) { - // we have more than we can handle + /* we have more than we can handle */ flacdec->data_left = inbuf; flacdec->offset_left += *bytes; inbuf = NULL; diff --git a/ext/flac/gstflacenc.c b/ext/flac/gstflacenc.c index 004a2bb1..5a0260c3 100644 --- a/ext/flac/gstflacenc.c +++ b/ext/flac/gstflacenc.c @@ -60,7 +60,7 @@ static void gst_flacenc_metadata_callback (const FLAC__StreamEncoder *encoder, void *client_data); static GstElementClass *parent_class = NULL; -//static guint gst_flacenc_signals[LAST_SIGNAL] = { 0 }; +/*static guint gst_flacenc_signals[LAST_SIGNAL] = { 0 }; */ GType flacenc_get_type (void) @@ -95,7 +95,7 @@ gst_flacenc_class_init (FlacEncClass *klass) parent_class = g_type_class_ref(GST_TYPE_ELEMENT); - // we have no properties atm so this is a bit silly + /* we have no properties atm so this is a bit silly */ gobject_class->set_property = gst_flacenc_set_property; gobject_class->get_property = gst_flacenc_get_property; } |