Printf fixes.
authorTim-Philipp Müller <tim@centricular.net>
Thu, 5 Oct 2006 14:26:08 +0000 (14:26 +0000)
committerTim-Philipp Müller <tim@centricular.net>
Thu, 5 Oct 2006 14:26:08 +0000 (14:26 +0000)
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.

ChangeLog
gst/gstpad.c
gst/gstregistry.c
gst/gstregistryxml.c
libs/gst/controller/gstcontroller.c
libs/gst/dataprotocol/dataprotocol.c
libs/gst/net/gstnetclientclock.c
plugins/elements/gstfdsrc.c

index adaf289..b1fa649 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,19 @@
 2006-10-05  Tim-Philipp Müller  <tim at centricular dot net>
 
+       * 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  <tim at centricular dot net>
+
        * configure.ac:
        * docs/gst/gstreamer-sections.txt:
        * gst/gstconfig.h.in:
index 4f64386..4d5280e 100644 (file)
@@ -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);
index 503690e..244e77c 100644 (file)
@@ -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) {
index 2e5a154..eebbd8f 100644 (file)
@@ -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");
         }
index acb73d8..ccf6c27 100644 (file)
@@ -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;
index 7b9ec2b..949fd72 100644 (file)
@@ -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;
   }
 
index b3b3f22..1742330 100644 (file)
@@ -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;
   }
index 6e9cdfb..77c5bd2 100644 (file)
@@ -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;