Tizen 2.0 Release
[framework/multimedia/gst-plugins-good0.10.git] / gst / wavparse / gstwavparse.h
1 /* GStreamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3  * Copyright (C) <2006> Nokia Corporation, Stefan Kost <stefan.kost@nokia.com>.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21
22 #ifndef __GST_WAVPARSE_H__
23 #define __GST_WAVPARSE_H__
24
25
26 #include <gst/gst.h>
27 #include "gst/riff/riff-ids.h"
28 #include "gst/riff/riff-read.h"
29 #include <gst/base/gstadapter.h>
30
31 G_BEGIN_DECLS
32
33 #define GST_TYPE_WAVPARSE \
34   (gst_wavparse_get_type())
35 #define GST_WAVPARSE(obj) \
36   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_WAVPARSE,GstWavParse))
37 #define GST_WAVPARSE_CLASS(klass) \
38   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_WAVPARSE,GstWavParseClass))
39 #define GST_IS_WAVPARSE(obj) \
40   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_WAVPARSE))
41 #define GST_IS_WAVPARSE_CLASS(klass) \
42   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_WAVPARSE))
43
44 #define WAVPARSER_MODIFICATION
45
46 typedef enum {
47   GST_WAVPARSE_START,
48   GST_WAVPARSE_HEADER,
49   GST_WAVPARSE_DATA
50 } GstWavParseState;
51
52 typedef struct _GstWavParse GstWavParse;
53 typedef struct _GstWavParseClass GstWavParseClass;
54
55 /**
56  * GstWavParse:
57  *
58  * Opaque data structure.
59  */
60 struct _GstWavParse {
61   GstElement parent;
62
63   /* pads */
64   GstPad *sinkpad,*srcpad;
65
66   /* for delayed source pad creation for when
67    * we have the first chunk of data and know
68    * the format for sure */
69   GstCaps     *caps;
70   GstTagList  *tags;
71   GstEvent    *close_segment;
72   GstEvent    *start_segment;
73
74   /* WAVE decoding state */
75   GstWavParseState state;
76   gboolean abort_buffering;
77
78   /* format of audio, see defines below */
79   gint format;
80
81   /* useful audio data */
82   guint16 depth;
83   guint32 rate;
84   guint16 channels;
85   guint16 blockalign;
86   guint16 width;
87   guint32 av_bps;
88   guint32 fact;
89
90   /* real bps used or 0 when no bitrate is known */
91   guint32 bps;
92   gboolean vbr;
93
94   guint bytes_per_sample;
95   guint max_buf_size;
96
97   /* position in data part */
98   guint64       offset;
99   guint64       end_offset;
100   guint64       dataleft;
101   /* offset/length of data part */
102   guint64       datastart;
103   guint64       datasize;
104   /* duration in time */
105   guint64       duration;
106
107   /* pending seek */
108   GstEvent *seek_event;
109
110   /* For streaming */
111   GstAdapter *adapter;
112   gboolean got_fmt;
113   gboolean streaming;
114
115   /* configured segment, start/stop expressed in time */
116   GstSegment segment;
117   gboolean segment_running;
118
119   /* for late pad configuration */
120   gboolean first;
121   /* discont after seek */
122   gboolean discont;
123 };
124
125 struct _GstWavParseClass {
126   GstElementClass parent_class;
127 };
128
129 GType gst_wavparse_get_type(void);
130
131 G_END_DECLS
132
133 #endif /* __GST_WAVPARSE_H__ */