Fix compiler warnings
authorAlessandro Decina <alessandro.d@gmail.com>
Mon, 27 Feb 2012 05:26:02 +0000 (06:26 +0100)
committerAlessandro Decina <alessandro.d@gmail.com>
Mon, 27 Feb 2012 05:26:02 +0000 (06:26 +0100)
ext/ffmpeg/gstffmpegcodecmap.c
ext/ffmpeg/gstffmpegdec.c
ext/ffmpeg/gstffmpegdemux.c
ext/ffmpeg/gstffmpegenc.c
ext/ffmpeg/gstffmpegprotocol.c
ext/libswscale/gstffmpegscale.c

index a93b292..948bd67 100644 (file)
@@ -2247,7 +2247,7 @@ gst_ffmpeg_caps_with_codecid (enum CodecID codec_id,
       context->extradata[0] = (guint8) map.size;
     }
 
-    GST_DEBUG ("have codec data of size %d", map.size);
+    GST_DEBUG ("have codec data of size %" G_GSIZE_FORMAT, map.size);
 
     gst_buffer_unmap (buf, &map);
   } else if (context->extradata == NULL && codec_id != CODEC_ID_AAC_LATM &&
index 9b2044c..3b8ff1c 100644 (file)
@@ -2823,7 +2823,7 @@ gst_ffmpegdec_chain (GstPad * pad, GstObject * parent, GstBuffer * inbuf)
 
       GST_LOG_OBJECT (ffmpegdec,
           "parser returned res %d and size %d, id %" G_GINT64_FORMAT, res, size,
-          ffmpegdec->pctx->pts);
+          (gint64) ffmpegdec->pctx->pts);
 
       /* store pts for decoding */
       if (ffmpegdec->pctx->pts != AV_NOPTS_VALUE && ffmpegdec->pctx->pts != -1)
index e202c29..2a97e12 100644 (file)
@@ -1435,7 +1435,7 @@ gst_ffmpegdemux_loop (GstFFMpegDemux * demux)
   }
 
   GST_DEBUG_OBJECT (demux,
-      "Sending out buffer time:%" GST_TIME_FORMAT " size:%d",
+      "Sending out buffer time:%" GST_TIME_FORMAT " size:%" G_GSIZE_FORMAT,
       GST_TIME_ARGS (timestamp), gst_buffer_get_size (outbuf));
 
   ret = stream->last_flow = gst_pad_push (srcpad, outbuf);
@@ -1646,7 +1646,8 @@ gst_ffmpegdemux_chain (GstPad * sinkpad, GstObject * parent, GstBuffer * buffer)
   if (G_UNLIKELY (ffpipe->srcresult != GST_FLOW_OK))
     goto ignore;
 
-  GST_DEBUG ("Giving a buffer of %d bytes", gst_buffer_get_size (buffer));
+  GST_DEBUG ("Giving a buffer of %" G_GSIZE_FORMAT " bytes",
+      gst_buffer_get_size (buffer));
   gst_adapter_push (ffpipe->adapter, buffer);
   buffer = NULL;
   while (gst_adapter_available (ffpipe->adapter) >= ffpipe->needed) {
index 4e4bd1e..9388e09 100644 (file)
@@ -952,7 +952,8 @@ gst_ffmpegenc_chain_audio (GstPad * pad, GstObject * parent, GstBuffer * inbuf)
 
   GST_DEBUG_OBJECT (ffmpegenc,
       "Received time %" GST_TIME_FORMAT ", duration %" GST_TIME_FORMAT
-      ", size %d", GST_TIME_ARGS (timestamp), GST_TIME_ARGS (duration), size);
+      ", size %" G_GSIZE_FORMAT, GST_TIME_ARGS (timestamp),
+      GST_TIME_ARGS (duration), size);
 
   frame_size = ctx->frame_size;
   osize = av_get_bits_per_sample_format (ctx->sample_fmt) / 8;
index 431b14b..5dd78e5 100644 (file)
@@ -360,7 +360,7 @@ gst_ffmpeg_pipe_read (URLContext * h, unsigned char *buf, int size)
     GST_LOG ("Getting %d bytes", size);
     gst_adapter_copy (ffpipe->adapter, buf, 0, size);
     gst_adapter_flush (ffpipe->adapter, size);
-    GST_LOG ("%d bytes left in adapter",
+    GST_LOG ("%" G_GSIZE_FORMAT " bytes left in adapter",
         gst_adapter_available (ffpipe->adapter));
     ffpipe->needed = 0;
   }
index 226f69a..a987f10 100644 (file)
@@ -465,8 +465,9 @@ gst_ffmpegscale_get_unit_size (GstBaseTransform * trans, GstCaps * caps,
 
   *size = info.size;
 
-  GST_DEBUG_OBJECT (trans, "unit size = %d for format %d w %d height %d",
-      *size, GST_VIDEO_INFO_FORMAT (&info), GST_VIDEO_INFO_WIDTH (&info),
+  GST_DEBUG_OBJECT (trans,
+      "unit size = %" G_GSIZE_FORMAT " for format %d w %d height %d", *size,
+      GST_VIDEO_INFO_FORMAT (&info), GST_VIDEO_INFO_WIDTH (&info),
       GST_VIDEO_INFO_HEIGHT (&info));
 
   return TRUE;