summaryrefslogtreecommitdiffstats
path: root/gst/udp/gstudpsrc.h
diff options
context:
space:
mode:
authorThijs Vermeir <thijs.vermeir@barco.com>2006-07-27 09:04:51 +0000
committerWim Taymans <wim.taymans@gmail.com>2006-07-27 09:04:51 +0000
commit5eebca0ee36a808db05759ba6e788c2930395180 (patch)
tree6fce498f97a58e6a9f9b1c3ec5b9b8e43aaa4cb7 /gst/udp/gstudpsrc.h
parentca00f98eb521503e9e7094cdd37a553c493913ff (diff)
gst/udp/gstudpsrc.*: Added "buffer" property to control the kernel receive buffer size.
Original commit message from CVS: Patch by: Thijs Vermeir <thijs dot vermeir at barco dot com> * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init), (gst_udpsrc_create), (gst_udpsrc_set_property), (gst_udpsrc_get_property), (gst_udpsrc_start): * gst/udp/gstudpsrc.h: Added "buffer" property to control the kernel receive buffer size. Update documentation. Small cleanups. Fixes #348752. API: buffer property
Diffstat (limited to 'gst/udp/gstudpsrc.h')
-rw-r--r--gst/udp/gstudpsrc.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/gst/udp/gstudpsrc.h b/gst/udp/gstudpsrc.h
index 97ef7a2e..17c4421e 100644
--- a/gst/udp/gstudpsrc.h
+++ b/gst/udp/gstudpsrc.h
@@ -51,11 +51,12 @@ typedef struct _GstUDPSrcClass GstUDPSrcClass;
struct _GstUDPSrc {
GstPushSrc parent;
+ /* properties */
gchar *uri;
int port;
-
gchar *multi_group;
gint ttl;
+ gint buffer;
int sock;
int control_sock[2];