summaryrefslogtreecommitdiffstats
path: root/gst/qtdemux
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2009-06-29 16:52:41 +0100
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2009-07-01 09:24:38 +0100
commitc730912f67a04e67c71c3d25dfa0852ab671a2d7 (patch)
tree07363c907da1b15512c379ffd7e8dde05218c327 /gst/qtdemux
parentf2ba1229ba2e1b8a1ebbee35e6b29c86b734a205 (diff)
qtdemux: use 0x prefix when logging numbers in hex
Diffstat (limited to 'gst/qtdemux')
-rw-r--r--gst/qtdemux/qtdemux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/qtdemux/qtdemux.c b/gst/qtdemux/qtdemux.c
index d09cb6f9..4b5f431b 100644
--- a/gst/qtdemux/qtdemux.c
+++ b/gst/qtdemux/qtdemux.c
@@ -1371,7 +1371,7 @@ extract_initial_length_and_fourcc (guint8 * data, guint64 * plength,
guint32 fourcc;
length = QT_UINT32 (data);
- GST_DEBUG ("length %08" G_GINT64_MODIFIER "x", length);
+ GST_DEBUG ("length 0x%08" G_GINT64_MODIFIER "x", length);
fourcc = QT_FOURCC (data + 4);
GST_DEBUG ("atom type %" GST_FOURCC_FORMAT, GST_FOURCC_ARGS (fourcc));
@@ -1381,7 +1381,7 @@ extract_initial_length_and_fourcc (guint8 * data, guint64 * plength,
/* this means we have an extended size, which is the 64 bit value of
* the next 8 bytes */
length = QT_UINT64 (data + 8);
- GST_DEBUG ("length %08llx", length);
+ GST_DEBUG ("length 0x%08" G_GINT64_MODIFIER "x", length);
}
if (plength)