From: Tim-Philipp Müller Date: Thu, 5 Oct 2006 14:26:08 +0000 (+0000) Subject: Printf fixes. X-Git-Tag: RELEASE-0_10_11~94 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f468db236d5d7fcb4f5df7fda7e3baba4550df3f;p=platform%2Fupstream%2Fgstreamer.git Printf fixes. Original commit message from CVS: * gst/gstpad.c: (pre_activate): * gst/gstregistry.c: (gst_registry_scan_path_level): * gst/gstregistryxml.c: (load_plugin): * libs/gst/controller/gstcontroller.c: (gst_controlled_property_set_interpolation_mode): * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_packet_from_event_1_0): * libs/gst/net/gstnetclientclock.c: (gst_net_client_clock_observe_times): * plugins/elements/gstfdsrc.c: (gst_fd_src_create): Printf fixes. --- diff --git a/ChangeLog b/ChangeLog index adaf289..b1fa649 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,19 @@ 2006-10-05 Tim-Philipp Müller + * gst/gstpad.c: (pre_activate): + * gst/gstregistry.c: (gst_registry_scan_path_level): + * gst/gstregistryxml.c: (load_plugin): + * libs/gst/controller/gstcontroller.c: + (gst_controlled_property_set_interpolation_mode): + * libs/gst/dataprotocol/dataprotocol.c: + (gst_dp_packet_from_event_1_0): + * libs/gst/net/gstnetclientclock.c: + (gst_net_client_clock_observe_times): + * plugins/elements/gstfdsrc.c: (gst_fd_src_create): + Printf fixes. + +2006-10-05 Tim-Philipp Müller + * configure.ac: * docs/gst/gstreamer-sections.txt: * gst/gstconfig.h.in: diff --git a/gst/gstpad.c b/gst/gstpad.c index 4f64386..4d5280e 100644 --- a/gst/gstpad.c +++ b/gst/gstpad.c @@ -575,8 +575,7 @@ pre_activate (GstPad * pad, GstActivateMode new_mode) break; case GST_ACTIVATE_NONE: GST_OBJECT_LOCK (pad); - GST_DEBUG_OBJECT (pad, "setting ACTIVATE_MODE NONE, set flushing", - new_mode); + GST_DEBUG_OBJECT (pad, "setting ACTIVATE_MODE NONE, set flushing"); GST_PAD_SET_FLUSHING (pad); /* unlock blocked pads so element can resume and stop */ GST_PAD_BLOCK_SIGNAL (pad); diff --git a/gst/gstregistry.c b/gst/gstregistry.c index 503690e..244e77c 100644 --- a/gst/gstregistry.c +++ b/gst/gstregistry.c @@ -857,9 +857,9 @@ gst_registry_scan_path_level (GstRegistry * registry, const gchar * path, } else { GST_INFO_OBJECT (registry, "cached info for %s is stale", filename); GST_DEBUG_OBJECT (registry, "mtime %ld != %ld or size %" - G_GSIZE_FORMAT " != %" - G_GSIZE_FORMAT, plugin->file_mtime, file_status.st_mtime, - plugin->file_size, file_status.st_size); + G_GINT64_FORMAT " != %" + G_GINT64_FORMAT, plugin->file_mtime, file_status.st_mtime, + (gint64) plugin->file_size, (gint64) file_status.st_size); gst_registry_remove_plugin (gst_registry_get_default (), plugin); newplugin = gst_plugin_load_file (filename, NULL); if (newplugin) { diff --git a/gst/gstregistryxml.c b/gst/gstregistryxml.c index 2e5a154..eebbd8f 100644 --- a/gst/gstregistryxml.c +++ b/gst/gstregistryxml.c @@ -452,7 +452,7 @@ load_plugin (xmlTextReaderPtr reader, GList ** feature_list) if (read_uint (reader, &x)) { plugin->file_size = x; - GST_DEBUG ("file_size %d", plugin->file_size); + GST_DEBUG ("file_size %" G_GINT64_FORMAT, (gint64) plugin->file_size); } else { GST_DEBUG ("failed to read size"); } diff --git a/libs/gst/controller/gstcontroller.c b/libs/gst/controller/gstcontroller.c index acb73d8..ccf6c275 100644 --- a/libs/gst/controller/gstcontroller.c +++ b/libs/gst/controller/gstcontroller.c @@ -234,7 +234,7 @@ gst_controlled_property_set_interpolation_mode (GstControlledProperty * self, self->get_value_array = NULL; } if (!self->get) { /* || !self->get_value_array) */ - GST_WARNING ("incomplete implementation for type %d/%d:'%s'/'%s'", + GST_WARNING ("incomplete implementation for type %lu/%lu:'%s'/'%s'", self->type, self->base, g_type_name (self->type), g_type_name (self->base)); res = FALSE; diff --git a/libs/gst/dataprotocol/dataprotocol.c b/libs/gst/dataprotocol/dataprotocol.c index 7b9ec2b..949fd729 100644 --- a/libs/gst/dataprotocol/dataprotocol.c +++ b/libs/gst/dataprotocol/dataprotocol.c @@ -545,7 +545,7 @@ gst_dp_packet_from_event_1_0 (const GstEvent * event, GstDPHeaderFlag flags, GST_LOG ("event %p has structure, string %s", event, string); pl_length = strlen ((gchar *) string) + 1; /* include trailing 0 */ } else { - GST_LOG ("event %p has no structure"); + GST_LOG ("event %p has no structure", event); pl_length = 0; } diff --git a/libs/gst/net/gstnetclientclock.c b/libs/gst/net/gstnetclientclock.c index b3b3f22..1742330 100644 --- a/libs/gst/net/gstnetclientclock.c +++ b/libs/gst/net/gstnetclientclock.c @@ -292,8 +292,8 @@ gst_net_client_clock_observe_times (GstNetClientClock * self, bogus_observation: { - GST_WARNING_OBJECT (self, "time packet receive time < send time (%", - GST_TIME_FORMAT, " < %" GST_TIME_FORMAT ")", GST_TIME_ARGS (local_1), + GST_WARNING_OBJECT (self, "time packet receive time < send time (%" + GST_TIME_FORMAT " < %" GST_TIME_FORMAT ")", GST_TIME_ARGS (local_1), GST_TIME_ARGS (local_2)); return; } diff --git a/plugins/elements/gstfdsrc.c b/plugins/elements/gstfdsrc.c index 6e9cdfb..77c5bd2 100644 --- a/plugins/elements/gstfdsrc.c +++ b/plugins/elements/gstfdsrc.c @@ -372,7 +372,7 @@ gst_fd_src_create (GstPushSrc * psrc, GstBuffer ** outbuf) GST_BUFFER_TIMESTAMP (buf) = GST_CLOCK_TIME_NONE; src->curoffset += readbytes; - GST_LOG_OBJECT (psrc, "Read buffer of size %u.", readbytes); + GST_LOG_OBJECT (psrc, "Read buffer of size %ld", readbytes); /* we're done, return the buffer */ *outbuf = buf;