summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Swain <robert.swain@gmail.com>2009-10-04 21:59:24 +0200
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2009-10-05 00:35:15 +0100
commitc7b5df91a9182108274bc893ad9310dc0a5029ee (patch)
tree2eaf0e9a08fa7cb74db675182a069f2308f7f30c
parent4590daf2020dc8e2576a73ff7ade50f1a5a571f6 (diff)
qtdemux: fix printf warnings on OSX
Cast variables passed to printf to avoid warnings about incorrect formats (most likely caused by sizeof returning a size_t). Fixes #597348.
-rw-r--r--gst/qtdemux/qtdemux.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/gst/qtdemux/qtdemux.c b/gst/qtdemux/qtdemux.c
index 905c6d443..5be8a174f 100644
--- a/gst/qtdemux/qtdemux.c
+++ b/gst/qtdemux/qtdemux.c
@@ -3629,7 +3629,8 @@ qtdemux_parse_samples (GstQTDemux * qtdemux, QtDemuxStream * stream,
goto no_samples;
GST_DEBUG_OBJECT (qtdemux, "stsz sample_size 0, allocating n_samples %u "
- "(%u MB)", n_samples, (n_samples * sizeof (QtDemuxSample)) >> 20);
+ "(%u MB)", n_samples,
+ (guint) (n_samples * sizeof (QtDemuxSample)) >> 20);
if (n_samples >= QTDEMUX_MAX_SAMPLE_INDEX_SIZE / sizeof (QtDemuxSample))
goto index_too_big;
@@ -3859,7 +3860,7 @@ qtdemux_parse_samples (GstQTDemux * qtdemux, QtDemuxStream * stream,
goto no_samples;
GST_DEBUG_OBJECT (qtdemux, "allocating n_samples %u (%u MB)", n_samples,
- (n_samples * sizeof (QtDemuxSample)) >> 20);
+ (guint) (n_samples * sizeof (QtDemuxSample)) >> 20);
if (n_samples >= QTDEMUX_MAX_SAMPLE_INDEX_SIZE / sizeof (QtDemuxSample))
goto index_too_big;