diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2006-04-01 10:15:33 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2006-04-01 10:15:33 +0000 |
commit | e30b8b1c496c09efbc4bd9e38a4f9308343f4bf0 (patch) | |
tree | 408ab139c47f2d955a51b37b682abb74489a215c | |
parent | bc54b555592693d22e152b279d1effebf498993f (diff) | |
download | gst-plugins-bad-e30b8b1c496c09efbc4bd9e38a4f9308343f4bf0.tar.gz gst-plugins-bad-e30b8b1c496c09efbc4bd9e38a4f9308343f4bf0.tar.bz2 gst-plugins-bad-e30b8b1c496c09efbc4bd9e38a4f9308343f4bf0.zip |
5 second timeout
Original commit message from CVS:
5 second timeout
-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); |