Wavpack ported to 0.9. No support for correction file yet.
[platform/upstream/gst-plugins-good.git] / ext / wavpack / gstwavpackparse.h
1 /* GStreamer wavpack plugin
2  * (c) 2005 Arwed v. Merkatz <v.merkatz@gmx.net>
3  *
4  * gstwavpackparse.h: wavpack file parser
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_PARSE_H__
23 #define __GST_WAVPACK_PARSE_H__
24
25 #include <gst/gst.h>
26
27 G_BEGIN_DECLS
28
29 /* #define's don't like whitespacey bits */
30 #define GST_TYPE_WAVPACK_PARSE \
31   (gst_wavpack_parse_get_type())
32 #define GST_WAVPACK_PARSE(obj) \
33   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_WAVPACK_PARSE,GstWavpackParse))
34 #define GST_WAVPACK_PARSE_CLASS(klass) \
35   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_WAVPACK_PARSE,GstWavpackParse))
36 #define GST_IS_WAVPACK_PARSE(obj) \
37   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_WAVPACK_PARSE))
38 #define GST_IS_WAVPACK_PARSE_CLASS(obj) \
39   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_WAVPACK_PARSE))
40
41 typedef struct _GstWavpackParse      GstWavpackParse;
42 typedef struct _GstWavpackParseClass GstWavpackParseClass;
43
44 struct _GstWavpackParse
45 {
46   GstElement element;
47
48   GstPad *sinkpad, *srcpad;
49   
50   guint32 samplerate;
51   guint32 channels;
52   guint32 total_samples;
53   guint64 timestamp;
54
55   guint64 flushed_bytes;
56   guint64 duration;
57
58   guint64 seek_offset;
59   gboolean seek_pending;
60   gboolean need_discont;
61   gboolean need_flush;
62   gboolean eos;
63 };
64
65 struct _GstWavpackParseClass 
66 {
67   GstElementClass parent;
68 };
69
70 GType gst_wavpack_parse_get_type (void);
71
72 gboolean gst_wavpack_parse_plugin_init (GstPlugin *plugin);
73
74 G_END_DECLS
75
76 #endif /* __GST_WAVPACK_PARSE_H__ */