mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 16:21:17 +00:00
gst/udp/gstudpsrc.c: Make udpsrc a live source.
Original commit message from CVS: * gst/udp/gstudpsrc.c: (gst_udpsrc_init): Make udpsrc a live source.
This commit is contained in:
parent
278a3df148
commit
5f70cb8298
3 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2005-06-23 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* gst/udp/gstudpsrc.c: (gst_udpsrc_init):
|
||||
Make udpsrc a live source.
|
||||
|
||||
2005-06-02 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* gst/udp/Makefile.am:
|
||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit 67b7e6c0db99415e0440d0c576495641b53e976a
|
||||
Subproject commit d6e46b214fac0ecb46010ff522af2f7653e1c18e
|
|
@ -192,6 +192,7 @@ gst_udpsrc_class_init (GstUDPSrc * klass)
|
|||
static void
|
||||
gst_udpsrc_init (GstUDPSrc * udpsrc)
|
||||
{
|
||||
gst_basesrc_set_live (GST_BASESRC (udpsrc), TRUE);
|
||||
udpsrc->port = UDP_DEFAULT_PORT;
|
||||
udpsrc->sock = -1;
|
||||
udpsrc->multi_group = g_strdup (UDP_DEFAULT_MULTICAST_GROUP);
|
||||
|
|
Loading…
Reference in a new issue