summaryrefslogtreecommitdiffstats
path: root/gst/law/alaw-encode.h
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2007-09-25 17:18:34 +0000
committerTim-Philipp Müller <tim@centricular.net>2007-09-25 17:18:34 +0000
commitab3379a6ac746bc754554a689835dfdb0fbc1d27 (patch)
treec651ae1de128341aa8f2b006bb683d4688392b0a /gst/law/alaw-encode.h
parent89dee84fd7c848abdbb335f255fa0ca092b92bea (diff)
gst/law/: Compulsive clean-ups: use boilerplate macros, add debug categories, fix up things to conform to symbol nome...
Original commit message from CVS: * gst/law/alaw-decode.c: * gst/law/alaw-decode.h: * gst/law/alaw-encode.c: * gst/law/alaw-encode.h: * gst/law/alaw.c: * gst/law/mulaw-conversion.h: Compulsive clean-ups: use boilerplate macros, add debug categories, fix up things to conform to symbol nomenklatura, etc.
Diffstat (limited to 'gst/law/alaw-encode.h')
-rw-r--r--gst/law/alaw-encode.h32
1 files changed, 16 insertions, 16 deletions
diff --git a/gst/law/alaw-encode.h b/gst/law/alaw-encode.h
index 79d01bde..3ca53a63 100644
--- a/gst/law/alaw-encode.h
+++ b/gst/law/alaw-encode.h
@@ -1,5 +1,5 @@
-/* GStreamer
- * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
+/* GStreamer PCM to A-Law conversion
+ * Copyright (C) 2000 by Abramo Bagnara <abramo@alsa-project.org>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
@@ -18,23 +18,23 @@
*/
-#ifndef __GST_ALAWENCODE_H__
-#define __GST_ALAWENCODE_H__
+#ifndef __GST_ALAW_ENCODE_H__
+#define __GST_ALAW_ENCODE_H__
#include <gst/gst.h>
G_BEGIN_DECLS
-#define GST_TYPE_ALAWENC \
- (gst_alawenc_get_type())
-#define GST_ALAWENC(obj) \
- (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_ALAWENC,GstALawEnc))
-#define GST_ALAWENC_CLASS(klass) \
- (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_ALAWENC,GstALawEncClass))
-#define GST_IS_ALAWENC(obj) \
- (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_ALAWENC))
-#define GST_IS_ALAWENC_CLASS(klass) \
- (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_ALAWENC))
+#define GST_TYPE_ALAW_ENC \
+ (gst_alaw_enc_get_type())
+#define GST_ALAW_ENC(obj) \
+ (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_ALAW_ENC,GstALawEnc))
+#define GST_ALAW_ENC_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_ALAW_ENC,GstALawEncClass))
+#define GST_IS_ALAW_ENC(obj) \
+ (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_ALAW_ENC))
+#define GST_IS_ALAW_ENC_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_ALAW_ENC))
typedef struct _GstALawEnc GstALawEnc;
typedef struct _GstALawEncClass GstALawEncClass;
@@ -52,8 +52,8 @@ struct _GstALawEncClass {
GstElementClass parent_class;
};
-GType gst_alawenc_get_type(void);
+GType gst_alaw_enc_get_type(void);
G_END_DECLS
-#endif /* __GST_STEREO_H__ */
+#endif /* __GST_ALAW_ENCODE_H__ */