summaryrefslogtreecommitdiffstats
path: root/ext/shout2
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2005-07-10 12:52:20 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2005-07-10 12:52:20 +0000
commitda8915bfc1f94f18f451b342b856b728894370c6 (patch)
tree4faa2510f8e459ba66d4a7bd2aae4cdd7daac339 /ext/shout2
parent81dae26a233429bf822f8a07b53fe8e238573d29 (diff)
more macro splitting; fix po problem
Original commit message from CVS: more macro splitting; fix po problem
Diffstat (limited to 'ext/shout2')
-rw-r--r--ext/shout2/gstshout2.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/shout2/gstshout2.c b/ext/shout2/gstshout2.c
index 513390ea..fb6f9c11 100644
--- a/ext/shout2/gstshout2.c
+++ b/ext/shout2/gstshout2.c
@@ -136,7 +136,7 @@ gst_shout2send_get_type (void)
};
shout2send_type =
- g_type_register_static (GST_TYPE_BASESINK, "GstShout2send",
+ g_type_register_static (GST_TYPE_BASE_SINK, "GstShout2send",
&shout2send_info, 0);
g_type_add_interface_static (shout2send_type, GST_TYPE_TAG_SETTER,
@@ -166,7 +166,7 @@ gst_shout2send_class_init (GstShout2sendClass * klass)
gobject_class = (GObjectClass *) klass;
gstbasesink_class = (GstBaseSinkClass *) klass;
- parent_class = g_type_class_ref (GST_TYPE_BASESINK);
+ parent_class = g_type_class_ref (GST_TYPE_BASE_SINK);
gobject_class->set_property = gst_shout2send_set_property;
gobject_class->get_property = gst_shout2send_get_property;
@@ -216,7 +216,7 @@ gst_shout2send_init (GstShout2send * shout2send)
{
GstPad *pad;
- pad = GST_BASESINK_PAD (shout2send);
+ pad = GST_BASE_SINK_PAD (shout2send);
gst_pad_set_setcaps_function (pad, gst_shout2send_setcaps);
shout2send->clock = NULL;