-1, TRUE/true, FALSE/false and tabs replacements.
[wxWidgets.git] / contrib / src / mmedia / sndwav.cpp
1 // --------------------------------------------------------------------------
2 // Name: sndwav.cpp
3 // Purpose:
4 // Date: 08/11/1999
5 // Author: Guilhem Lavaux <lavaux@easynet.fr> (C) 1999
6 // CVSID: $Id$
7 // --------------------------------------------------------------------------
8 #ifdef __GNUG__
9 #pragma implementation "sndwav.cpp"
10 #endif
11
12 #include "wx/wxprec.h"
13
14 #ifndef WX_PRECOMP
15 #include "wx/defs.h"
16 #endif
17
18 #ifdef __BORLANDC__
19 #pragma hdrstop
20 #endif
21
22 #include "wx/stream.h"
23 #include "wx/datstrm.h"
24 #include "wx/filefn.h"
25 #include "wx/mstream.h"
26
27 #include "wx/mmedia/sndbase.h"
28 #include "wx/mmedia/sndcodec.h"
29 #include "wx/mmedia/sndfile.h"
30 #include "wx/mmedia/sndpcm.h"
31 #include "wx/mmedia/sndg72x.h"
32 #include "wx/mmedia/sndmsad.h"
33 #include "wx/mmedia/sndwav.h"
34
35 #define BUILD_SIGNATURE(a,b,c,d) (((wxUint32)a) | (((wxUint32)b) << 8) | (((wxUint32)c) << 16) | (((wxUint32)d) << 24))
36
37 #define RIFF_SIGNATURE BUILD_SIGNATURE('R','I','F','F')
38 #define WAVE_SIGNATURE BUILD_SIGNATURE('W','A','V','E')
39 #define FMT_SIGNATURE BUILD_SIGNATURE('f','m','t',' ')
40 #define DATA_SIGNATURE BUILD_SIGNATURE('d','a','t','a')
41
42 #define HEADER_SIZE 4+4 + 4+4+16 + 4+4
43 // 4+4 => NAME + LEN
44 // 16 => fmt size
45
46 wxSoundWave::wxSoundWave(wxInputStream& stream, wxSoundStream& io_sound)
47 : wxSoundFileStream(stream, io_sound)
48 {
49 m_base_offset = wxInvalidOffset;
50 }
51
52 wxSoundWave::wxSoundWave(wxOutputStream& stream, wxSoundStream& io_sound)
53 : wxSoundFileStream(stream, io_sound)
54 {
55 m_base_offset = wxInvalidOffset;
56 }
57
58 wxSoundWave::~wxSoundWave()
59 {
60 }
61
62 wxString wxSoundWave::GetCodecName() const
63 {
64 return wxString(wxT("wxSoundWave codec"));
65 }
66
67 #define FAIL_WITH(condition, err) if (condition) { m_snderror = err; return false; }
68
69 bool wxSoundWave::CanRead()
70 {
71 wxUint32 len, signature1, signature2;
72 m_snderror = wxSOUND_NOERROR;
73
74 // Test the main signatures:
75 // "RIFF"
76 FAIL_WITH(m_input->Read(&signature1, 4).LastRead() != 4, wxSOUND_INVSTRM);
77
78 if (wxUINT32_SWAP_ON_BE(signature1) != RIFF_SIGNATURE) {
79 m_input->Ungetch(&signature1, 4);
80 return false;
81 }
82
83 // Pass the global length
84 m_input->Read(&len, 4);
85 FAIL_WITH(m_input->LastRead() != 4, wxSOUND_INVSTRM);
86
87 // Get the second signature
88 FAIL_WITH(m_input->Read(&signature2, 4).LastRead() != 4, wxSOUND_INVSTRM);
89 // Ungetch all
90 m_input->Ungetch(&signature2, 4);
91 m_input->Ungetch(&len, 4);
92 m_input->Ungetch(&signature1, 4);
93
94 // Test the second signature
95 if (wxUINT32_SWAP_ON_BE(signature2) != WAVE_SIGNATURE)
96 return false;
97
98 return true;
99 }
100
101 bool wxSoundWave::HandleOutputPCM(wxDataInputStream& WXUNUSED(data), wxUint32 len,
102 wxUint16 channels,
103 wxUint32 sample_fq, wxUint32 WXUNUSED(byte_p_sec),
104 wxUint16 WXUNUSED(byte_p_spl), wxUint16 bits_p_spl)
105 {
106 wxSoundFormatPcm sndformat;
107
108 sndformat.SetSampleRate(sample_fq);
109 sndformat.SetBPS(bits_p_spl);
110 sndformat.SetChannels(channels);
111 sndformat.Signed(true);
112 sndformat.SetOrder(wxLITTLE_ENDIAN);
113
114 if (!SetSoundFormat(sndformat))
115 return false;
116
117 m_input->SeekI(len, wxFromCurrent);
118
119 return true;
120 }
121
122 bool wxSoundWave::HandleOutputMSADPCM(wxDataInputStream& data, wxUint32 len,
123 wxUint16 channels,
124 wxUint32 sample_fq, wxUint32 WXUNUSED(byte_p_sec),
125 wxUint16 WXUNUSED(byte_p_spl), wxUint16 WXUNUSED(bits_p_spl))
126 {
127 wxSoundFormatMSAdpcm sndformat;
128 wxInt16 *coefs[2];
129 wxUint16 coefs_len, i;
130 wxUint16 block_size;
131
132 sndformat.SetSampleRate(sample_fq);
133 sndformat.SetChannels(channels);
134
135 block_size = data.Read16();
136 coefs_len = data.Read16();
137
138 coefs[0] = new wxInt16[coefs_len];
139 coefs[1] = new wxInt16[coefs_len];
140
141 for (i=0;i<coefs_len;i++) {
142 coefs[0][i] = data.Read16();
143 coefs[1][i] = data.Read16();
144 }
145
146 sndformat.SetCoefs(coefs, 2, coefs_len);
147 sndformat.SetBlockSize(block_size);
148
149 delete[] coefs[0];
150 delete[] coefs[1];
151
152 if (!SetSoundFormat(sndformat))
153 return false;
154
155 len -= coefs_len*4 + 4;
156
157 m_input->SeekI(len, wxFromCurrent);
158
159 return true;
160 }
161
162 bool wxSoundWave::HandleOutputG721(wxDataInputStream& WXUNUSED(data), wxUint32 len,
163 wxUint16 WXUNUSED(channels),
164 wxUint32 sample_fq, wxUint32 WXUNUSED(byte_p_sec),
165 wxUint16 WXUNUSED(byte_p_spl), wxUint16 WXUNUSED(bits_p_spl))
166 {
167 wxSoundFormatG72X sndformat;
168
169 sndformat.SetSampleRate(sample_fq);
170 sndformat.SetG72XType(wxSOUND_G721);
171
172 if (!SetSoundFormat(sndformat))
173 return false;
174
175 m_input->SeekI(len, wxFromCurrent);
176
177 return true;
178 }
179
180 bool wxSoundWave::PrepareToPlay()
181 {
182 wxUint32 signature, len;
183 bool end_headers;
184
185 if (!m_input) {
186 m_snderror = wxSOUND_INVSTRM;
187 return false;
188 }
189
190 wxDataInputStream data(*m_input);
191 data.BigEndianOrdered(false);
192
193 // Get the first signature
194 FAIL_WITH(m_input->Read(&signature, 4).LastRead() != 4, wxSOUND_INVSTRM);
195 FAIL_WITH(wxUINT32_SWAP_ON_BE(signature) != RIFF_SIGNATURE, wxSOUND_INVSTRM);
196 // "RIFF"
197
198 len = data.Read32();
199 wxUnusedVar(len);
200 FAIL_WITH(m_input->LastRead() != 4, wxSOUND_INVSTRM);
201 // dummy len
202
203 // Get the second signature
204 FAIL_WITH(m_input->Read(&signature, 4).LastRead() != 4, wxSOUND_INVSTRM);
205 FAIL_WITH(wxUINT32_SWAP_ON_BE(signature) != WAVE_SIGNATURE, wxSOUND_INVSTRM);
206 // "WAVE"
207
208 end_headers = false;
209 // Chunk loop
210 while (!end_headers) {
211 FAIL_WITH(m_input->Read(&signature, 4).LastRead() != 4, wxSOUND_INVSTRM);
212
213 len = data.Read32();
214 FAIL_WITH(m_input->LastRead() != 4, wxSOUND_INVSTRM);
215
216 switch (wxUINT32_SWAP_ON_BE(signature)) {
217 case FMT_SIGNATURE: { // "fmt "
218 wxUint16 format, channels, byte_p_spl, bits_p_spl;
219 wxUint32 sample_fq, byte_p_sec;
220
221 // Get the common parameters
222 data >> format >> channels >> sample_fq
223 >> byte_p_sec >> byte_p_spl >> bits_p_spl;
224 len -= 16;
225
226 switch (format) {
227 case 0x01: // PCM
228 if (!HandleOutputPCM(data, len, channels, sample_fq,
229 byte_p_sec, byte_p_spl,
230 bits_p_spl))
231 return false;
232 break;
233 case 0x02: // MS ADPCM
234 if (!HandleOutputMSADPCM(data, len,
235 channels, sample_fq,
236 byte_p_sec, byte_p_spl,
237 bits_p_spl))
238 return false;
239 break;
240 case 0x40: // G721
241 if (!HandleOutputG721(data, len,
242 channels, sample_fq,
243 byte_p_sec, byte_p_spl,
244 bits_p_spl))
245 return false;
246 break;
247 default:
248 m_snderror = wxSOUND_NOCODEC;
249 return false;
250 }
251 break;
252 }
253 case DATA_SIGNATURE: // "data"
254 m_base_offset = m_input->TellI();
255 end_headers = true;
256 FinishPreparation(len);
257 break;
258 default:
259 // We pass the chunk
260 m_input->SeekI(len, wxFromCurrent);
261 break;
262 }
263 }
264 return true;
265 }
266
267 wxSoundFormatBase *wxSoundWave::HandleInputPCM(wxDataOutputStream& data)
268 {
269 wxUint16 format, channels, byte_p_spl, bits_p_spl;
270 wxUint32 sample_fq, byte_p_sec;
271 wxSoundFormatPcm *pcm;
272
273 pcm = (wxSoundFormatPcm *)(m_sndformat->Clone());
274
275 // Write block length
276 data.Write32(16);
277
278 sample_fq = pcm->GetSampleRate();
279 bits_p_spl = pcm->GetBPS();
280 channels = pcm->GetChannels();
281 byte_p_spl = pcm->GetBPS() / 8;
282 byte_p_sec = pcm->GetBytesFromTime(1);
283 format = 0x01;
284
285 pcm->Signed(true);
286 pcm->SetOrder(wxLITTLE_ENDIAN);
287
288 data << format << channels << sample_fq
289 << byte_p_sec << byte_p_spl << bits_p_spl;
290
291 return pcm;
292 }
293
294 wxSoundFormatBase *wxSoundWave::HandleInputG72X(wxDataOutputStream& data)
295 {
296 wxUint16 format, channels, byte_p_spl, bits_p_spl;
297 wxUint32 sample_fq, byte_p_sec;
298 wxSoundFormatG72X *g72x;
299
300 // Write block length
301 data.Write32(16);
302
303 g72x = (wxSoundFormatG72X *)(m_sndformat->Clone());
304 if (g72x->GetG72XType() != wxSOUND_G721) {
305 delete g72x;
306 return NULL;
307 }
308
309 sample_fq = g72x->GetSampleRate();
310 bits_p_spl = 4;
311 channels = 1;
312 byte_p_spl = 0;
313 byte_p_sec = g72x->GetBytesFromTime(1);
314 format = 0x40;
315 data << format << channels << sample_fq
316 << byte_p_sec << byte_p_spl << bits_p_spl;
317
318 return g72x;
319 }
320
321 bool wxSoundWave::PrepareToRecord(wxUint32 time)
322 {
323 #define WRITE_SIGNATURE(s,sig) \
324 signature = sig; \
325 signature = wxUINT32_SWAP_ON_BE(signature); \
326 FAIL_WITH(s->Write(&signature, 4).LastWrite() != 4, wxSOUND_INVSTRM);
327
328 wxUint32 signature;
329 wxMemoryOutputStream fmt_data;
330
331 if (!m_output) {
332 m_snderror = wxSOUND_INVSTRM;
333 return false;
334 }
335
336 wxDataOutputStream data(*m_output);
337 wxDataOutputStream fmt_d_data(fmt_data);
338
339 data.BigEndianOrdered(false);
340 fmt_d_data.BigEndianOrdered(false);
341
342 WRITE_SIGNATURE(m_output, RIFF_SIGNATURE);
343
344 FAIL_WITH(m_output->LastWrite() != 4, wxSOUND_INVSTRM);
345
346 WRITE_SIGNATURE((&fmt_data), WAVE_SIGNATURE);
347
348 {
349 wxSoundFormatBase *frmt;
350
351 WRITE_SIGNATURE((&fmt_data), FMT_SIGNATURE);
352
353 switch (m_sndformat->GetType()) {
354 case wxSOUND_PCM:
355 frmt = HandleInputPCM(fmt_d_data);
356 break;
357 case wxSOUND_G72X:
358 frmt = HandleInputG72X(fmt_d_data);
359 break;
360 default:
361 m_snderror = wxSOUND_NOCODEC;
362 return false;
363 }
364
365 FAIL_WITH(!frmt, wxSOUND_NOCODEC);
366
367 if (!SetSoundFormat(*frmt)) {
368 delete frmt;
369 return false;
370 }
371
372 delete frmt;
373 }
374
375 data << (fmt_data.GetSize() + m_sndformat->GetBytesFromTime(time));
376
377 // We, finally, copy the header block to the output stream
378 {
379 char *out_buf;
380 out_buf = new char[fmt_data.GetSize()];
381
382 fmt_data.CopyTo(out_buf, fmt_data.GetSize());
383 m_output->Write(out_buf, fmt_data.GetSize());
384
385 delete[] out_buf;
386 }
387
388 WRITE_SIGNATURE(m_output, DATA_SIGNATURE);
389 data.Write32(m_sndformat->GetBytesFromTime(time));
390 return true;
391 }
392
393 bool wxSoundWave::FinishRecording()
394 {
395 if (m_output->SeekO(0, wxFromStart) == wxInvalidOffset)
396 // We can't but there is no error.
397 return true;
398
399 if (m_bytes_left == 0)
400 return true;
401
402 // TODO: Update headers when we stop before the specified time (if possible)
403 return true;
404 }
405
406 bool wxSoundWave::RepositionStream(wxUint32 WXUNUSED(position))
407 {
408 if (m_base_offset == wxInvalidOffset)
409 return false;
410 m_input->SeekI(m_base_offset, wxFromStart);
411 return true;
412 }
413
414 wxUint32 wxSoundWave::GetData(void *buffer, wxUint32 len)
415 {
416 return m_input->Read(buffer, len).LastRead();
417 }
418
419 wxUint32 wxSoundWave::PutData(const void *buffer, wxUint32 len)
420 {
421 return m_output->Write(buffer, len).LastWrite();
422 }