mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 13:53:19 +00:00
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
This commit is contained in:
parent
4ff8690392
commit
09588296ae
3 changed files with 5 additions and 2 deletions
|
@ -71,6 +71,9 @@ fi
|
||||||
# popd > /dev/null
|
# popd > /dev/null
|
||||||
#done
|
#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 "$@"
|
./configure --enable-maintainer-mode --enable-plugin-srcdir --enable-debug --enable-debug-verbose "$@"
|
||||||
|
|
||||||
echo
|
echo
|
||||||
|
|
|
@ -192,7 +192,7 @@ gst_fakesink_chain (GstPad *pad, GstBuffer *buf)
|
||||||
|
|
||||||
fakesink = GST_FAKESINK (gst_pad_get_parent (pad));
|
fakesink = GST_FAKESINK (gst_pad_get_parent (pad));
|
||||||
if (!fakesink->silent)
|
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);
|
gst_buffer_unref (buf);
|
||||||
|
|
||||||
|
|
|
@ -192,7 +192,7 @@ gst_fakesink_chain (GstPad *pad, GstBuffer *buf)
|
||||||
|
|
||||||
fakesink = GST_FAKESINK (gst_pad_get_parent (pad));
|
fakesink = GST_FAKESINK (gst_pad_get_parent (pad));
|
||||||
if (!fakesink->silent)
|
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);
|
gst_buffer_unref (buf);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue