summaryrefslogtreecommitdiffstats
path: root/gst
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2005-07-14 09:35:10 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2005-07-14 09:35:10 +0000
commit050df450ef7f100530e733b10c0c98f15d527082 (patch)
tree2080d24fab982938be8a41218c620c1bab373883 /gst
parent021769bc288f753102b04df305a5766e9e4a75ba (diff)
more autistic cleanliness in functions/names/defines
Original commit message from CVS: more autistic cleanliness in functions/names/defines
Diffstat (limited to 'gst')
-rw-r--r--gst/udp/gstudpsrc.c5
1 files changed, 3 insertions, 2 deletions
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;