summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBenjamin Otte <otte@gnome.org>2004-05-08 17:38:24 +0000
committerBenjamin Otte <otte@gnome.org>2004-05-08 17:38:24 +0000
commitd0459102c05366293dea54e9789b3b2058dc9598 (patch)
treeb2039c5f46a7715fa593544d2b09cfc1f4470f84 /tests
parentd83895c446d8e3ddab614b8ca98aba1d69ae5975 (diff)
tests/: add benchmark to test how long spider needs to create a pipeline
Original commit message from CVS: * tests/Makefile.am: * tests/spidey_bench.c: (handoff), (main): add benchmark to test how long spider needs to create a pipeline
Diffstat (limited to 'tests')
-rw-r--r--tests/Makefile.am11
-rw-r--r--tests/spidey_bench.c83
2 files changed, 91 insertions, 3 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am
index b9ee78f4a..1f46b2bff 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -1,12 +1,17 @@
SUBDIRS = instantiate memchunk muxing sched threadstate seeking # bufspeed
-if !GST_DISABLE_TRACE
+if GST_DISABLE_TRACE
+noinst_PROGRAMS =
+else
noinst_PROGRAMS = lat
-lat_CFLAGS = $(GST_OBJ_CFLAGS)
-lat_LDFLAGS = $(GST_OBJ_LIBS)
endif
+noinst_PROGRAMS += spidey_bench
+
+AM_CFLAGS = $(GST_OBJ_CFLAGS)
+LIBS = $(GST_OBJ_LIBS)
+
EXTRA_DIST = README
DIST_SUBDIRS= bufspeed instantiate memchunk muxing sched threadstate seeking
diff --git a/tests/spidey_bench.c b/tests/spidey_bench.c
new file mode 100644
index 000000000..79cdc51cc
--- /dev/null
+++ b/tests/spidey_bench.c
@@ -0,0 +1,83 @@
+/*
+ * Copyright (C) 2004 Benjamin Otte <otte@gnome.org>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public
+ * License along with this library; if not, write to the Free
+ * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+
+#include <gst/gst.h>
+
+static GTimeVal start_time;
+gboolean done = FALSE;
+GstClockTime total = 0;
+
+static void
+handoff (GstElement * fakesink, GstBuffer * data)
+{
+ GTimeVal end_time;
+ GstClockTime diff;
+
+ if (!GST_IS_BUFFER (data))
+ return;
+ g_get_current_time (&end_time);
+ diff = ((GstClockTime) end_time.tv_sec - start_time.tv_sec) * GST_SECOND +
+ ((GstClockTime) end_time.tv_usec -
+ start_time.tv_usec) * (GST_SECOND / G_USEC_PER_SEC);
+ g_print ("time to launch spider pipeline: %" GST_TIME_FORMAT "\n",
+ GST_TIME_ARGS (diff));
+ done = TRUE;
+ total += diff;
+}
+
+gint
+main (gint argc, gchar * argv[])
+{
+ GstElement *pipeline;
+ guint i, count = 20;
+ gchar *file, *pipeline_str;
+ gchar **bla;
+
+ gst_init (&argc, &argv);
+
+ if (argc < 2) {
+ g_print ("usage : %s <file>\n", argv[0]);
+ return -1;
+ }
+ bla = g_strsplit (argv[1], " ", -1);
+ file = g_strjoinv ("\\ ", bla);
+ pipeline_str =
+ g_strdup_printf
+ ("filesrc location=\"%s\" ! spider ! audio/x-raw-int ! fakesink name = sink",
+ file);
+
+ for (i = 0; i < count; i++) {
+ GstElement *sink;
+
+ g_get_current_time (&start_time);
+ pipeline = gst_parse_launch (pipeline_str, NULL);
+ sink = gst_bin_get_by_name (GST_BIN (pipeline), "sink");
+ g_object_set (sink, "signal-handoffs", TRUE, NULL);
+ g_signal_connect (sink, "handoff", (GCallback) handoff, NULL);
+ gst_element_set_state (pipeline, GST_STATE_PLAYING);
+ done = FALSE;
+ while (!done && gst_bin_iterate (GST_BIN (pipeline)));
+ g_object_unref (pipeline);
+ }
+
+ g_print ("\ntime to launch spider pipeline (average): %" GST_TIME_FORMAT "\n",
+ GST_TIME_ARGS (total / count));
+
+ pipeline = NULL;
+ return 0;
+}