summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2002-02-21 13:49:11 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2002-02-21 13:49:11 +0000
commita7f2831dd7066e50878b8dcb5747eff79dd75a27 (patch)
tree1ad74e5973e0343fc72d2835474fcd7f2555fa8f /sys
parent5500d710be7465679c9946c613a19b1d4c65cf19 (diff)
a few fixes
Original commit message from CVS: * a few fixes
Diffstat (limited to 'sys')
-rw-r--r--sys/oss/gstosssink.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/oss/gstosssink.c b/sys/oss/gstosssink.c
index 2083402e..64218d7f 100644
--- a/sys/oss/gstosssink.c
+++ b/sys/oss/gstosssink.c
@@ -380,7 +380,7 @@ gst_osssink_sync_parms (GstOssSink *osssink)
g_object_thaw_notify (object);
osssink->fragment_time = (1000000 * osssink->fragment) / osssink->bps;
- GST_INFO (GST_CAT_PLUGIN_INFO, "fragment time %lu %llu\n", osssink->bps, osssink->fragment_time);
+ GST_INFO (GST_CAT_PLUGIN_INFO, "fragment time %u %llu\n", osssink->bps, osssink->fragment_time);
if (target_format != osssink->format ||
target_channels != osssink->channels ||
@@ -454,7 +454,7 @@ gst_osssink_chain (GstPad *pad, GstBuffer *buf)
queued = (ospace.fragstotal * ospace.fragsize) - ospace.bytes;
time = osssink->offset + (optr.bytes) * 1000000LL / osssink->bps;
- GST_DEBUG (GST_PLUGIN_INFO, "sync %llu %llu %d\n", buftime, time, queued);
+ GST_DEBUG (GST_CAT_PLUGIN_INFO, "sync %llu %llu %d\n", buftime, time, queued);
granularity = ospace.fragsize;
/* granularity = size; */