mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-31 11:32:38 +00:00
gstffmpegdec: Really fix the arguments this time.
I blame compilers who can't figure out there's the wrong number of arguments for the given print format :)
This commit is contained in:
parent
199d95c390
commit
ae018718d4
1 changed files with 1 additions and 2 deletions
|
@ -2255,8 +2255,7 @@ gst_ffmpegdec_chain (GstPad * pad, GstBuffer * 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));
|
||||
GST_TIME_ARGS (in_timestamp), GST_TIME_ARGS (in_duration));
|
||||
|
||||
/* parse cache joining. If there is cached data, its timestamp will be what we
|
||||
* send to the parse. */
|
||||
|
|
Loading…
Reference in a new issue