mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-02 20:42:30 +00:00
raw1394: printf format fixes
This commit is contained in:
parent
4b1566d7f3
commit
f50f516eca
2 changed files with 2 additions and 2 deletions
|
@ -127,7 +127,7 @@ gst_1394_clock_get_internal_time (GstClock * clock)
|
||||||
result = (((guint64) _1394clock->cycle_timer_hi) << 32) | cycle_timer;
|
result = (((guint64) _1394clock->cycle_timer_hi) << 32) | cycle_timer;
|
||||||
result *= 40;
|
result *= 40;
|
||||||
|
|
||||||
GST_LOG_OBJECT (clock, "result %lld", result);
|
GST_LOG_OBJECT (clock, "result %" G_GINT64_FORMAT, result);
|
||||||
} else {
|
} else {
|
||||||
result = GST_CLOCK_TIME_NONE;
|
result = GST_CLOCK_TIME_NONE;
|
||||||
}
|
}
|
||||||
|
|
|
@ -438,7 +438,7 @@ gst_hdv1394src_create (GstPushSrc * psrc, GstBuffer ** buf)
|
||||||
|
|
||||||
g_assert (dv1394src->outoffset);
|
g_assert (dv1394src->outoffset);
|
||||||
|
|
||||||
GST_LOG ("We have some frames (%d bytes)", dv1394src->outoffset);
|
GST_LOG ("We have some frames (%u bytes)", (guint) dv1394src->outoffset);
|
||||||
|
|
||||||
/* Create the buffer */
|
/* Create the buffer */
|
||||||
*buf = gst_buffer_new ();
|
*buf = gst_buffer_new ();
|
||||||
|
|
Loading…
Reference in a new issue