mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
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:
parent
c90f75526a
commit
4a67753ccc
3 changed files with 8 additions and 2 deletions
|
@ -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>
|
2005-11-22 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
* ext/theora/Makefile.am:
|
* ext/theora/Makefile.am:
|
||||||
|
|
|
@ -1430,7 +1430,7 @@ main (int argc, char **argv)
|
||||||
GstBus *bus;
|
GstBus *bus;
|
||||||
|
|
||||||
bus = gst_pipeline_get_bus (GST_PIPELINE (pipeline));
|
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::state-changed", (GCallback) message_received, pipeline);
|
||||||
g_signal_connect (bus, "message::new-clock", (GCallback) message_received,
|
g_signal_connect (bus, "message::new-clock", (GCallback) message_received,
|
||||||
|
|
|
@ -1430,7 +1430,7 @@ main (int argc, char **argv)
|
||||||
GstBus *bus;
|
GstBus *bus;
|
||||||
|
|
||||||
bus = gst_pipeline_get_bus (GST_PIPELINE (pipeline));
|
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::state-changed", (GCallback) message_received, pipeline);
|
||||||
g_signal_connect (bus, "message::new-clock", (GCallback) message_received,
|
g_signal_connect (bus, "message::new-clock", (GCallback) message_received,
|
||||||
|
|
Loading…
Reference in a new issue