summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--gst/udp/gstudpsrc.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index e3605728..67d76bdb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-07-06 Edward Hervey <edward@fluendo.com>
+
+ * gst/udp/gstudpsrc.c: (gst_udpsrc_init):
+ GST_BASESRC --> GST_BASE_SRC
+
2005-07-05 Andy Wingo <wingo@pobox.com>
* gst/oneton: Removed (replaced by deinterleave).
diff --git a/gst/udp/gstudpsrc.c b/gst/udp/gstudpsrc.c
index 7e2e4a21..b6aea689 100644
--- a/gst/udp/gstudpsrc.c
+++ b/gst/udp/gstudpsrc.c
@@ -192,7 +192,7 @@ gst_udpsrc_class_init (GstUDPSrc * klass)
static void
gst_udpsrc_init (GstUDPSrc * udpsrc)
{
- gst_base_src_set_live (GST_BASESRC (udpsrc), TRUE);
+ gst_base_src_set_live (GST_BASE_SRC (udpsrc), TRUE);
udpsrc->port = UDP_DEFAULT_PORT;
udpsrc->sock = -1;
udpsrc->multi_group = g_strdup (UDP_DEFAULT_MULTICAST_GROUP);