ext/flac/: Cast some size_t arguments to guint to avoid compiler warnings on 64-bit...
authorJan Schmidt <thaytan@mad.scientist.com>
Fri, 10 Oct 2008 12:28:34 +0000 (12:28 +0000)
committerJan Schmidt <thaytan@mad.scientist.com>
Fri, 10 Oct 2008 12:28:34 +0000 (12:28 +0000)
Original commit message from CVS:
* ext/flac/gstflacdec.c (gst_flac_dec_read_stream):
* ext/flac/gstflacenc.c (gst_flac_enc_write_callback):
Cast some size_t arguments to guint to avoid compiler
warnings on 64-bit systems.

ChangeLog
ext/flac/gstflacdec.c
ext/flac/gstflacenc.c

index eef0699..3e9d37f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2008-10-10  Jan Schmidt  <jan.schmidt@sun.com>
+
+       * ext/flac/gstflacdec.c (gst_flac_dec_read_stream):
+       * ext/flac/gstflacenc.c (gst_flac_enc_write_callback):
+       Cast some size_t arguments to guint to avoid compiler
+       warnings on 64-bit systems.
+
 2008-10-09  Wim Taymans  <wim.taymans@collabora.co.uk>
 
        * gst/rtsp/gstrtspsrc.c: (gst_rtspsrc_handle_src_event):
index dd730b3..67981e9 100644 (file)
@@ -982,7 +982,7 @@ gst_flac_dec_read_stream (const FLAC__StreamDecoder * decoder,
   }
 
   GST_LOG_OBJECT (dec, "feeding %u bytes to decoder (available=%u, bytes=%u)",
-      len, gst_adapter_available (dec->adapter), *bytes);
+      len, gst_adapter_available (dec->adapter), (guint) * bytes);
   memcpy (buffer, gst_adapter_peek (dec->adapter, len), len);
   *bytes = len;
 
index 3f4a2a3..e5a7804 100644 (file)
@@ -996,7 +996,8 @@ gst_flac_enc_write_callback (const FLAC__StreamEncoder * encoder,
   /* we assume libflac passes us stuff neatly framed */
   if (!flacenc->got_headers) {
     if (samples == 0) {
-      GST_DEBUG_OBJECT (flacenc, "Got header, queueing (%u bytes)", bytes);
+      GST_DEBUG_OBJECT (flacenc, "Got header, queueing (%u bytes)",
+          (guint) bytes);
       flacenc->headers = g_list_append (flacenc->headers, outbuf);
       /* note: it's important that we increase our byte offset */
       goto out;
@@ -1011,7 +1012,7 @@ gst_flac_enc_write_callback (const FLAC__StreamEncoder * encoder,
 
   GST_LOG ("Pushing buffer: ts=%" GST_TIME_FORMAT ", samples=%u, size=%u, "
       "pos=%" G_GUINT64_FORMAT, GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (outbuf)),
-      samples, bytes, flacenc->offset);
+      samples, (guint) bytes, flacenc->offset);
 
   gst_buffer_set_caps (outbuf, GST_PAD_CAPS (flacenc->srcpad));
   ret = gst_pad_push (flacenc->srcpad, outbuf);