Commit header changes too
[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 <config.h>
26 #include <gst/gst.h>
27 #include <gstriff.h>
28
29
30 #ifdef __cplusplus
31 extern "C" {
32 #endif /* __cplusplus */
33
34
35 #define GST_TYPE_WAVPARSE \
36   (gst_wavparse_get_type())
37 #define GST_WAVPARSE(obj) \
38   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_WAVPARSE,GstWavParse))
39 #define GST_WAVPARSE_CLASS(klass) \
40   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_WAVPARSE,GstWavParse))
41 #define GST_IS_WAVPARSE(obj) \
42   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_WAVPARSE))
43 #define GST_IS_WAVPARSE_CLASS(obj) \
44   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_WAVPARSE))
45
46
47 #define GST_WAVPARSE_UNKNOWN    0       /* initialized state */
48 #define GST_WAVPARSE_CHUNK_FMT  1       /* searching for fmt */
49 #define GST_WAVPARSE_CHUNK_DATA 2       /* searching for data */
50 #define GST_WAVPARSE_DATA       3       /* in data region */
51 #define GST_WAVPARSE_OTHER      4       /* in unknown region */
52
53 typedef struct _GstWavParse GstWavParse;
54 typedef struct _GstWavParseClass GstWavParseClass;
55
56 struct _GstWavParse {
57   GstElement element;
58
59   /* pads */
60   GstPad *sinkpad,*srcpad;
61
62   /* WAVE decoding state */
63   gint state;
64
65   /* RIFF decoding state */
66   GstRiff *riff;
67   gulong riff_nextlikely;
68
69   /* expected length of audio */
70   gulong size;
71
72   /* format of audio, see defines below */
73   gint format;
74
75   /* useful audio data */
76   gint bps;
77   gint rate;
78   gint channels;
79   gint width;
80
81   gint64 offset;
82   gint64 datastart;
83   gboolean need_discont;
84 };
85
86 struct _GstWavParseClass {
87   GstElementClass parent_class;
88 };
89
90 GType gst_wavparse_get_type(void);
91
92 typedef struct _GstWavParseFormat GstWavParseFormat;
93
94 struct _GstWavParseFormat {
95   gint16 wFormatTag;
96   guint16 wChannels;
97   guint32 dwSamplesPerSec;
98   guint32 dwAvgBytesPerSec;
99   guint16 wBlockAlign;
100   guint16 wBitsPerSample;
101 };
102
103 /**** from public Microsoft RIFF docs ******/
104 #define GST_RIFF_WAVE_FORMAT_UNKNOWN        (0x0000)
105 #define GST_RIFF_WAVE_FORMAT_PCM            (0x0001)
106 #define GST_RIFF_WAVE_FORMAT_ADPCM          (0x0002)
107 #define GST_RIFF_WAVE_FORMAT_IBM_CVSD       (0x0005)
108 #define GST_RIFF_WAVE_FORMAT_ALAW           (0x0006)
109 #define GST_RIFF_WAVE_FORMAT_MULAW          (0x0007)
110 #define GST_RIFF_WAVE_FORMAT_OKI_ADPCM      (0x0010)
111 #define GST_RIFF_WAVE_FORMAT_DVI_ADPCM      (0x0011)
112 #define GST_RIFF_WAVE_FORMAT_DIGISTD        (0x0015)
113 #define GST_RIFF_WAVE_FORMAT_DIGIFIX        (0x0016)
114 #define GST_RIFF_WAVE_FORMAT_YAMAHA_ADPCM   (0x0020)
115 #define GST_RIFF_WAVE_FORMAT_DSP_TRUESPEECH (0x0022)
116 #define GST_RIFF_WAVE_FORMAT_GSM610         (0x0031)
117 #define GST_RIFF_WAVE_FORMAT_MSN            (0x0032)
118 #define GST_RIFF_WAVE_FORMAT_MPEGL12        (0x0050)
119 #define GST_RIFF_WAVE_FORMAT_MPEGL3         (0x0055)
120 #define GST_RIFF_IBM_FORMAT_MULAW           (0x0101)
121 #define GST_RIFF_IBM_FORMAT_ALAW            (0x0102)
122 #define GST_RIFF_IBM_FORMAT_ADPCM           (0x0103)
123 #define GST_RIFF_WAVE_FORMAT_DIVX_WMAV1     (0x0160)
124 #define GST_RIFF_WAVE_FORMAT_DIVX_WMAV2     (0x0161)
125 #define GST_RIFF_WAVE_FORMAT_WMAV9          (0x0162)
126 #define GST_RIFF_WAVE_FORMAT_VORBIS1        (0x674f)
127 #define GST_RIFF_WAVE_FORMAT_VORBIS2        (0x6750)
128 #define GST_RIFF_WAVE_FORMAT_VORBIS3        (0x6751)
129 #define GST_RIFF_WAVE_FORMAT_VORBIS1PLUS    (0x676f)
130 #define GST_RIFF_WAVE_FORMAT_VORBIS2PLUS    (0x6770)
131 #define GST_RIFF_WAVE_FORMAT_VORBIS3PLUS    (0x6771)
132
133 #ifdef __cplusplus
134 }
135 #endif /* __cplusplus */
136
137
138 #endif /* __GST_WAVPARSE_H__ */