summaryrefslogtreecommitdiffstats
path: root/gst/udp/gstudpsrc.h
diff options
context:
space:
mode:
Diffstat (limited to 'gst/udp/gstudpsrc.h')
-rw-r--r--gst/udp/gstudpsrc.h23
1 files changed, 12 insertions, 11 deletions
diff --git a/gst/udp/gstudpsrc.h b/gst/udp/gstudpsrc.h
index 4b0b152b..0730cadf 100644
--- a/gst/udp/gstudpsrc.h
+++ b/gst/udp/gstudpsrc.h
@@ -52,19 +52,20 @@ struct _GstUDPSrc {
GstPushSrc parent;
/* properties */
- gchar *uri;
- int port;
- gchar *multi_group;
- gint ttl;
- gint buffer_size;
-
- int sock;
- int control_sock[2];
+ gchar *uri;
+ int port;
+ gchar *multi_group;
+ gint ttl;
+ GstCaps *caps;
+ gint buffer_size;
+ guint64 timeout;
- struct sockaddr_in myaddr;
- struct ip_mreq multi_addr;
+ /* our sockets */
+ int sock;
+ int control_sock[2];
- GstCaps *caps;
+ struct sockaddr_in myaddr;
+ struct ip_mreq multi_addr;
};
struct _GstUDPSrcClass {