summaryrefslogtreecommitdiffstats
path: root/ext/esd
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/esd
parent81dae26a233429bf822f8a07b53fe8e238573d29 (diff)
more macro splitting; fix po problem
Original commit message from CVS: more macro splitting; fix po problem
Diffstat (limited to 'ext/esd')
-rw-r--r--ext/esd/esdsink.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/esd/esdsink.c b/ext/esd/esdsink.c
index 49702ce6..b27ce394 100644
--- a/ext/esd/esdsink.c
+++ b/ext/esd/esdsink.c
@@ -106,8 +106,8 @@ gst_esdsink_get_type (void)
};
esdsink_type =
- g_type_register_static (GST_TYPE_AUDIOSINK, "GstEsdSink", &esdsink_info,
- 0);
+ g_type_register_static (GST_TYPE_AUDIO_SINK, "GstEsdSink",
+ &esdsink_info, 0);
}
return esdsink_type;
}
@@ -137,7 +137,7 @@ gst_esdsink_class_init (GstEsdSinkClass * klass)
gstbaseaudiosink_class = (GstBaseAudioSinkClass *) klass;
gstaudiosink_class = (GstAudioSinkClass *) klass;
- parent_class = g_type_class_ref (GST_TYPE_AUDIOSINK);
+ parent_class = g_type_class_ref (GST_TYPE_AUDIO_SINK);
gobject_class->dispose = gst_esdsink_dispose;