Fix more gobject macros: obj<->klass, GstXXX<->GstXXXClass
[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,GstWavpackParseClass))
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(klass) \
39   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_WAVPACK_PARSE))
40
41 typedef struct _GstWavpackParse           GstWavpackParse;
42 typedef struct _GstWavpackParseClass      GstWavpackParseClass;
43 typedef struct _GstWavpackParseIndexEntry GstWavpackParseIndexEntry;
44
45 struct _GstWavpackParseIndexEntry {
46   gint64 byte_offset;          /* byte offset of this chunk  */
47   gint64 sample_offset;        /* first sample in this chunk */
48   gint64 sample_offset_end;    /* first sample in next chunk  */
49 };
50
51 struct _GstWavpackParse
52 {
53   GstElement     element;
54
55   GstPad        *sinkpad;
56   GstPad        *srcpad;
57   
58   guint          samplerate;
59   guint          channels;
60   guint          total_samples;
61
62   gboolean       need_newsegment;
63
64   gint64         current_offset;   /* byte offset on sink pad */
65   gint64         upstream_length;  /* length of file in bytes */
66
67   GstSegment     segment;     /* the currently configured segment, in
68                                * samples/audio frames (DEFAULT format) */
69
70   /* Array of GstWavpackParseIndexEntry structs, mapping known
71    * sample offsets to byte offsets. Is kept increasing without
72    * gaps (ie. append only and consecutive entries must always
73    * map to consecutive chunks in the file). */
74   GArray        *entries;
75 };
76
77 struct _GstWavpackParseClass 
78 {
79   GstElementClass parent;
80 };
81
82 GType gst_wavpack_parse_get_type (void);
83
84 gboolean gst_wavpack_parse_plugin_init (GstPlugin *plugin);
85
86 G_END_DECLS
87
88 #endif /* __GST_WAVPACK_PARSE_H__ */