ext/wavpack/: Add support for encoding, parsing and decoding multichannel files with...
[platform/upstream/gst-plugins-good.git] / ext / wavpack / gstwavpackdec.h
1 /* GStreamer Wavpack plugin
2  * Copyright (c) 2004 Arwed v. Merkatz <v.merkatz@gmx.net>
3  * Copyright (c) 2006 Sebastian Dröge <slomo@circular-chaos.org>
4  *
5  * gstwavpackdec.h: raw Wavpack bitstream decoder
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 #ifndef __GST_WAVPACK_DEC_H__
24 #define __GST_WAVPACK_DEC_H__
25
26 #include <gst/gst.h>
27
28 #include <wavpack/wavpack.h>
29
30 #include "gstwavpackstreamreader.h"
31
32 G_BEGIN_DECLS
33 #define GST_TYPE_WAVPACK_DEC \
34   (gst_wavpack_dec_get_type())
35 #define GST_WAVPACK_DEC(obj) \
36   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_WAVPACK_DEC,GstWavpackDec))
37 #define GST_WAVPACK_DEC_CLASS(klass) \
38   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_WAVPACK_DEC,GstWavpackDecClass))
39 #define GST_IS_WAVPACK_DEC(obj) \
40   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_WAVPACK_DEC))
41 #define GST_IS_WAVPACK_DEC_CLASS(klass) \
42   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_WAVPACK_DEC))
43 typedef struct _GstWavpackDec GstWavpackDec;
44 typedef struct _GstWavpackDecClass GstWavpackDecClass;
45
46 struct _GstWavpackDec
47 {
48   GstElement element;
49
50   /*< private > */
51   GstPad *sinkpad;
52   GstPad *srcpad;
53
54   WavpackContext *context;
55   WavpackStreamReader *stream_reader;
56
57   read_id wv_id;
58
59   GstSegment segment;           /* used for clipping, TIME format */
60   guint32 next_block_index;
61
62   gint sample_rate;
63   gint depth;
64   gint channels;
65   gint channel_mask;
66
67   gint error_count;
68 };
69
70 struct _GstWavpackDecClass
71 {
72   GstElementClass parent;
73 };
74
75 GType gst_wavpack_dec_get_type (void);
76
77 gboolean gst_wavpack_dec_plugin_init (GstPlugin * plugin);
78
79 G_END_DECLS
80 #endif /* __GST_WAVPACK_DEC_H__ */