mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-22 15:18:21 +00:00
don't use if not declared
Original commit message from CVS: don't use if not declared
This commit is contained in:
parent
45867cc853
commit
46b1a61af4
1 changed files with 2 additions and 0 deletions
|
@ -360,7 +360,9 @@ event_loop (GstElement * pipeline, gboolean blocking)
|
||||||
|
|
||||||
bus = gst_element_get_bus (GST_ELEMENT (pipeline));
|
bus = gst_element_get_bus (GST_ELEMENT (pipeline));
|
||||||
|
|
||||||
|
#ifndef DISABLE_FAULT_HANDLER
|
||||||
g_timeout_add (50, (GSourceFunc) check_intr, pipeline);
|
g_timeout_add (50, (GSourceFunc) check_intr, pipeline);
|
||||||
|
#endif
|
||||||
|
|
||||||
while (TRUE) {
|
while (TRUE) {
|
||||||
message = gst_bus_poll (bus, GST_MESSAGE_ANY, blocking ? -1 : 0);
|
message = gst_bus_poll (bus, GST_MESSAGE_ANY, blocking ? -1 : 0);
|
||||||
|
|
Loading…
Reference in a new issue