From 7cdf04fe21c1cebbf12f737b2742bf9cc8815894 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Wed, 25 Feb 2009 12:07:43 +0100 Subject: [PATCH] stress-playbin: print the current uri Print the current uri so that we can more easily see what uri caused a crash or error. --- tests/icles/stress-playbin.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/icles/stress-playbin.c b/tests/icles/stress-playbin.c index 16c628b64e..2f90d35e28 100644 --- a/tests/icles/stress-playbin.c +++ b/tests/icles/stress-playbin.c @@ -15,6 +15,7 @@ play_file (const gchar * bin, const gint delay, const gchar * uri) play = gst_element_factory_make (bin, "playbin"); g_object_set (play, "uri", uri, NULL); + g_printerr ("Playing %s\n", uri); 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);