summaryrefslogtreecommitdiffstats
path: root/ext/taglib/gsttaglib.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
commitd707693fb0ae398f05069690d58dd6571c238909 (patch)
tree0b2235a24398817ea78220b27d5dad4dfc7c833d /ext/taglib/gsttaglib.h
parentc19601eab999c0cd0bbec620d03862391cdc4580 (diff)
downloadgst-plugins-bad-d707693fb0ae398f05069690d58dd6571c238909.tar.gz
gst-plugins-bad-d707693fb0ae398f05069690d58dd6571c238909.tar.bz2
gst-plugins-bad-d707693fb0ae398f05069690d58dd6571c238909.zip
pedantic cleanups
Original commit message from CVS: pedantic cleanups
Diffstat (limited to 'ext/taglib/gsttaglib.h')
-rw-r--r--ext/taglib/gsttaglib.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/ext/taglib/gsttaglib.h b/ext/taglib/gsttaglib.h
index b98a339c..eacfc840 100644
--- a/ext/taglib/gsttaglib.h
+++ b/ext/taglib/gsttaglib.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);