12024
|
1 /*
|
|
2 linphone
|
|
3 Copyright (C) 2000 Simon MORLAT (simon.morlat@free.fr)
|
|
4
|
|
5 This program is free software; you can redistribute it and/or
|
|
6 modify it under the terms of the GNU General Public License
|
|
7 as published by the Free Software Foundation; either version 2
|
|
8 of the License, or (at your option) any later version.
|
|
9
|
|
10 This program 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
|
|
13 GNU General Public License for more details.
|
|
14
|
|
15 You should have received a copy of the GNU General Public License
|
|
16 along with this program; if not, write to the Free Software
|
|
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
18 */
|
|
19
|
|
20 /* the following code was taken from a free software utility that I don't remember the name. */
|
|
21 /* sorry */
|
|
22
|
|
23
|
|
24
|
|
25 #include <ms.h>
|
|
26 #ifndef waveheader_h
|
|
27 #define waveheader_h
|
|
28
|
|
29 typedef struct uint16scheme
|
|
30 {
|
|
31 unsigned char lo_byte;
|
|
32 unsigned char hi_byte;
|
|
33 } uint16scheme_t;
|
|
34
|
|
35 typedef struct uint32scheme
|
|
36 {
|
|
37 guint16 lo_int;
|
|
38 guint16 hi_int;
|
|
39 } uint32scheme_t;
|
|
40
|
|
41
|
|
42 /* all integer in wav header must be read in least endian order */
|
|
43 inline guint16 _readuint16(guint16 a)
|
|
44 {
|
|
45 guint16 res;
|
|
46 uint16scheme_t *tmp1=(uint16scheme_t*)&a;
|
|
47
|
|
48 ((uint16scheme_t *)(&res))->lo_byte=tmp1->hi_byte;
|
|
49 ((uint16scheme_t *)(&res))->hi_byte=tmp1->lo_byte;
|
|
50 return res;
|
|
51 }
|
|
52
|
|
53 inline guint32 _readuint32(guint32 a)
|
|
54 {
|
|
55 guint32 res;
|
|
56 uint32scheme_t *tmp1=(uint32scheme_t*)&a;
|
|
57
|
|
58 ((uint32scheme_t *)(&res))->lo_int=_readuint16(tmp1->hi_int);
|
|
59 ((uint32scheme_t *)(&res))->hi_int=_readuint16(tmp1->lo_int);
|
|
60 return res;
|
|
61 }
|
|
62
|
|
63 #ifdef WORDS_BIGENDIAN
|
|
64 #define le_uint32(a) (_readuint32((a)))
|
|
65 #define le_uint16(a) (_readuint16((a)))
|
|
66 #define le_int16(a) ( (gint16) _readuint16((guint16)((a))) )
|
|
67 #else
|
|
68 #define le_uint32(a) (a)
|
|
69 #define le_uint16(a) (a)
|
|
70 #define le_int16(a) (a)
|
|
71 #endif
|
|
72
|
|
73 typedef struct _riff_t {
|
|
74 char riff[4] ; /* "RIFF" (ASCII characters) */
|
|
75 guint32 len ; /* Length of package (binary, little endian) */
|
|
76 char wave[4] ; /* "WAVE" (ASCII characters) */
|
|
77 } riff_t;
|
|
78
|
|
79 /* The FORMAT chunk */
|
|
80
|
|
81 typedef struct _format_t {
|
|
82 char fmt[4] ; /* "fmt_" (ASCII characters) */
|
|
83 guint32 len ; /* length of FORMAT chunk (always 0x10) */
|
|
84 guint16 que ; /* Always 0x01 */
|
|
85 guint16 channel ; /* Channel numbers (0x01 = mono, 0x02 = stereo) */
|
|
86 guint32 rate ; /* Sample rate (binary, in Hz) */
|
|
87 guint32 bps ; /* Bytes Per Second */
|
|
88 guint16 bpsmpl ; /* bytes per sample: 1 = 8 bit Mono,
|
|
89 2 = 8 bit Stereo/16 bit Mono,
|
|
90 4 = 16 bit Stereo */
|
|
91 guint16 bitpspl ; /* bits per sample */
|
|
92 } format_t;
|
|
93
|
|
94 /* The DATA chunk */
|
|
95
|
|
96 typedef struct _data_t {
|
|
97 char data[4] ; /* "data" (ASCII characters) */
|
|
98 int len ; /* length of data */
|
|
99 } data_t;
|
|
100
|
|
101 typedef struct _wave_header_t
|
|
102 {
|
|
103 riff_t riff_chunk;
|
|
104 format_t format_chunk;
|
|
105 data_t data_chunk;
|
|
106 } wave_header_t;
|
|
107
|
|
108 #define wave_header_get_rate(header) le_uint32((header)->format_chunk.rate)
|
|
109 #define wave_header_get_channel(header) le_uint16((header)->format_chunk.channel)
|
|
110
|
|
111 #endif
|