diff options
Diffstat (limited to 'sys')
-rw-r--r-- | sys/oss/gstosscommon.c | 2 | ||||
-rw-r--r-- | sys/oss/gstosssrc.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/oss/gstosscommon.c b/sys/oss/gstosscommon.c index fe556564..16539247 100644 --- a/sys/oss/gstosscommon.c +++ b/sys/oss/gstosscommon.c @@ -258,7 +258,7 @@ gst_osscommon_sync_parms (GstOssCommon *common) space.bytes, common->fragment); common->fragment_time = (GST_SECOND * common->fragment_size) / common->bps; - GST_INFO (GST_CAT_PLUGIN_INFO, "fragment time %u %llu\n", + GST_INFO (GST_CAT_PLUGIN_INFO, "fragment time %u %" G_GUINT64_FORMAT "\n", common->bps, common->fragment_time); if (target_format != common->format || diff --git a/sys/oss/gstosssrc.c b/sys/oss/gstosssrc.c index bf93e62f..c7079816 100644 --- a/sys/oss/gstosssrc.c +++ b/sys/oss/gstosssrc.c @@ -293,7 +293,7 @@ gst_osssrc_get (GstPad *pad) src->curoffset += readbytes; - GST_DEBUG (GST_CAT_PLUGIN_INFO, "pushed buffer from soundcard of %ld bytes, timestamp %lld", + GST_DEBUG (GST_CAT_PLUGIN_INFO, "pushed buffer from soundcard of %ld bytes, timestamp %" G_GINT64_FORMAT, readbytes, GST_BUFFER_TIMESTAMP (buf)); return buf; |