Fix more gobject macros: obj<->klass, GstXXX<->GstXXXClass
[platform/upstream/gst-plugins-good.git] / ext / wavpack / gstwavpackdec.h
1 /* GStreamer Wavpack plugin
2  * (c) 2004 Arwed v. Merkatz <v.merkatz@gmx.net>
3  *
4  * gstwavpackdec.h: raw Wavpack bitstream decoder
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  */
21
22 #ifndef __GST_WAVPACK_DEC_H__
23 #define __GST_WAVPACK_DEC_H__
24
25 #include <gst/gst.h>
26
27 #include <wavpack/wavpack.h>
28
29 G_BEGIN_DECLS
30
31 /* #define's don't like whitespacey bits */
32 #define GST_TYPE_WAVPACK_DEC \
33   (gst_wavpack_dec_get_type())
34 #define GST_WAVPACK_DEC(obj) \
35   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_WAVPACK_DEC,GstWavpackDec))
36 #define GST_WAVPACK_DEC_CLASS(klass) \
37   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_WAVPACK_DEC,GstWavpackDecClass))
38 #define GST_IS_WAVPACK_DEC(obj) \
39   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_WAVPACK_DEC))
40 #define GST_IS_WAVPACK_DEC_CLASS(klass) \
41   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_WAVPACK_DEC))
42
43 typedef struct _GstWavpackDec      GstWavpackDec;
44 typedef struct _GstWavpackDecClass GstWavpackDecClass;
45
46 struct _GstWavpackDec
47 {
48   GstElement element;
49
50   GstPad *sinkpad, *srcpad;
51 #if 0
52   GstPad *wvcsinkpad;
53 #endif
54
55   WavpackContext *context;
56
57   int32_t *decodebuf;
58   guint decodebuf_size;
59
60   WavpackStream *stream;
61
62   guint32 samplerate;
63   guint channels;
64   guint width;
65   long frame_length;
66
67   guint64 wvcflushed_bytes;
68   guint64 duration;
69   guint64 wvcduration;
70
71   guchar *decdata;
72   long *cache;
73 };
74
75 struct _GstWavpackDecClass 
76 {
77   GstElementClass parent;
78 };
79
80 GType gst_wavpack_dec_get_type (void);
81
82 gboolean gst_wavpack_dec_plugin_init (GstPlugin *plugin);
83
84 G_END_DECLS
85
86 #endif /* __GST_WAVPACK_DEC_H__ */