summaryrefslogtreecommitdiffstats
path: root/ext/libcaca
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/libcaca
parent81dae26a233429bf822f8a07b53fe8e238573d29 (diff)
more macro splitting; fix po problem
Original commit message from CVS: more macro splitting; fix po problem
Diffstat (limited to 'ext/libcaca')
-rw-r--r--ext/libcaca/gstcacasink.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/libcaca/gstcacasink.c b/ext/libcaca/gstcacasink.c
index 1ccd728f..40fd6c74 100644
--- a/ext/libcaca/gstcacasink.c
+++ b/ext/libcaca/gstcacasink.c
@@ -95,7 +95,7 @@ gst_cacasink_get_type (void)
};
cacasink_type =
- g_type_register_static (GST_TYPE_BASESINK, "GstCACASink",
+ g_type_register_static (GST_TYPE_BASE_SINK, "GstCACASink",
&cacasink_info, 0);
}
return cacasink_type;
@@ -154,7 +154,7 @@ gst_cacasink_class_init (GstCACASinkClass * klass)
gstelement_class = (GstElementClass *) 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_cacasink_set_property;
gobject_class->get_property = gst_cacasink_get_property;
@@ -240,7 +240,7 @@ gst_cacasink_init (GstCACASink * cacasink)
{
GstPad *pad;
- pad = GST_BASESINK_PAD (cacasink);
+ pad = GST_BASE_SINK_PAD (cacasink);
/* gst_pad_set_fixatecaps_function (pad, gst_cacasink_fixate); */
cacasink->screen_width = GST_CACA_DEFAULT_SCREEN_WIDTH;