summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2003-01-22 11:44:44 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2003-01-22 11:44:44 +0000
commited27d67266685e18bff38cafb44e65a4ca339128 (patch)
tree88db19305d285a7562f5aa8135b6bee59e1880ca
parent5ab15e39e28030b67717b9f3345364ca92b8f774 (diff)
scramble fixes
Original commit message from CVS: scramble fixes
-rw-r--r--tools/gst-launch.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/tools/gst-launch.c b/tools/gst-launch.c
index 035d490008..d73338e4f9 100644
--- a/tools/gst-launch.c
+++ b/tools/gst-launch.c
@@ -17,9 +17,11 @@ idle_func (gpointer data)
GTimeVal tfthen, tfnow;
GstClockTimeDiff diff;
+ /*
if (s_clock) {
- //g_print ("%lld\n", gst_clock_get_time (s_clock));
+ g_print ("%lld\n", gst_clock_get_time (s_clock));
}
+ */
g_get_current_time (&tfthen);
busy = gst_bin_iterate (GST_BIN (data));
@@ -114,6 +116,10 @@ fault_handler (int signum, siginfo_t *si, void *misc)
{
int spinning = TRUE;
+ /* dolphy has seen si == NULL;
+ * that doesn't seem like a good idea, does it ? */
+ g_assert (si);
+
fault_restore ();
if (si->si_signo == SIGSEGV) {