mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 16:50:47 +00:00
gstffmpegdec: Fix build on macosx.
The arguments were in the wrong order (and therefore the types were wrong).
This commit is contained in:
parent
010871cb77
commit
199d95c390
1 changed files with 3 additions and 2 deletions
|
@ -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));
|
||||
|
||||
|
|
Loading…
Reference in a new issue