diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | gst/udp/gstudpsrc.c | 5 |
2 files changed, 10 insertions, 2 deletions
@@ -1,3 +1,10 @@ +2005-07-14 Thomas Vander Stichele <thomas at apestaart dot org> + + * gst/udp/gstudpsrc.c: (gst_udpsrc_get_type), + (gst_udpsrc_class_init): + more autistic cleanliness in functions/names/defines + + 2005-07-10 Thomas Vander Stichele <thomas at apestaart dot org> * ext/aalib/gstaasink.c: (gst_aasink_get_type), diff --git a/gst/udp/gstudpsrc.c b/gst/udp/gstudpsrc.c index b6aea689..445c1444 100644 --- a/gst/udp/gstudpsrc.c +++ b/gst/udp/gstudpsrc.c @@ -130,7 +130,8 @@ gst_udpsrc_get_type (void) }; udpsrc_type = - g_type_register_static (GST_TYPE_PUSHSRC, "GstUDPSrc", &udpsrc_info, 0); + g_type_register_static (GST_TYPE_PUSH_SRC, "GstUDPSrc", &udpsrc_info, + 0); g_type_add_interface_static (udpsrc_type, GST_TYPE_URI_HANDLER, &urihandler_info); @@ -162,7 +163,7 @@ gst_udpsrc_class_init (GstUDPSrc * klass) gstbasesrc_class = (GstBaseSrcClass *) klass; gstpushsrc_class = (GstPushSrcClass *) klass; - parent_class = g_type_class_ref (GST_TYPE_PUSHSRC); + parent_class = g_type_class_ref (GST_TYPE_PUSH_SRC); gobject_class->set_property = gst_udpsrc_set_property; gobject_class->get_property = gst_udpsrc_get_property; |