summaryrefslogtreecommitdiffstats
path: root/ext/taglib/gsttaglibmux.h
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2006-04-28 15:33:09 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2006-04-28 15:33:09 +0000
commitd60e890ed2cdfecc02ad118ca1763f186c319beb (patch)
treeeaa319898cd0599a9d668f3fb6de0f44b87c3761 /ext/taglib/gsttaglibmux.h
parent9d466b6067d20cd7f09bb247f3b91ed949505e28 (diff)
pedantic cleanups
Original commit message from CVS: pedantic cleanups
Diffstat (limited to 'ext/taglib/gsttaglibmux.h')
-rw-r--r--ext/taglib/gsttaglibmux.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/ext/taglib/gsttaglibmux.h b/ext/taglib/gsttaglibmux.h
index b98a339c..eacfc840 100644
--- a/ext/taglib/gsttaglibmux.h
+++ b/ext/taglib/gsttaglibmux.h
@@ -1,4 +1,4 @@
-/* GStreamer taglib-based ID3 muxer
+/* GStreamer taglib-based muxer
* (c) 2006 Christophe Fergeau <teuf@gnome.org>
*
* This library is free software; you can redistribute it and/or
@@ -45,16 +45,16 @@ typedef struct _GstTagLibMuxClass {
} GstTagLibMuxClass;
/* Standard macros for defining types for this element. */
-#define GST_TYPE_TAGLIB_MUX \
+#define GST_TYPE_TAG_LIB_MUX \
(gst_tag_lib_mux_get_type())
-#define GST_TAGLIB_MUX(obj) \
- (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_TAGLIB_MUX,GstTagLibMux))
-#define GST_TAGLIB_MUX_CLASS(klass) \
- (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_TAGLIB_MUX,GstTagLibMuxClass))
-#define GST_IS_TAGLIB_MUX(obj) \
- (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_TAGLIB_MUX))
-#define GST_IS_TAGLIB_MUX_CLASS(klass) \
- (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_TAGLIB_MUX))
+#define GST_TAG_LIB_MUX(obj) \
+ (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_TAG_LIB_MUX,GstTagLibMux))
+#define GST_TAG_LIB_MUX_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_TAG_LIB_MUX,GstTagLibMuxClass))
+#define GST_IS_TAG_LIB_MUX(obj) \
+ (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_TAG_LIB_MUX))
+#define GST_IS_TAG_LIB_MUX_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_TAG_LIB_MUX))
/* Standard function returning type information. */
GType gst_tag_lib_mux_get_type (void);