examples/seeking/seek.c: Don't consume all CPU in the idle loop.

Original commit message from CVS:
* examples/seeking/seek.c: (iterate):
Don't consume all CPU in the idle loop.
This commit is contained in:
Wim Taymans 2004-07-09 14:33:15 +00:00
parent fd996ff883
commit 287d4d30a0
2 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2004-07-09 Wim Taymans <wim@fluendo.com>
* examples/seeking/seek.c: (iterate):
Don't consume all CPU in the idle loop.
2004-07-09 Wim Taymans <wim@fluendo.com>
* gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_new_output_pad),

View file

@ -805,6 +805,7 @@ iterate (gpointer data)
if (!GST_FLAG_IS_SET (GST_OBJECT (data), GST_BIN_SELF_SCHEDULABLE)) {
res = gst_bin_iterate (GST_BIN (data));
} else {
g_usleep (500);
res = gst_element_get_state (GST_ELEMENT (data)) == GST_STATE_PLAYING;
}