configure.ac: Check for wavpack version and define WAVPACK_OLD_API if necessary.
[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's don't like whitespacey bits */
34 #define GST_TYPE_WAVPACK_DEC \
35   (gst_wavpack_dec_get_type())
36 #define GST_WAVPACK_DEC(obj) \
37   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_WAVPACK_DEC,GstWavpackDec))
38 #define GST_WAVPACK_DEC_CLASS(klass) \
39   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_WAVPACK_DEC,GstWavpackDecClass))
40 #define GST_IS_WAVPACK_DEC(obj) \
41   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_WAVPACK_DEC))
42 #define GST_IS_WAVPACK_DEC_CLASS(klass) \
43   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_WAVPACK_DEC))
44 typedef struct _GstWavpackDec GstWavpackDec;
45 typedef struct _GstWavpackDecClass GstWavpackDecClass;
46
47 struct _GstWavpackDec
48 {
49   GstElement element;
50
51   /* GstPad             *wvcsinkpad; */
52   GstPad              *sinkpad;
53   GstPad              *srcpad;
54
55   WavpackContext      *context;
56   WavpackStreamReader *stream_reader;
57
58   read_id              wv_id;
59   /* read_id              wvc_id; */
60
61   GstSegment           segment; /* used for clipping, TIME format */
62
63   guint                sample_rate;
64   guint                width;
65   guint                channels;
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__ */