Fix some compile warnings
authorWim Taymans <wim.taymans@gmail.com>
Sun, 31 Dec 2000 23:31:51 +0000 (23:31 +0000)
committerWim Taymans <wim.taymans@gmail.com>
Sun, 31 Dec 2000 23:31:51 +0000 (23:31 +0000)
Original commit message from CVS:
Fix some compile warnings

gst/Makefile.am
gst/elements/gstfakesrc.c
gst/gstbin.c
gst/gstpad.c
plugins/elements/gstfakesrc.c

index 2b58c3a9828a01b40b0979b7a8ec10e9e4c03747..9d3096fa1d376ccd378308c7bcdfa54b17f1bfc1 100644 (file)
@@ -82,7 +82,7 @@ noinst_HEADERS =      \
        gsti386.h       \
        gstppc.h        
 
-CFLAGS += -O2 -Wall
+CFLAGS += -Wall
 
 libgst_la_LIBADD = $(GLIB_LIBS) $(GTK_LIBS) $(XML_LIBS)
 libgst_la_LDFLAGS = -version-info $(STREAMER_CURRENT):$(STREAMER_REVISION):$(STREAMER_AGE)
index a206cad09ad8d40e11be1720b299ed1d2b921c83..0ca9606388283bd7378fbffe56c2eaa58f7903cb 100644 (file)
@@ -156,7 +156,6 @@ static void
 gst_fakesrc_update_functions (GstFakeSrc *src)
 {
   GSList *pads;
-  GstPadGetFunction func;
 
   pads = src->srcpads;
   while (pads) {
index 493cc0c96a8d17c3de28e988f586baf2b568d989..2b5e47b15562fa77536be631acdcbf1206a055ab 100644 (file)
@@ -566,7 +566,9 @@ gst_bin_create_plan_func (GstBin *bin)
   GstElement *manager;
   GList *elements;
   GstElement *element;
+#ifdef GST_DEBUG_ENABLED
   const gchar *elementname;
+#endif
   GSList *pending = NULL;
   GstBin *pending_bin;
 
@@ -706,7 +708,7 @@ gst_bin_iterate_func (GstBin *bin)
   GstElement *entry;
   GList *pads;
   GstPad *pad;
-  GstBuffer *buf;
+  GstBuffer *buf = NULL;
 
   DEBUG_SET_STRING("(\"%s\")", gst_element_get_name (GST_ELEMENT (bin)));
   DEBUG_ENTER_STRING;
index b897a419b02df6eab94d81962b324fb9186fc5ad..77adb30b3ae62a88362f53ff7bc2def350484333 100644 (file)
@@ -1045,7 +1045,7 @@ gst_pad_eos_func(GstPad *pad)
   GstElement *element;
   GList *pads;
   GstPad *srcpad;
-  gboolean result, success = TRUE;
+  gboolean result = TRUE, success;
 
   g_return_val_if_fail (pad != NULL, FALSE);
   g_return_val_if_fail (GST_IS_PAD(pad), FALSE);
index a206cad09ad8d40e11be1720b299ed1d2b921c83..0ca9606388283bd7378fbffe56c2eaa58f7903cb 100644 (file)
@@ -156,7 +156,6 @@ static void
 gst_fakesrc_update_functions (GstFakeSrc *src)
 {
   GSList *pads;
-  GstPadGetFunction func;
 
   pads = src->srcpads;
   while (pads) {