id3tag: register GType of the base class with a less generic name
authorTim-Philipp Müller <tim.muller@collabora.co.uk>
Fri, 22 May 2009 00:27:09 +0000 (01:27 +0100)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Fri, 22 May 2009 00:30:48 +0000 (01:30 +0100)
.. so we can easily move the base class into -base later without
causing GType name conflicts.

gst/id3tag/gsttagmux.c

index bfa4e1bcc74de264d2412e5da565140c11d7e45c..257f82bb6e94559586469296e822f8139e40061a 100644 (file)
@@ -55,7 +55,12 @@ gst_tag_mux_iface_init (GType tag_type)
   g_type_add_interface_static (tag_type, GST_TYPE_TAG_SETTER, &tag_setter_info);
 }
 
-GST_BOILERPLATE_FULL (GstTagMux, gst_tag_mux,
+/* make sure to register a less generic type so we can easily move this
+ * GstTagMux base class into -base without causing GType name conflicts */
+typedef GstTagMux GstID3TagMux;
+typedef GstTagMuxClass GstID3TagMuxClass;
+
+GST_BOILERPLATE_FULL (GstID3TagMux, gst_tag_mux,
     GstElement, GST_TYPE_ELEMENT, gst_tag_mux_iface_init);