gst/wavparse/gstwavparse.*: Be a bit more clever when dealing with VBR files with...
[platform/upstream/gst-plugins-good.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 typedef enum {
45   GST_WAVPARSE_START,
46   GST_WAVPARSE_HEADER,
47   GST_WAVPARSE_DATA
48 } GstWavParseState;
49
50 typedef struct _GstWavParse GstWavParse;
51 typedef struct _GstWavParseClass GstWavParseClass;
52
53 /**
54  * GstWavParse:
55  *
56  * Opaque data structure.
57  */
58 struct _GstWavParse {
59   GstElement parent;
60
61   /* pads */
62   GstPad *sinkpad,*srcpad;
63
64   /* for delayed source pad creation for when
65    * we have the first chunk of data and know
66    * the format for sure */
67   GstCaps     *caps;
68   GstTagList  *tags;
69   GstEvent    *close_segment;
70   GstEvent    *start_segment;
71
72   /* WAVE decoding state */
73   GstWavParseState state;
74
75   /* format of audio, see defines below */
76   gint format;
77
78   /* useful audio data */
79   guint16 depth;
80   guint32 rate;
81   guint16 channels;
82   guint16 blockalign;
83   guint16 width;
84   guint32 av_bps;
85   guint32 fact;
86
87   /* real bps used or 0 when no bitrate is known */
88   guint32 bps;
89   gboolean vbr;
90
91   guint bytes_per_sample;
92
93   /* position in data part */
94   guint64       offset;
95   guint64       end_offset;
96   guint64       dataleft;
97   /* offset/length of data part */
98   guint64       datastart;
99   guint64       datasize;
100
101   /* pending seek */
102   GstEvent *seek_event;
103
104   /* For streaming */
105   GstAdapter *adapter;
106   gboolean got_fmt;
107   gboolean streaming;
108
109   /* configured segment, start/stop expressed in time */
110   GstSegment segment;
111   gboolean segment_running;
112
113   /* for late pad configuration */
114   gboolean first;
115   /* discont after seek */
116   gboolean discont;
117 };
118
119 struct _GstWavParseClass {
120   GstElementClass parent_class;
121 };
122
123 GType gst_wavparse_get_type(void);
124
125 G_END_DECLS
126
127 #endif /* __GST_WAVPARSE_H__ */