gst-indent
[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 {
33 #endif                          /* __cplusplus */
34
35
36 #define GST_TYPE_FLACDEC flacdec_get_type()
37 #define GST_FLACDEC(obj) G_TYPE_CHECK_INSTANCE_CAST(obj, GST_TYPE_FLACDEC, FlacDec)
38 #define GST_FLACDEC_CLASS(klass) G_TYPE_CHECK_CLASS_CAST(klass, GST_TYPE_FLACDEC, FlacDec)
39 #define GST_IS_FLACDEC(obj) G_TYPE_CHECK_INSTANCE_TYPE(obj, GST_TYPE_FLACDEC)
40 #define GST_IS_FLACDEC_CLASS(obj) G_TYPE_CHECK_CLASS_TYPE(klass, GST_TYPE_FLACDEC)
41
42   typedef struct _FlacDec FlacDec;
43   typedef struct _FlacDecClass FlacDecClass;
44
45   struct _FlacDec
46   {
47     GstElement element;
48
49     GstPad *sinkpad, *srcpad;
50     GstByteStream *bs;
51
52     FLAC__SeekableStreamDecoder *decoder;
53     gint channels;
54     gint depth;
55     gint frequency;
56
57     gboolean need_discont;
58     gboolean seek_pending;
59     gint64 seek_value;
60
61     gboolean init;
62     guint64 total_samples;
63     guint64 stream_samples;
64
65     gboolean eos;
66   };
67
68   struct _FlacDecClass
69   {
70     GstElementClass parent_class;
71   };
72
73   GType flacdec_get_type (void);
74
75
76 #ifdef __cplusplus
77 }
78 #endif                          /* __cplusplus */
79
80 #endif                          /* __FLACDEC_H__ */