From da8915bfc1f94f18f451b342b856b728894370c6 Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Sun, 10 Jul 2005 12:52:20 +0000 Subject: more macro splitting; fix po problem Original commit message from CVS: more macro splitting; fix po problem --- ext/aalib/gstaasink.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ext/aalib') diff --git a/ext/aalib/gstaasink.c b/ext/aalib/gstaasink.c index 3bd0c997..74aa52d4 100644 --- a/ext/aalib/gstaasink.c +++ b/ext/aalib/gstaasink.c @@ -105,7 +105,7 @@ gst_aasink_get_type (void) }; aasink_type = - g_type_register_static (GST_TYPE_BASESINK, "GstAASink", &aasink_info, + g_type_register_static (GST_TYPE_BASE_SINK, "GstAASink", &aasink_info, 0); } return aasink_type; @@ -196,7 +196,7 @@ gst_aasink_class_init (GstAASinkClass * 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_aasink_set_property; gobject_class->get_property = gst_aasink_get_property; @@ -271,7 +271,7 @@ gst_aasink_init (GstAASink * aasink) { GstPad *pad; - pad = GST_BASESINK_PAD (aasink); + pad = GST_BASE_SINK_PAD (aasink); gst_pad_set_fixatecaps_function (pad, gst_aasink_fixate); memcpy (&aasink->ascii_surf, &aa_defparams, -- cgit