gstffmpegdec: Fix build on macosx.

The arguments were in the wrong order (and therefore the types were wrong).
This commit is contained in:
Edward Hervey 2009-04-18 08:50:12 +02:00
parent 010871cb77
commit 199d95c390

View file

@ -2252,8 +2252,9 @@ gst_ffmpegdec_chain (GstPad * pad, GstBuffer * inbuf)
in_offset = GST_BUFFER_OFFSET (inbuf);
GST_LOG_OBJECT (ffmpegdec,
"Received new data of size %d, offset:%" G_GINT64_FORMAT ", ts:%"
GST_TIME_FORMAT ", dur:%" GST_TIME_FORMAT, GST_BUFFER_OFFSET (inbuf),
"Received new data of size %u, offset:%" G_GUINT64_FORMAT ", ts:%"
GST_TIME_FORMAT ", dur:%" GST_TIME_FORMAT,
GST_BUFFER_SIZE (inbuf), GST_BUFFER_OFFSET (inbuf),
GST_BUFFER_SIZE (inbuf), GST_TIME_ARGS (in_timestamp),
GST_TIME_ARGS (in_duration));