]> git.saurik.com Git - wxWidgets.git/blame - contrib/include/wx/mmedia/sndmsad.h
added ability to generate wx24-like wxWindows.dsp
[wxWidgets.git] / contrib / include / wx / mmedia / sndmsad.h
CommitLineData
e8482f24
GL
1// --------------------------------------------------------------------------
2// Name: sndmsad(pcm).h
3// Purpose: MS ADPCM codec
4// Date: 25/02/2000
5// Author: Guilhem Lavaux <lavaux@easynet.fr> (C) 2000
6// CVSID: $Id$
7// --------------------------------------------------------------------------
c42b1de6
GL
8#ifndef _WX_SNDMSAD_H
9#define _WX_SNDMSAD_H
e8482f24
GL
10
11#ifdef __GNUG__
12#pragma interface "sndmsad.h"
13#endif
14
15#include "wx/defs.h"
16#include "wx/dynarray.h"
17#include "wx/mmedia/sndcodec.h"
18#include "wx/mmedia/sndbase.h"
19
e53191be 20WX_DEFINE_EXPORTED_ARRAY_INT(wxInt16, wxMSAdpcmCoeffs);
e8482f24
GL
21
22//
23// MSADPCM format
24//
25class WXDLLEXPORT wxSoundFormatMSAdpcm: public wxSoundFormatBase {
c42b1de6
GL
26public:
27 wxSoundFormatMSAdpcm();
28 ~wxSoundFormatMSAdpcm();
29
30 void SetSampleRate(wxUint32 srate);
31 wxUint32 GetSampleRate() const;
32
33 void SetCoefs(wxInt16 **coefs, wxUint16 ncoefs, wxUint16 coefs_len);
34 void GetCoefs(wxInt16 **&coefs, wxUint16& ncoefs,
35 wxUint16& coefs_len) const;
e8482f24 36
c42b1de6
GL
37 void SetBlockSize(wxUint16 block_size);
38 wxUint16 GetBlockSize() const;
39
40 void SetChannels(wxUint16 channels);
41 wxUint16 GetChannels() const;
42
43 wxSoundFormatType GetType() const { return wxSOUND_MSADPCM; }
44 wxSoundFormatBase *Clone() const;
45
46 wxUint32 GetTimeFromBytes(wxUint32 bytes) const;
47 wxUint32 GetBytesFromTime(wxUint32 time) const;
48
49 bool operator !=(const wxSoundFormatBase& frmt2) const;
e8482f24 50
c42b1de6
GL
51protected:
52 wxUint32 m_srate, m_nchannels;
53 wxInt16 **m_coefs;
54 wxUint16 m_ncoefs, m_coefs_len;
55 wxUint16 m_block_size;
e8482f24
GL
56};
57
58//
59// MS ADPCM converter class
60//
61class WXDLLEXPORT wxSoundRouterStream;
c42b1de6 62class WXDLLEXPORT wxSoundStreamMSAdpcm: public wxSoundStreamCodec {
e8482f24 63public:
c42b1de6
GL
64 wxSoundStreamMSAdpcm(wxSoundStream& sndio);
65 ~wxSoundStreamMSAdpcm();
e8482f24
GL
66
67 wxSoundStream& Read(void *buffer, wxUint32 len);
68 wxSoundStream& Write(const void *buffer, wxUint32 len);
69
70 bool SetSoundFormat(const wxSoundFormatBase& format);
71
72 wxUint32 GetBestSize() const;
73
74protected:
75 wxSoundRouterStream *m_router;
c42b1de6
GL
76
77 typedef struct {
78 wxInt32 predictor;
79 wxInt16 samp1;
80 wxInt16 samp2;
81 wxInt16 coeff[2];
82 wxInt32 iDelta;
83 } AdpcmState;
84
85 AdpcmState m_state[1];
86
87 bool m_got_header;
88 bool m_stereo;
89 wxInt16 **m_coefs;
90 wxUint16 m_block_size;
91 wxUint16 m_ncoefs;
92 wxUint16 m_next_block;
93
94protected:
95 wxUint32 DecodeMonoADPCM(const void *in_buffer, void *out_buffer,
96 wxUint32 in_len);
97 wxUint32 DecodeStereoADPCM(const void *in_buffer, void *out_buffer,
98 wxUint32 in_len);
99 void Nibble(wxInt8 nyb,
100 AdpcmState *state,
101 wxInt16 **out_buffer);
e8482f24
GL
102};
103
104#endif