Fix compiler warnings

This commit is contained in:
Alessandro Decina 2012-02-27 06:26:02 +01:00
parent 0c7430adec
commit d48fc18065
6 changed files with 11 additions and 8 deletions

View 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 &&

View 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)

View 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) {

View 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;

View 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;
}

View 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;