From d24b8330eee733dbcaf4d41dac0e2ef40e0d56a2 Mon Sep 17 00:00:00 2001 From: David Schleef Date: Wed, 4 Feb 2004 19:45:31 +0000 Subject: [PATCH] Convert GST_DEBUG_CAPS() to GST_DEBUG(): Original commit message from CVS: Convert GST_DEBUG_CAPS() to GST_DEBUG(): * gst/mpeg1videoparse/gstmp1videoparse.c: (mp1videoparse_parse_seq): * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream): * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps): * sys/xvideo/gstxwindow.c: (_gst_xwindow_new): * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect), (gst_xvideosink_getcaps): * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): * testsuite/gst-lint: more tests --- ChangeLog | 13 +++++++++++++ gst/realmedia/rmdemux.c | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index b351c28728..87e31591a1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,16 @@ +2004-02-04 David Schleef + + Convert GST_DEBUG_CAPS() to GST_DEBUG(): + * gst/mpeg1videoparse/gstmp1videoparse.c: + (mp1videoparse_parse_seq): + * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream): + * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps): + * sys/xvideo/gstxwindow.c: (_gst_xwindow_new): + * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect), + (gst_xvideosink_getcaps): + * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): + * testsuite/gst-lint: more tests + 2004-02-04 David Schleef Replace use of GST_PAD_FORMATS_FUNCTION() and similar macros diff --git a/gst/realmedia/rmdemux.c b/gst/realmedia/rmdemux.c index 56c43cd9a5..9ad85fea52 100644 --- a/gst/realmedia/rmdemux.c +++ b/gst/realmedia/rmdemux.c @@ -515,7 +515,7 @@ void gst_rmdemux_add_stream(GstRMDemux *rmdemux, GstRMDemuxStream *stream) g_print("adding pad %p to rmdemux %p\n", stream->pad, rmdemux); gst_element_add_pad(GST_ELEMENT (rmdemux), stream->pad); - GST_DEBUG_CAPS("setting caps",stream->caps); + GST_DEBUG ("setting caps: " GST_PTR_FORMAT, stream->caps); gst_pad_set_explicit_caps(stream->pad, stream->caps); }