raw1394: printf format fixes
This commit is contained in:
parent
4b1566d7f3
commit
f50f516eca
@ -127,7 +127,7 @@ gst_1394_clock_get_internal_time (GstClock * clock)
|
||||
result = (((guint64) _1394clock->cycle_timer_hi) << 32) | cycle_timer;
|
||||
result *= 40;
|
||||
|
||||
GST_LOG_OBJECT (clock, "result %lld", result);
|
||||
GST_LOG_OBJECT (clock, "result %" G_GINT64_FORMAT, result);
|
||||
} else {
|
||||
result = GST_CLOCK_TIME_NONE;
|
||||
}
|
||||
|
@ -438,7 +438,7 @@ gst_hdv1394src_create (GstPushSrc * psrc, GstBuffer ** buf)
|
||||
|
||||
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 */
|
||||
*buf = gst_buffer_new ();
|
||||
|
Loading…
x
Reference in New Issue
Block a user