Convert GST_DEBUG_CAPS() to GST_DEBUG():
authorDavid Schleef <ds@schleef.org>
Wed, 4 Feb 2004 19:45:31 +0000 (19:45 +0000)
committerDavid Schleef <ds@schleef.org>
Wed, 4 Feb 2004 19:45:31 +0000 (19:45 +0000)
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
gst/mpeg1videoparse/gstmp1videoparse.c

index b351c28..87e3159 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,18 @@
 2004-02-04  David Schleef  <ds@schleef.org>
 
+       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  <ds@schleef.org>
+
        Replace use of GST_PAD_FORMATS_FUNCTION() and similar macros
        with the code that they would expand to.
        * ext/flac/gstflacdec.c: (gst_flacdec_get_src_formats),
index 1e993ef..06897e8 100644 (file)
@@ -208,7 +208,7 @@ mp1videoparse_parse_seq (Mp1VideoParse *mp1videoparse, GstBuffer *buf)
        "pixel_width",  G_TYPE_INT, p_w,
        "pixel_height", G_TYPE_INT, p_h, NULL);
 
-    GST_DEBUG_CAPS ("New mpeg1videoparse caps", caps);
+    GST_DEBUG ("New mpeg1videoparse caps: " GST_PTR_FORMAT, caps);
 
     gst_pad_set_explicit_caps (mp1videoparse->srcpad, caps);
   }