examples/seeking/seek.c: Give higher priority to bus signals than the gtk events to fix a race condition in the segme...

Original commit message from CVS:
* examples/seeking/seek.c: (main):
Give higher priority to bus signals than the gtk events
to fix a race condition in the segment looping.
This commit is contained in:
Wim Taymans 2005-11-22 11:35:09 +00:00
parent c90f75526a
commit 4a67753ccc
3 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2005-11-22 Wim Taymans <wim@fluendo.com>
* examples/seeking/seek.c: (main):
Give higher priority to bus signals than the gtk events
to fix a race condition in the segment looping.
2005-11-22 Tim-Philipp Müller <tim at centricular dot net>
* ext/theora/Makefile.am:

View file

@ -1430,7 +1430,7 @@ main (int argc, char **argv)
GstBus *bus;
bus = gst_pipeline_get_bus (GST_PIPELINE (pipeline));
gst_bus_add_signal_watch (bus);
gst_bus_add_signal_watch_full (bus, G_PRIORITY_HIGH);
// g_signal_connect (bus, "message::state-changed", (GCallback) message_received, pipeline);
g_signal_connect (bus, "message::new-clock", (GCallback) message_received,

View file

@ -1430,7 +1430,7 @@ main (int argc, char **argv)
GstBus *bus;
bus = gst_pipeline_get_bus (GST_PIPELINE (pipeline));
gst_bus_add_signal_watch (bus);
gst_bus_add_signal_watch_full (bus, G_PRIORITY_HIGH);
// g_signal_connect (bus, "message::state-changed", (GCallback) message_received, pipeline);
g_signal_connect (bus, "message::new-clock", (GCallback) message_received,