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>
5 * gstwavpackdec.h: raw Wavpack bitstream decoder
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.
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.
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.
23 #ifndef __GST_WAVPACK_DEC_H__
24 #define __GST_WAVPACK_DEC_H__
28 #include <wavpack/wavpack.h>
30 #include "gstwavpackstreamreader.h"
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;
54 WavpackContext *context;
55 WavpackStreamReader *stream_reader;
59 GstSegment segment; /* used for clipping, TIME format */
60 guint32 next_block_index;
70 struct _GstWavpackDecClass
72 GstElementClass parent;
75 GType gst_wavpack_dec_get_type (void);
77 gboolean gst_wavpack_dec_plugin_init (GstPlugin * plugin);
80 #endif /* __GST_WAVPACK_DEC_H__ */