tests/icles/: Does what it says on the tin.
Original commit message from CVS: * tests/icles/.cvsignore: * tests/icles/Makefile.am: * tests/icles/stress-playbin.c: Does what it says on the tin.
This commit is contained in:
parent
b6a80a4e42
commit
b7d729d39a
@ -1,3 +1,10 @@
|
|||||||
|
2007-10-16 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
|
* tests/icles/.cvsignore:
|
||||||
|
* tests/icles/Makefile.am:
|
||||||
|
* tests/icles/stress-playbin.c:
|
||||||
|
Does what it says on the tin.
|
||||||
|
|
||||||
2007-10-15 Wim Taymans <wim.taymans@gmail.com>
|
2007-10-15 Wim Taymans <wim.taymans@gmail.com>
|
||||||
|
|
||||||
* gst/playback/gstqueue2.c: (gst_queue_init), (gst_queue_push_one):
|
* gst/playback/gstqueue2.c: (gst_queue_init), (gst_queue_push_one):
|
||||||
|
1
tests/icles/.gitignore
vendored
1
tests/icles/.gitignore
vendored
@ -1,2 +1,3 @@
|
|||||||
|
stress-playbin
|
||||||
stress-xoverlay
|
stress-xoverlay
|
||||||
test-textoverlay
|
test-textoverlay
|
||||||
|
@ -21,4 +21,8 @@ else
|
|||||||
PANGO_TESTS =
|
PANGO_TESTS =
|
||||||
endif
|
endif
|
||||||
|
|
||||||
noinst_PROGRAMS = $(X_TESTS) $(PANGO_TESTS)
|
stress_playbin_SOURCES = stress-playbin.c
|
||||||
|
stress_playbin_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
||||||
|
stress_playbin_LDFLAGS = $(GST_LIBS) $(LIBM)
|
||||||
|
|
||||||
|
noinst_PROGRAMS = $(X_TESTS) $(PANGO_TESTS) stress-playbin
|
||||||
|
122
tests/icles/stress-playbin.c
Normal file
122
tests/icles/stress-playbin.c
Normal file
@ -0,0 +1,122 @@
|
|||||||
|
#include <gst/gst.h>
|
||||||
|
|
||||||
|
#define TEST_RUNTIME 120.0 /* how long to run the test, in seconds */
|
||||||
|
|
||||||
|
static void
|
||||||
|
play_file (const gchar * uri)
|
||||||
|
{
|
||||||
|
GstStateChangeReturn sret;
|
||||||
|
GstMessage *msg;
|
||||||
|
GstElement *play;
|
||||||
|
guint wait_nanosecs;
|
||||||
|
|
||||||
|
play = gst_element_factory_make ("playbin", "playbin");
|
||||||
|
|
||||||
|
g_object_set (play, "uri", uri, NULL);
|
||||||
|
sret = gst_element_set_state (play, GST_STATE_PLAYING);
|
||||||
|
if (sret != GST_STATE_CHANGE_ASYNC) {
|
||||||
|
g_printerr ("ERROR: state change failed, sret=%d\n", sret);
|
||||||
|
goto next;
|
||||||
|
}
|
||||||
|
|
||||||
|
wait_nanosecs = g_random_int_range (0, GST_SECOND / 10);
|
||||||
|
msg = gst_bus_poll (GST_ELEMENT_BUS (play),
|
||||||
|
GST_MESSAGE_ERROR | GST_MESSAGE_EOS, wait_nanosecs);
|
||||||
|
if (msg) {
|
||||||
|
g_printerr ("Got %s messge\n", GST_MESSAGE_TYPE_NAME (msg));
|
||||||
|
gst_message_unref (msg);
|
||||||
|
goto next;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* on to the next one */
|
||||||
|
g_print (".");
|
||||||
|
|
||||||
|
next:
|
||||||
|
gst_element_set_state (play, GST_STATE_NULL);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
check_arg (GPtrArray * files, const gchar * arg)
|
||||||
|
{
|
||||||
|
GDir *dir;
|
||||||
|
|
||||||
|
if ((dir = g_dir_open (arg, 0, NULL))) {
|
||||||
|
const gchar *entry;
|
||||||
|
|
||||||
|
while ((entry = g_dir_read_name (dir))) {
|
||||||
|
gchar *path;
|
||||||
|
|
||||||
|
path = g_strconcat (arg, G_DIR_SEPARATOR_S, entry, NULL);
|
||||||
|
check_arg (files, path);
|
||||||
|
g_free (path);
|
||||||
|
}
|
||||||
|
|
||||||
|
g_dir_close (dir);
|
||||||
|
return;
|
||||||
|
} else if (g_file_test (arg, G_FILE_TEST_EXISTS)) {
|
||||||
|
/* hack: technically an URI is not just file:// + path, but it'll do here */
|
||||||
|
g_ptr_array_add (files, g_strdup_printf ("file://%s", arg));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
main (int argc, char **argv)
|
||||||
|
{
|
||||||
|
GPtrArray *files;
|
||||||
|
gchar **args = NULL;
|
||||||
|
guint num, i;
|
||||||
|
GError *err = NULL;
|
||||||
|
GOptionContext *ctx;
|
||||||
|
GOptionEntry options[] = {
|
||||||
|
{G_OPTION_REMAINING, 0, 0, G_OPTION_ARG_FILENAME_ARRAY, &args, NULL},
|
||||||
|
{NULL}
|
||||||
|
};
|
||||||
|
GTimer *timer;
|
||||||
|
|
||||||
|
if (!g_thread_supported ())
|
||||||
|
g_thread_init (NULL);
|
||||||
|
|
||||||
|
ctx = g_option_context_new ("FILES OR DIRECTORIES WITH AUDIO FILES");
|
||||||
|
g_option_context_add_main_entries (ctx, options, NULL);
|
||||||
|
g_option_context_add_group (ctx, gst_init_get_option_group ());
|
||||||
|
if (!g_option_context_parse (ctx, &argc, &argv, &err)) {
|
||||||
|
g_print ("Error initializing: %s\n", GST_STR_NULL (err->message));
|
||||||
|
exit (1);
|
||||||
|
}
|
||||||
|
g_option_context_free (ctx);
|
||||||
|
|
||||||
|
if (args == NULL || *args == NULL) {
|
||||||
|
g_print ("Please provide one or more directories with audio files\n\n");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
files = g_ptr_array_new ();
|
||||||
|
|
||||||
|
num = g_strv_length (args);
|
||||||
|
for (i = 0; i < num; ++i) {
|
||||||
|
if (g_path_is_absolute (args[i])) {
|
||||||
|
check_arg (files, args[i]);
|
||||||
|
} else {
|
||||||
|
g_warning ("Argument '%s' is not an absolute file path", args[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (files->len == 0) {
|
||||||
|
g_print ("Did not find any files\n\n");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
timer = g_timer_new ();
|
||||||
|
|
||||||
|
while (g_timer_elapsed (timer, NULL) < TEST_RUNTIME) {
|
||||||
|
gint32 idx;
|
||||||
|
|
||||||
|
idx = g_random_int_range (0, files->len);
|
||||||
|
play_file ((const gchar *) g_ptr_array_index (files, idx));
|
||||||
|
}
|
||||||
|
|
||||||
|
g_strfreev (args);
|
||||||
|
g_timer_destroy (timer);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user