diff options
author | Wim Taymans <wim.taymans@collabora.co.uk> | 2009-02-25 12:07:43 +0100 |
---|---|---|
committer | Wim Taymans <wim.taymans@collabora.co.uk> | 2009-02-25 12:07:43 +0100 |
commit | 7cdf04fe21c1cebbf12f737b2742bf9cc8815894 (patch) | |
tree | e9cce5b963d26312ac436b56d7834755b51fbbcd /tests/icles | |
parent | 4d30e3ff2c8872cc80f8dd77e26edb8ac4c979a0 (diff) |
stress-playbin: print the current uri
Print the current uri so that we can more easily see what uri caused a crash or
error.
Diffstat (limited to 'tests/icles')
-rw-r--r-- | tests/icles/stress-playbin.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/icles/stress-playbin.c b/tests/icles/stress-playbin.c index 16c628b64..2f90d35e2 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); |