[gstreamer-bugs] [Bug 637057] [plugin-scanner] gst-inspect hangs on osx
GStreamer (bugzilla.gnome.org)
bugzilla at gnome.org
Mon Dec 13 01:51:54 PST 2010
https://bugzilla.gnome.org/show_bug.cgi?id=637057
GStreamer | gstreamer (core) | git
Wim Taymans <wim.taymans> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |wim.taymans at gmail.com
--- Comment #4 from Wim Taymans <wim.taymans at gmail.com> 2010-12-13 09:51:51 UTC ---
You could try to disable always creating the control socket, that was the
biggest change. Like this:
diff --git a/gst/gstpoll.c b/gst/gstpoll.c
index af34f66..8dd3286 100644
--- a/gst/gstpoll.c
+++ b/gst/gstpoll.c
@@ -555,6 +555,7 @@ gst_poll_new (gboolean controllable)
nset->active_fds = g_array_new (FALSE, FALSE, sizeof (struct pollfd));
nset->control_read_fd.fd = -1;
nset->control_write_fd.fd = -1;
+#if 0
{
gint control_sock[2];
@@ -570,6 +571,7 @@ gst_poll_new (gboolean controllable)
gst_poll_add_fd_unlocked (nset, &nset->control_read_fd);
gst_poll_fd_ctl_read_unlocked (nset, &nset->control_read_fd, TRUE);
}
+#endif
#else
nset->mode = GST_POLL_MODE_WINDOWS;
nset->fds = g_array_new (FALSE, FALSE, sizeof (WinsockFd));
--
Configure bugmail: https://bugzilla.gnome.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
More information about the Gstreamer-bugs
mailing list