Tizen 2.0 Release
[framework/multimedia/gst-plugins-good0.10.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 #include <gst/base/gstadapter.h>
27
28 G_BEGIN_DECLS
29 #define GST_TYPE_WAVPACK_PARSE \
30   (gst_wavpack_parse_get_type())
31 #define GST_WAVPACK_PARSE(obj) \
32   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_WAVPACK_PARSE,GstWavpackParse))
33 #define GST_WAVPACK_PARSE_CLASS(klass) \
34   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_WAVPACK_PARSE,GstWavpackParseClass))
35 #define GST_IS_WAVPACK_PARSE(obj) \
36   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_WAVPACK_PARSE))
37 #define GST_IS_WAVPACK_PARSE_CLASS(klass) \
38   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_WAVPACK_PARSE))
39 typedef struct _GstWavpackParse GstWavpackParse;
40 typedef struct _GstWavpackParseClass GstWavpackParseClass;
41 typedef struct _GstWavpackParseIndexEntry GstWavpackParseIndexEntry;
42
43 struct _GstWavpackParseIndexEntry
44 {
45   gint64 byte_offset;           /* byte offset of this chunk  */
46   gint64 sample_offset;         /* first sample in this chunk */
47   gint64 sample_offset_end;     /* first sample in next chunk  */
48 };
49
50 struct _GstWavpackParse
51 {
52   GstElement element;
53
54   /*< private > */
55   GstPad *sinkpad;
56   GstPad *srcpad;
57
58   guint samplerate;
59   guint channels;
60   gint64 total_samples;
61
62   gboolean need_newsegment;
63   gboolean discont;
64
65   gint64 current_offset;        /* byte offset on sink pad */
66   gint64 upstream_length;       /* length of file in bytes */
67
68   GstSegment segment;           /* the currently configured segment, in
69                                  * samples/audio frames (DEFAULT format) */
70
71   GstBuffer *pending_buffer;
72   gint32 pending_offset;
73   guint32 next_block_index;
74
75   GstAdapter *adapter;          /* when operating chain-based, otherwise NULL */
76
77   /* List of GstWavpackParseIndexEntry structs, mapping known
78    * sample offsets to byte offsets. Is kept increasing without
79    * gaps (ie. append only and consecutive entries must always
80    * map to consecutive chunks in the file). */
81   GSList *entries;
82
83   /* Queued events (e.g. tag events we receive before we create the src pad) */
84   GList *queued_events;         /* STREAM_LOCK */
85 };
86
87 struct _GstWavpackParseClass
88 {
89   GstElementClass parent;
90 };
91
92 GType gst_wavpack_parse_get_type (void);
93
94 gboolean gst_wavpack_parse_plugin_init (GstPlugin * plugin);
95
96 G_END_DECLS
97 #endif /* __GST_WAVPACK_PARSE_H__ */