mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-02 21:48:55 +00:00
uvch264: printf format fix
gstuvch264_mjpgdemux.c:437:5: error: format '%lu' expects argument of type 'long unsigned int', but argument 8 has type 'GstClockTime'
This commit is contained in:
parent
e51cd4fe2f
commit
70be50fbed
1 changed files with 2 additions and 1 deletions
|
@ -434,7 +434,8 @@ _pts_to_timestamp (GstUvcH264MjpgDemux * self, GstBuffer * buf, guint32 pts)
|
|||
GST_DEBUG_OBJECT (self, "device frequency: %u", sample.dev_frequency);
|
||||
GST_DEBUG_OBJECT (self, "dev_sof: %u", sample.dev_sof);
|
||||
GST_DEBUG_OBJECT (self, "dev_stc: %u", sample.dev_stc);
|
||||
GST_DEBUG_OBJECT (self, "host_ts: %lu -- %" GST_TIME_FORMAT,
|
||||
GST_DEBUG_OBJECT (self,
|
||||
"host_ts: %" G_GUINT64_FORMAT " -- %" GST_TIME_FORMAT,
|
||||
current_sample->host_ts, GST_TIME_ARGS (current_sample->host_ts));
|
||||
GST_DEBUG_OBJECT (self, "host_sof: %u", sample.host_sof);
|
||||
GST_DEBUG_OBJECT (self, "PTS: %u", pts);
|
||||
|
|
Loading…
Reference in a new issue