diff options
author | Stas Sergeev <stsp@users.sourceforge.net> | 2011-09-29 18:41:53 +0400 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2011-09-30 18:05:32 +0100 |
commit | 73fac4e5bc2bb3a63e809248d70a978874a57a77 (patch) | |
tree | 27bcb94bd6b13d7fe7b3551644854edbd6e32f05 /sys | |
parent | a4154e9db285c1102b3b4bf2566a64ccce4cc328 (diff) | |
download | gstreamer-plugins-good-73fac4e5bc2bb3a63e809248d70a978874a57a77.tar.gz |
v4l2, ximagesrc: fix some printf format compiler warnings
https://bugzilla.gnome.org/show_bug.cgi?id=660150
Diffstat (limited to 'sys')
-rw-r--r-- | sys/v4l2/gstv4l2object.c | 4 | ||||
-rw-r--r-- | sys/ximage/gstximagesrc.c | 15 |
2 files changed, 10 insertions, 9 deletions
diff --git a/sys/v4l2/gstv4l2object.c b/sys/v4l2/gstv4l2object.c index e361970c3..903e63a9d 100644 --- a/sys/v4l2/gstv4l2object.c +++ b/sys/v4l2/gstv4l2object.c @@ -704,8 +704,8 @@ gst_v4l2_set_defaults (GstV4l2Object * v4l2object) if (v4l2object->tv_norm) norm = gst_v4l2_tuner_get_norm_by_std_id (v4l2object, v4l2object->tv_norm); - GST_DEBUG_OBJECT (v4l2object->element, "tv_norm=%d, norm=%p", - v4l2object->tv_norm, norm); + GST_DEBUG_OBJECT (v4l2object->element, "tv_norm=0x%" G_GINT64_MODIFIER "x, " + "norm=%p", (guint64) v4l2object->tv_norm, norm); if (norm) { gst_tuner_set_norm (tuner, norm); } else { diff --git a/sys/ximage/gstximagesrc.c b/sys/ximage/gstximagesrc.c index b09c1abd5..31365c1a0 100644 --- a/sys/ximage/gstximagesrc.c +++ b/sys/ximage/gstximagesrc.c @@ -165,11 +165,12 @@ gst_ximage_src_open_display (GstXImageSrc * s, const gchar * name) if (s->xid != 0) { status = XGetWindowAttributes (s->xcontext->disp, s->xid, &attrs); if (status) { - GST_DEBUG_OBJECT (s, "Found window XID %p", s->xid); + GST_DEBUG_OBJECT (s, "Found window XID %" G_GUINT64_FORMAT, s->xid); s->xwindow = s->xid; goto window_found; } else { - GST_WARNING_OBJECT (s, "Failed to get window %p attributes", s->xid); + GST_WARNING_OBJECT (s, "Failed to get window %" G_GUINT64_FORMAT + " attributes", s->xid); } } @@ -177,13 +178,14 @@ gst_ximage_src_open_display (GstXImageSrc * s, const gchar * name) GST_DEBUG_OBJECT (s, "Looking for window %s", s->xname); window = gst_ximage_src_find_window (s, s->xcontext->root, s->xname); if (window != 0) { - GST_DEBUG_OBJECT (s, "Found window named %s as %p, ", s->xname, window); + GST_DEBUG_OBJECT (s, "Found window named %s, ", s->xname); status = XGetWindowAttributes (s->xcontext->disp, window, &attrs); if (status) { s->xwindow = window; goto window_found; } else { - GST_WARNING_OBJECT (s, "Failed to get window %p attributes", window); + GST_WARNING_OBJECT (s, "Failed to get window attributes for " + "window named %s", s->xname); } } } @@ -195,7 +197,7 @@ gst_ximage_src_open_display (GstXImageSrc * s, const gchar * name) g_assert (s->xwindow != 0); s->width = attrs.width; s->height = attrs.height; - GST_INFO_OBJECT (s, "Using default window %p, size of %dx%d", s->xwindow, + GST_INFO_OBJECT (s, "Using default window size of %dx%d", s->width, s->height); } use_root_window: @@ -664,8 +666,7 @@ gst_ximage_src_ximage_get (GstXImageSrc * ximagesrc) } else #endif /* HAVE_XSHM */ { - GST_DEBUG_OBJECT (ximagesrc, - "Retrieving screen using XGetImage, window %p", ximagesrc->xwindow); + GST_DEBUG_OBJECT (ximagesrc, "Retrieving screen using XGetImage"); if (ximagesrc->remote) { XGetSubImage (ximagesrc->xcontext->disp, ximagesrc->xwindow, ximagesrc->startx, ximagesrc->starty, ximagesrc->width, |