Tizen 2.0 Release
[framework/multimedia/gst-plugins-bad0.10.git] / gst / tta / gstttaparse.h
1 /* GStreamer TTA plugin
2  * (c) 2004 Arwed v. Merkatz <v.merkatz@gmx.net>
3  *
4  * gstttaparse.h: TTA 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_TTA_PARSE_H__
23 #define __GST_TTA_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_TTA_PARSE \
31   (gst_tta_parse_get_type())
32 #define GST_TTA_PARSE(obj) \
33   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_TTA_PARSE,GstTtaParse))
34 #define GST_TTA_PARSE_CLASS(klass) \
35   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_TTA_PARSE,GstTtaParseClass))
36 #define GST_IS_TTA_PARSE(obj) \
37   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_TTA_PARSE))
38 #define GST_IS_TTA_PARSE_CLASS(klass) \
39   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_TTA_PARSE))
40
41 typedef struct _GstTtaParse      GstTtaParse;
42 typedef struct _GstTtaParseClass GstTtaParseClass;
43
44 typedef struct _GstTtaIndex {
45   guint32   size;     /* size of frame frameno */
46   guint64   pos;      /* start of the frame */
47   guint64   time;     /* in nanoseconds */
48 } GstTtaIndex;
49
50 struct _GstTtaParse
51 {
52   GstElement element;
53
54   GstPad *sinkpad, *srcpad;
55
56   gboolean header_parsed;
57   guint32 samplerate;
58   guint16 channels;
59   guint16 bits;
60   guint32 data_length;
61   guint num_frames;
62
63   GstTtaIndex *index;
64
65   guint32 current_frame;
66 };
67
68 struct _GstTtaParseClass 
69 {
70   GstElementClass parent;
71 };
72
73 GType gst_tta_parse_get_type (void);
74
75 gboolean gst_tta_parse_plugin_init (GstPlugin *plugin);
76
77 G_END_DECLS
78
79 #endif /* __GST_TTA_PARSE_H__ */