mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-02 21:48:55 +00:00
gst/udp/gstudpsrc.c: Fix compilation after removing the GstPollMode from the constructor.
Original commit message from CVS: * gst/udp/gstudpsrc.c: (gst_udpsrc_start): Fix compilation after removing the GstPollMode from the constructor.
This commit is contained in:
parent
c299138aaf
commit
41e9c150f6
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2008-03-07 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||
|
||||
* gst/udp/gstudpsrc.c: (gst_udpsrc_start):
|
||||
Fix compilation after removing the GstPollMode from the
|
||||
constructor.
|
||||
|
||||
2008-03-07 Sebastian Dröge <slomo@circular-chaos.org>
|
||||
|
||||
* configure.ac:
|
||||
|
|
|
@ -761,7 +761,7 @@ gst_udpsrc_start (GstBaseSrc * bsrc)
|
|||
|
||||
src->myaddr.sin_port = htons (src->port + 1);
|
||||
|
||||
if ((src->fdset = gst_poll_new (GST_POLL_MODE_AUTO, TRUE)) == NULL)
|
||||
if ((src->fdset = gst_poll_new (TRUE)) == NULL)
|
||||
goto no_fdset;
|
||||
|
||||
gst_poll_add_fd (src->fdset, &src->sock);
|
||||
|
|
Loading…
Reference in a new issue