From 6cc1c73d2baa95c46edc04f57cbe9ed690dc2f21 Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Mon, 15 Mar 2004 19:32:27 +0000 Subject: don't mix tabs and spaces Original commit message from CVS: don't mix tabs and spaces --- gst/level/plot.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'gst/level/plot.c') diff --git a/gst/level/plot.c b/gst/level/plot.c index ad6d70d7..187be8b1 100644 --- a/gst/level/plot.c +++ b/gst/level/plot.c @@ -28,10 +28,10 @@ #include #include -gboolean got_channel[2] = { FALSE, FALSE }; /* to see if we got the signal for this one yet */ -gint channels = 0; /* guess at how many channels there are */ -gdouble last_time = 0.0; /* time of last signal */ -gdouble values[2][3]; /* array of levels from which to print */ +gboolean got_channel[2] = { FALSE, FALSE }; /* to see if we got the signal for this one yet */ +gint channels = 0; /* guess at how many channels there are */ +gdouble last_time = 0.0; /* time of last signal */ +gdouble values[2][3]; /* array of levels from which to print */ static void level_callback (GstElement * element, gdouble time, gint channel, @@ -66,7 +66,7 @@ level_callback (GstElement * element, gdouble time, gint channel, g_print ("%f ", time); for (i = 0; i < channels; ++i) for (j = 0; j < 3; ++j) - g_print ("%f ", values[i][j]); + g_print ("%f ", values[i][j]); g_print ("\n"); } } -- cgit