summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2008-05-21 16:44:15 +0000
committerWim Taymans <wim.taymans@gmail.com>2008-05-21 16:44:15 +0000
commit2cdf18edff5a6305754e3b600dc947c65094977d (patch)
tree0e23380e60dc50d57080075f4f3e9ae413ac3f7d /sys
parentc6b54c3d02755e9daf9a12846627d1ab7062f34e (diff)
Some debug and comment fixes.
Original commit message from CVS: * ext/vorbis/vorbisdec.c: * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform): * sys/xvimage/xvimagesink.c: (gst_xvimagesink_show_frame): Some debug and comment fixes. * tests/examples/dynamic/addstream.c: (main): Fix , to ;
Diffstat (limited to 'sys')
-rw-r--r--sys/xvimage/xvimagesink.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/xvimage/xvimagesink.c b/sys/xvimage/xvimagesink.c
index 42fb6fd3..b96a2a90 100644
--- a/sys/xvimage/xvimagesink.c
+++ b/sys/xvimage/xvimagesink.c
@@ -2191,11 +2191,11 @@ gst_xvimagesink_show_frame (GstBaseSink * bsink, GstBuffer * buf)
/* If this buffer has been allocated using our buffer management we simply
put the ximage which is in the PRIVATE pointer */
if (GST_IS_XVIMAGE_BUFFER (buf)) {
- GST_LOG_OBJECT (xvimagesink, "fast put of bufferpool buffer");
+ GST_LOG_OBJECT (xvimagesink, "fast put of bufferpool buffer %p", buf);
if (!gst_xvimagesink_xvimage_put (xvimagesink, GST_XVIMAGE_BUFFER (buf)))
goto no_window;
} else {
- GST_LOG_OBJECT (xvimagesink, "slow copy into bufferpool buffer");
+ GST_LOG_OBJECT (xvimagesink, "slow copy into bufferpool buffer %p", buf);
/* Else we have to copy the data into our private image, */
/* if we have one... */
if (!xvimagesink->xvimage) {