5b5fd110d1ee978e34643e4a56948ba364505b6b
[platform/upstream/gst-plugins-good.git] / ext / flac / gstflacdec.h
1 /* GStreamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20
21 #ifndef __FLACDEC_H__
22 #define __FLACDEC_H__
23
24
25 #include <gst/gst.h>
26 #include <gst/bytestream/bytestream.h>
27
28 #include <FLAC/all.h>
29
30 #ifdef __cplusplus
31 extern "C" {
32 #endif /* __cplusplus */
33
34
35 #define GST_TYPE_FLACDEC flacdec_get_type()
36 #define GST_FLACDEC(obj) G_TYPE_CHECK_INSTANCE_CAST(obj, GST_TYPE_FLACDEC, FlacDec)
37 #define GST_FLACDEC_CLASS(klass) G_TYPE_CHECK_CLASS_CAST(klass, GST_TYPE_FLACDEC, FlacDec)
38 #define GST_IS_FLACDEC(obj) G_TYPE_CHECK_INSTANCE_TYPE(obj, GST_TYPE_FLACDEC)
39 #define GST_IS_FLACDEC_CLASS(obj) G_TYPE_CHECK_CLASS_TYPE(klass, GST_TYPE_FLACDEC)
40
41 typedef struct _FlacDec FlacDec;
42 typedef struct _FlacDecClass FlacDecClass;
43
44 struct _FlacDec {
45   GstElement     element;
46
47   GstPad        *sinkpad,*srcpad;
48   GstByteStream *bs;
49
50   FLAC__SeekableStreamDecoder *decoder;
51   gint           channels;
52   gint           depth;
53   gint           frequency;
54
55   gboolean       need_discont;
56   gboolean       seek_pending;
57   gint64         seek_value;
58
59   gboolean       init;
60   guint64        total_samples;
61   guint64        stream_samples;
62
63   gboolean       eos;
64 };
65
66 struct _FlacDecClass {
67   GstElementClass parent_class;
68 };
69
70 GType flacdec_get_type(void);
71
72
73 #ifdef __cplusplus
74 }
75 #endif /* __cplusplus */
76
77 #endif /* __FLACDEC_H__ */