gst/wavparse/gstwavparse.h remove duplicated defines for audio codec codes gst-libs...
[platform/upstream/gst-plugins-good.git] / gst / wavparse / gstwavparse.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_WAVPARSE_H__
22 #define __GST_WAVPARSE_H__
23
24
25 #include <gst/gst.h>
26 #include "gst/riff/riff-ids.h"
27 #include "gst/riff/riff-read.h"
28
29 #ifdef __cplusplus
30 extern "C" {
31 #endif /* __cplusplus */
32
33
34 #define GST_TYPE_WAVPARSE \
35   (gst_wavparse_get_type())
36 #define GST_WAVPARSE(obj) \
37   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_WAVPARSE,GstWavParse))
38 #define GST_WAVPARSE_CLASS(klass) \
39   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_WAVPARSE,GstWavParse))
40 #define GST_IS_WAVPARSE(obj) \
41   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_WAVPARSE))
42 #define GST_IS_WAVPARSE_CLASS(obj) \
43   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_WAVPARSE))
44
45 typedef enum {
46   GST_WAVPARSE_START,
47   GST_WAVPARSE_FMT,
48   GST_WAVPARSE_OTHER,
49   GST_WAVPARSE_DATA,
50 } GstWavParseState;
51
52 typedef struct _GstWavParse GstWavParse;
53 typedef struct _GstWavParseClass GstWavParseClass;
54
55 struct _GstWavParse {
56   GstRiffRead parent;
57
58   /* pads */
59   GstPad *sinkpad,*srcpad;
60
61   /* WAVE decoding state */
62   GstWavParseState state;
63
64   /* format of audio, see defines below */
65   gint format;
66
67   /* useful audio data */
68   guint16 depth;
69   gint rate;
70   guint16 channels;
71   guint16 blockalign;
72   guint16 width;
73   guint32 bps;
74
75   guint64 dataleft, datasize, datastart;
76   int byteoffset;
77   
78   gboolean seek_pending;
79   guint64 seek_offset;
80 };
81
82 struct _GstWavParseClass {
83   GstElementClass parent_class;
84 };
85
86 GType gst_wavparse_get_type(void);
87
88 #ifdef __cplusplus
89 }
90 #endif /* __cplusplus */
91
92
93 #endif /* __GST_WAVPARSE_H__ */