Collection of minor changes: autogen.sh - remove config.cache before running ./config...
authorErik Walthinsen <omega@temple-baptist.org>
Mon, 23 Apr 2001 23:16:12 +0000 (23:16 +0000)
committerErik Walthinsen <omega@temple-baptist.org>
Mon, 23 Apr 2001 23:16:12 +0000 (23:16 +0000)
Original commit message from CVS:
Collection of minor changes:

* autogen.sh - remove config.cache before running ./configure
* gst/elements/gstfakesink.c - print out the size of the buffer, too
* plugins/Makefile.am - removed a spare trailing backslash
* plugins/arts/gst_artsio_impl.cc - change the scale back to 0.5
* plugins/oss/gstosssrc.c - change name slightly to match osssink

autogen.sh
gst/elements/gstfakesink.c
plugins/elements/gstfakesink.c

index 5f4751c..5507330 100755 (executable)
@@ -71,6 +71,9 @@ fi
 #  popd > /dev/null
 #done
 
+# now remove the cache, because it can be considered dangerous in this case
+rm -f config.cache
+
 ./configure --enable-maintainer-mode --enable-plugin-srcdir --enable-debug --enable-debug-verbose "$@"
 
 echo 
index f5beacc..11590c4 100644 (file)
@@ -192,7 +192,7 @@ gst_fakesink_chain (GstPad *pad, GstBuffer *buf)
 
   fakesink = GST_FAKESINK (gst_pad_get_parent (pad));
   if (!fakesink->silent)
-    g_print("fakesink: ******* (%s:%s)< \n",GST_DEBUG_PAD_NAME(pad));
+    g_print("fakesink: ******* (%s:%s)< (%d bytes) \n",GST_DEBUG_PAD_NAME(pad),GST_BUFFER_SIZE(buf));
   
   gst_buffer_unref (buf);
 
index f5beacc..11590c4 100644 (file)
@@ -192,7 +192,7 @@ gst_fakesink_chain (GstPad *pad, GstBuffer *buf)
 
   fakesink = GST_FAKESINK (gst_pad_get_parent (pad));
   if (!fakesink->silent)
-    g_print("fakesink: ******* (%s:%s)< \n",GST_DEBUG_PAD_NAME(pad));
+    g_print("fakesink: ******* (%s:%s)< (%d bytes) \n",GST_DEBUG_PAD_NAME(pad),GST_BUFFER_SIZE(buf));
   
   gst_buffer_unref (buf);