diff options
Diffstat (limited to 'gst/udp/gstudpsrc.h')
-rw-r--r-- | gst/udp/gstudpsrc.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/gst/udp/gstudpsrc.h b/gst/udp/gstudpsrc.h index c672d2a2..e736a592 100644 --- a/gst/udp/gstudpsrc.h +++ b/gst/udp/gstudpsrc.h @@ -52,21 +52,21 @@ struct _GstUDPSrc { GstPushSrc parent; /* properties */ - gchar *uri; - int port; - gchar *multi_group; - gint ttl; - GstCaps *caps; - gint buffer_size; - guint64 timeout; - gint skip_first_bytes; - int sockfd; - gboolean closefd; + gchar *uri; + int port; + gchar *multi_group; + gint ttl; + GstCaps *caps; + gint buffer_size; + guint64 timeout; + gint skip_first_bytes; + int sockfd; + gboolean closefd; /* our sockets */ - int sock; - int control_sock[2]; - gboolean externalfd; + GstPollFD sock; + GstPoll *fdset; + gboolean externalfd; struct sockaddr_in myaddr; struct ip_mreq multi_addr; |