diff options
author | Edward Hervey <bilboed@bilboed.com> | 2005-07-06 09:23:15 +0000 |
---|---|---|
committer | Edward Hervey <bilboed@bilboed.com> | 2005-07-06 09:23:15 +0000 |
commit | 48508be7ec185b77c062d0a93bb785afa4ff5a24 (patch) | |
tree | ffadab6c22264ea9685a7e6ee086d34b622ae3a6 | |
parent | 4b39e710bea96c3f7c61677fde9e774461d06b5e (diff) |
gst/udp/gstudpsrc.c: GST_BASESRC --> GST_BASE_SRC
Original commit message from CVS:
* gst/udp/gstudpsrc.c: (gst_udpsrc_init):
GST_BASESRC --> GST_BASE_SRC
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | gst/udp/gstudpsrc.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -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); |