From 09588296aed696da9b3ad21e585d0edb7d5b847b Mon Sep 17 00:00:00 2001 From: Erik Walthinsen Date: Mon, 23 Apr 2001 23:16:12 +0000 Subject: [PATCH] Collection of minor changes: autogen.sh - remove config.cache before running ./configure gst/elements/gstfakesink.c -... 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 | 3 +++ gst/elements/gstfakesink.c | 2 +- plugins/elements/gstfakesink.c | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/autogen.sh b/autogen.sh index 5f4751c..5507330 100755 --- a/autogen.sh +++ b/autogen.sh @@ -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 diff --git a/gst/elements/gstfakesink.c b/gst/elements/gstfakesink.c index f5beacc..11590c4 100644 --- a/gst/elements/gstfakesink.c +++ b/gst/elements/gstfakesink.c @@ -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); diff --git a/plugins/elements/gstfakesink.c b/plugins/elements/gstfakesink.c index f5beacc..11590c4 100644 --- a/plugins/elements/gstfakesink.c +++ b/plugins/elements/gstfakesink.c @@ -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); -- 2.7.4