208fc5b9d80523e005fc28e9a7b6201a12324dde
[platform/upstream/gst-plugins-good.git] / ext / mikmod / gstmikmod.h
1 /* GStreamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20
21 #ifndef __GST_MIKMOD_H__
22 #define __GST_MIKMOD_H__
23
24 #include <mikmod.h>
25 #include <gst/gst.h>
26
27 #ifdef __cplusplus
28 extern "C" {
29 #endif /* __cplusplus */
30
31
32 #define GST_TYPE_MIKMOD \
33   (gst_mikmod_get_type())
34   
35 #define GST_MIKMOD(obj) \
36   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_MIKMOD,GstMikMod))
37 #define GST_MIKMOD_CLASS(klass) \
38   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_ULAW,GstMikMod))
39 #define GST_IS_MIKMOD(obj) \
40   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_MIKMOD))
41 #define GST_IS_MIKMOD_CLASS(obj) \
42   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_MIKMOD))
43   
44 struct _GstMikMod {
45   GstElement element;
46   GstPad *sinkpad, *srcpad;
47   GstBuffer *Buffer;
48
49   gchar *songname;
50   gchar *modtype;
51   gint musicvolume;
52   gint pansep;
53   gint reverb;
54   gint sndfxvolume;
55   gint volume;
56   gint mixfreq;
57   gint mode;
58   gboolean interp;
59   gboolean reverse;
60   gboolean surround;
61   gboolean _16bit;
62   gboolean hqmixer;
63   gboolean soft_music;
64   gboolean soft_sndfx;
65   gboolean stereo;
66
67   gboolean initialized;
68 };
69
70 struct _GstMikModClass {
71   GstElementClass parent_class;
72 };
73
74 typedef struct _GstMikMod GstMikMod;
75 typedef struct _GstMikModClass GstMikModClass;
76
77 extern MODULE *module;
78 extern MREADER *reader;
79 extern GstPad *srcpad;
80 extern GstClockTime timestamp;
81 extern int need_sync;
82
83 GType gst_mikmod_get_type(void);
84
85 /* symbols for mikmod_reader.h */
86 struct _GST_READER
87 {
88   MREADER core;
89   GstMikMod *mik;
90   guint64 offset;
91   gshort  eof;
92 };
93
94
95 typedef struct _GST_READER GST_READER;
96
97
98 MREADER *GST_READER_new( GstMikMod *mik );
99
100 /* symbols for drv_gst.c */
101 extern MDRIVER drv_gst;
102
103 #ifdef __cplusplus
104 }
105 #endif /* __cplusplus */
106
107 #endif /* __GST_MIKMOD_H__ */