Tizen 2.0 Release
[framework/multimedia/gst-plugins-bad0.10.git] / gst / tta / gstttadec.h
1 /* GStreamer TTA plugin
2  * (c) 2004 Arwed v. Merkatz <v.merkatz@gmx.net>
3  *
4  * gstttadec.h: raw TTA 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_TTA_DEC_H__
23 #define __GST_TTA_DEC_H__
24
25 #include <gst/gst.h>
26
27 #include "ttadec.h"
28
29 G_BEGIN_DECLS
30
31 /* #define's don't like whitespacey bits */
32 #define GST_TYPE_TTA_DEC \
33   (gst_tta_dec_get_type())
34 #define GST_TTA_DEC(obj) \
35   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_TTA_DEC,GstTtaDec))
36 #define GST_TTA_DEC_CLASS(klass) \
37   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_TTA_DEC,GstTtaDecClass))
38 #define GST_IS_TTA_DEC(obj) \
39   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_TTA_DEC))
40 #define GST_IS_TTA_DEC_CLASS(klass) \
41   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_TTA_DEC))
42
43 typedef struct _GstTtaDec      GstTtaDec;
44 typedef struct _GstTtaDecClass GstTtaDecClass;
45
46 typedef struct _tta_buffer
47 {
48   guchar *buffer;
49   guchar *buffer_end;
50   gulong bit_count;
51   gulong bit_cache;
52   guchar *bitpos;
53   gulong offset;
54 } tta_buffer;
55
56 struct _GstTtaDec
57 {
58   GstElement element;
59
60   GstPad *sinkpad, *srcpad;
61
62   guint32 samplerate;
63   guint channels;
64   guint bytes;
65   long frame_length;
66
67   decoder *tta;
68   guchar *decdata;
69   tta_buffer tta_buf;
70   long *cache;
71 };
72
73 struct _GstTtaDecClass 
74 {
75   GstElementClass parent;
76 };
77
78 GType gst_tta_dec_get_type (void);
79
80 gboolean gst_tta_dec_plugin_init (GstPlugin *plugin);
81
82 G_END_DECLS
83
84 #endif /* __GST_TTA_DEC_H__ */