Tizen 2.0 Release
[framework/multimedia/gst-plugins-good0.10.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 __GST_FLAC_DEC_H__
22 #define __GST_FLAC_DEC_H__
23
24
25 #include <gst/gst.h>
26 #include <gst/base/gstadapter.h>
27
28 #include <FLAC/all.h>
29
30 G_BEGIN_DECLS
31
32 #define GST_TYPE_FLAC_DEC gst_flac_dec_get_type()
33 #define GST_FLAC_DEC(obj) G_TYPE_CHECK_INSTANCE_CAST(obj, GST_TYPE_FLAC_DEC, GstFlacDec)
34 #define GST_FLAC_DEC_CLASS(klass) G_TYPE_CHECK_CLASS_CAST(klass, GST_TYPE_FLAC_DEC, GstFlacDecClass)
35 #define GST_IS_FLAC_DEC(obj) G_TYPE_CHECK_INSTANCE_TYPE(obj, GST_TYPE_FLAC_DEC)
36 #define GST_IS_FLAC_DEC_CLASS(klass) G_TYPE_CHECK_CLASS_TYPE(klass, GST_TYPE_FLAC_DEC)
37
38 typedef struct _GstFlacDec GstFlacDec;
39 typedef struct _GstFlacDecClass GstFlacDecClass;
40
41 struct _GstFlacDec {
42   GstElement     element;
43
44   /* < private > */
45
46   FLAC__StreamDecoder         *decoder;
47   GstAdapter                  *adapter;
48   gboolean                     framed;
49   gboolean                     streaming;
50
51   gboolean       got_headers; /* if we've parsed the headers (unframed push mode only) */
52
53   GstPad        *sinkpad;
54   GstPad        *srcpad;
55
56   gboolean       init;
57
58   guint64        offset;      /* current byte offset of input */
59
60   gboolean       seeking;     /* set to TRUE while seeking to make sure we
61                                * don't push any buffers in the write callback
62                                * until we are actually at the new position */
63
64   gboolean       eos;         /* set to TRUE if seeked after the end of file */
65
66   GstSegment     segment;     /* the currently configured segment, in
67                                * samples/audio frames (DEFAULT format) */
68   gboolean       running;
69   gboolean       discont;
70   GstBuffer     *pending;     /* pending buffer, produced in seek */
71   guint          pending_samples;
72   GstEvent      *close_segment;
73   GstEvent      *start_segment;
74   GstTagList    *tags;
75
76   GstFlowReturn  pull_flow;   /* last flow from pull_range */ /* STREAM_LOCK */
77
78   GstFlowReturn  last_flow;   /* the last flow return received from either
79                                * gst_pad_push or gst_pad_buffer_alloc */
80
81   gint           channels;
82   gint           depth;
83   gint           width;
84   gint           sample_rate;
85
86   /* from the stream info, needed for scanning */
87   guint16        min_blocksize;
88   guint16        max_blocksize;
89
90   gint64         cur_granulepos; /* only used in framed mode (flac-in-ogg) */
91 };
92
93 struct _GstFlacDecClass {
94   GstElementClass parent_class;
95 };
96
97 GType gst_flac_dec_get_type (void);
98
99 G_END_DECLS
100
101 #endif /* __GST_FLAC_DEC_H__ */