diff options
-rw-r--r-- | tests/icles/ximagesrc-test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/icles/ximagesrc-test.c b/tests/icles/ximagesrc-test.c index 34c7948f..471c36a3 100644 --- a/tests/icles/ximagesrc-test.c +++ b/tests/icles/ximagesrc-test.c @@ -54,8 +54,8 @@ main (int argc, char **argv) gst_element_set_state (pipeline, GST_STATE_PLAYING); - /* We want to get out after */ - g_timeout_add (500, (GSourceFunc) terminate_playback, pipeline); + /* We want to get out after 5 seconds */ + g_timeout_add (5000, (GSourceFunc) terminate_playback, pipeline); g_main_loop_run (loop); |