gst/avi/gstavidemux.c: Fix up my last commit. Use G_GUINT32_FORMAT for the guint32...
authorStefan Kost <ensonic@users.sourceforge.net>
Sun, 16 Mar 2008 14:04:16 +0000 (14:04 +0000)
committerStefan Kost <ensonic@users.sourceforge.net>
Sun, 16 Mar 2008 14:04:16 +0000 (14:04 +0000)
Original commit message from CVS:
* gst/avi/gstavidemux.c:
Fix up my last commit. Use G_GUINT32_FORMAT for the guint32 debug log.
Also downgrade a GST_WARNING to GST_DEBUG and add a comment.

ChangeLog
gst/avi/gstavidemux.c

index 06022f9..435dc33 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,12 @@
 2008-03-16  Stefan Kost  <ensonic@users.sf.net>
 
        * gst/avi/gstavidemux.c:
+         Fix up my last commit. Use G_GUINT32_FORMAT for the guint32 debug log.
+         Also downgrade a GST_WARNING to GST_DEBUG and add a comment.
+
+2008-03-16  Stefan Kost  <ensonic@users.sf.net>
+
+       * gst/avi/gstavidemux.c:
          Chunksize is uint32. Fix format specifier.
 
 2008-03-14  Christian Schaller <christian.schaller@collabora.co.uk>
index ac1f704..b515e06 100644 (file)
@@ -1739,7 +1739,8 @@ gst_avi_demux_stream_index (GstAviDemux * avi,
   tag = GST_READ_UINT32_LE (GST_BUFFER_DATA (buf));
   size = GST_READ_UINT32_LE (GST_BUFFER_DATA (buf) + 4);
   if (tag == GST_RIFF_TAG_LIST) {
-    GST_WARNING_OBJECT (avi, "skip LIST chunk, size %lu",
+    /* this is the movi tag */
+    GST_DEBUG_OBJECT (avi, "skip LIST chunk, size %" G_GUINT32_FORMAT,
         (8 + ((size + 1) & ~1)));
     offset += 8 + ((size + 1) & ~1);
     gst_buffer_unref (buf);
@@ -1766,8 +1767,8 @@ gst_avi_demux_stream_index (GstAviDemux * avi,
           avi->sinkpad, &offset, &tag, &buf) != GST_FLOW_OK)
     return;
 
-  GST_INFO ("will parse index chunk size %lu for tag %" GST_FOURCC_FORMAT,
-      GST_BUFFER_SIZE (buf), GST_FOURCC_ARGS (tag));
+  GST_INFO ("will parse index chunk size %" G_GUINT32_FORMAT " for tag %"
+      GST_FOURCC_FORMAT, GST_BUFFER_SIZE (buf), GST_FOURCC_ARGS (tag));
 
   gst_avi_demux_parse_index (avi, buf, index);
   if (*index)