3893a29342d7940d43f29641413bbc009b0fd359
[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 <riff.h>
27 #include <gst/bytestream/bytestream.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
46 #define GST_WAVPARSE_UNKNOWN    0       /* initialized state */
47 #define GST_WAVPARSE_START      1       /* At the start */
48 #define GST_WAVPARSE_DATA       2       /* in data region */
49 #define GST_WAVPARSE_OTHER      3       /* in unknown region */
50   
51 typedef struct _GstWavParse GstWavParse;
52 typedef struct _GstWavParseClass GstWavParseClass;
53
54 struct _GstWavParse {
55   GstElement element;
56
57   GstByteStream *bs;
58   /* pads */
59   GstPad *sinkpad,*srcpad;
60
61   /* WAVE decoding state */
62   gint state;
63
64   /* format of audio, see defines below */
65   gint format;
66
67   /* useful audio data */
68   gint bps;
69   gint rate;
70   gint channels;
71   gint width;
72
73   int dataleft;
74   int byteoffset;
75   
76   gboolean seek_pending;
77   guint64 seek_offset;
78   
79   GstBuffer *buf;
80 };
81
82 struct _GstWavParseClass {
83   GstElementClass parent_class;
84 };
85
86 GType gst_wavparse_get_type(void);
87
88 typedef struct _GstWavParseFormat GstWavParseFormat;
89
90 struct _GstWavParseFormat {
91   gint16 wFormatTag;
92   guint16 wChannels;
93   guint32 dwSamplesPerSec;
94   guint32 dwAvgBytesPerSec;
95   guint16 wBlockAlign;
96   guint16 wBitsPerSample;
97 };
98   
99   
100 /**** from public Microsoft RIFF docs ******/
101 #define GST_RIFF_WAVE_FORMAT_UNKNOWN        (0x0000)
102 #define GST_RIFF_WAVE_FORMAT_PCM            (0x0001)
103 #define GST_RIFF_WAVE_FORMAT_ADPCM          (0x0002)
104 #define GST_RIFF_WAVE_FORMAT_IBM_CVSD       (0x0005)
105 #define GST_RIFF_WAVE_FORMAT_ALAW           (0x0006)
106 #define GST_RIFF_WAVE_FORMAT_MULAW          (0x0007)
107 #define GST_RIFF_WAVE_FORMAT_OKI_ADPCM      (0x0010)
108 #define GST_RIFF_WAVE_FORMAT_DVI_ADPCM      (0x0011)
109 #define GST_RIFF_WAVE_FORMAT_DIGISTD        (0x0015)
110 #define GST_RIFF_WAVE_FORMAT_DIGIFIX        (0x0016)
111 #define GST_RIFF_WAVE_FORMAT_YAMAHA_ADPCM   (0x0020)
112 #define GST_RIFF_WAVE_FORMAT_DSP_TRUESPEECH (0x0022)
113 #define GST_RIFF_WAVE_FORMAT_GSM610         (0x0031)
114 #define GST_RIFF_WAVE_FORMAT_MSN            (0x0032)
115 #define GST_RIFF_WAVE_FORMAT_MPEGL12        (0x0050)
116 #define GST_RIFF_WAVE_FORMAT_MPEGL3         (0x0055)
117 #define GST_RIFF_IBM_FORMAT_MULAW           (0x0101)
118 #define GST_RIFF_IBM_FORMAT_ALAW            (0x0102)
119 #define GST_RIFF_IBM_FORMAT_ADPCM           (0x0103)
120 #define GST_RIFF_WAVE_FORMAT_DIVX_WMAV1     (0x0160)
121 #define GST_RIFF_WAVE_FORMAT_DIVX_WMAV2     (0x0161)
122 #define GST_RIFF_WAVE_FORMAT_WMAV9          (0x0162)
123 #define GST_RIFF_WAVE_FORMAT_VORBIS1        (0x674f)
124 #define GST_RIFF_WAVE_FORMAT_VORBIS2        (0x6750)
125 #define GST_RIFF_WAVE_FORMAT_VORBIS3        (0x6751)
126 #define GST_RIFF_WAVE_FORMAT_VORBIS1PLUS    (0x676f)
127 #define GST_RIFF_WAVE_FORMAT_VORBIS2PLUS    (0x6770)
128 #define GST_RIFF_WAVE_FORMAT_VORBIS3PLUS    (0x6771)
129
130 #ifdef __cplusplus
131 }
132 #endif /* __cplusplus */
133
134
135 #endif /* __GST_WAVPARSE_H__ */