summaryrefslogtreecommitdiffstats
path: root/gst
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2006-10-10 18:54:05 +0000
committerTim-Philipp Müller <tim@centricular.net>2006-10-10 18:54:05 +0000
commit2738e1f8a91e1547ab5d6aa321fff6a9221c5454 (patch)
treecb4c95e871240663462b1763adb0ecfe9560d0d9 /gst
parentd8f80b3acd11d0c4b7159d4346ffc65660582389 (diff)
gst/qtdemux/qtdemux.c: Printf format fixes.
Original commit message from CVS: * gst/qtdemux/qtdemux.c: (extract_initial_length_and_fourcc), (gst_qtdemux_loop_state_header): Printf format fixes. * sys/dvb/gstdvbsrc.c: Use "_stdint.h".
Diffstat (limited to 'gst')
-rw-r--r--gst/qtdemux/qtdemux.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gst/qtdemux/qtdemux.c b/gst/qtdemux/qtdemux.c
index b07742a0..a376126c 100644
--- a/gst/qtdemux/qtdemux.c
+++ b/gst/qtdemux/qtdemux.c
@@ -1050,7 +1050,7 @@ extract_initial_length_and_fourcc (guint8 * data, guint64 * plength,
guint32 fourcc;
length = GST_READ_UINT32_BE (data);
- GST_DEBUG ("length %08x", length);
+ GST_DEBUG ("length %08" G_GINT64_MODIFIER "x", length);
fourcc = GST_READ_UINT32_LE (data + 4);
GST_DEBUG ("atom type %" GST_FOURCC_FORMAT, GST_FOURCC_ARGS (fourcc));
@@ -1103,8 +1103,8 @@ gst_qtdemux_loop_state_header (GstQTDemux * qtdemux)
goto beach;
if (length != GST_BUFFER_SIZE (moov)) {
GST_WARNING_OBJECT (qtdemux,
- "We got less than expected (received %d, wanted %d)",
- GST_BUFFER_SIZE (moov), length);
+ "We got less than expected (received %u, wanted %u)",
+ GST_BUFFER_SIZE (moov), (guint) length);
ret = GST_FLOW_ERROR;
goto beach;
}