summaryrefslogtreecommitdiffstats
path: root/gst/wavparse/gstwavparse.h
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2002-01-30 10:20:58 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2002-01-30 10:20:58 +0000
commitdc967942797f8d709aa71204ca858688b4b76498 (patch)
treec7ae60c8609e8e9a98e608982febeb95f37537d0 /gst/wavparse/gstwavparse.h
parentff6c7a13b8574b8acd31657b367056375a019e1b (diff)
taaz's virtual patch
Original commit message from CVS: taaz's virtual patch
Diffstat (limited to 'gst/wavparse/gstwavparse.h')
-rw-r--r--gst/wavparse/gstwavparse.h48
1 files changed, 24 insertions, 24 deletions
diff --git a/gst/wavparse/gstwavparse.h b/gst/wavparse/gstwavparse.h
index 55cb4913..d6c94e31 100644
--- a/gst/wavparse/gstwavparse.h
+++ b/gst/wavparse/gstwavparse.h
@@ -18,8 +18,8 @@
*/
-#ifndef __GST_PARSEWAV_H__
-#define __GST_PARSEWAV_H__
+#ifndef __GST_WAVPARSE_H__
+#define __GST_WAVPARSE_H__
#include <config.h>
@@ -32,28 +32,28 @@ extern "C" {
#endif /* __cplusplus */
-#define GST_TYPE_PARSEWAV \
- (gst_parsewav_get_type())
-#define GST_PARSEWAV(obj) \
- (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_PARSEWAV,GstParseWav))
-#define GST_PARSEWAV_CLASS(klass) \
- (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_PARSEWAV,GstParseWav))
-#define GST_IS_PARSEWAV(obj) \
- (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_PARSEWAV))
-#define GST_IS_PARSEWAV_CLASS(obj) \
- (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_PARSEWAV))
+#define GST_TYPE_WAVPARSE \
+ (gst_wavparse_get_type())
+#define GST_WAVPARSE(obj) \
+ (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_WAVPARSE,GstWavParse))
+#define GST_WAVPARSE_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_WAVPARSE,GstWavParse))
+#define GST_IS_WAVPARSE(obj) \
+ (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_WAVPARSE))
+#define GST_IS_WAVPARSE_CLASS(obj) \
+ (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_WAVPARSE))
-#define GST_PARSEWAV_UNKNOWN 0 /* initialized state */
-#define GST_PARSEWAV_CHUNK_FMT 1 /* searching for fmt */
-#define GST_PARSEWAV_CHUNK_DATA 2 /* searching for data */
-#define GST_PARSEWAV_DATA 3 /* in data region */
-#define GST_PARSEWAV_OTHER 4 /* in unknown region */
+#define GST_WAVPARSE_UNKNOWN 0 /* initialized state */
+#define GST_WAVPARSE_CHUNK_FMT 1 /* searching for fmt */
+#define GST_WAVPARSE_CHUNK_DATA 2 /* searching for data */
+#define GST_WAVPARSE_DATA 3 /* in data region */
+#define GST_WAVPARSE_OTHER 4 /* in unknown region */
-typedef struct _GstParseWav GstParseWav;
-typedef struct _GstParseWavClass GstParseWavClass;
+typedef struct _GstWavParse GstWavParse;
+typedef struct _GstWavParseClass GstWavParseClass;
-struct _GstParseWav {
+struct _GstWavParse {
GstElement element;
/* pads */
@@ -74,15 +74,15 @@ struct _GstParseWav {
};
-struct _GstParseWavClass {
+struct _GstWavParseClass {
GstElementClass parent_class;
};
-GType gst_parsewav_get_type(void);
+GType gst_wavparse_get_type(void);
-typedef struct _GstParseWavFormat GstParseWavFormat;
+typedef struct _GstWavParseFormat GstWavParseFormat;
-struct _GstParseWavFormat {
+struct _GstWavParseFormat {
gint16 wFormatTag;
guint16 wChannels;
guint32 dwSamplesPerSec;