1 ////////////////////////////////////////////////////////////////////////////////
4 // Author: Guilhem Lavaux
6 // Updated: December 1998
7 // Copyright: (C) 1997, 1998, Guilhem Lavaux
8 // License: wxWindows license
9 ////////////////////////////////////////////////////////////////////////////////
17 #include <wx/object.h>
18 #include <wx/stream.h>
22 // Standard Microsoft types (why change ?)
23 #define WXSOUND_PCM 0x0001
24 #define WXSOUND_ADPCM 0x0002
25 #define WXSOUND_ALAW 0x0006
26 #define WXSOUND_ULAW 0x0007
29 class wxSoundDataFormat
{
32 wxSoundDataFormat(const wxSoundDataFormat
& format
);
35 void SetSampleRate(int srate
) { m_srate
= srate
; }
36 void SetChannels(int channels
);
37 void SetStereo(bool on
);
38 void SetCodecNo(int no
);
39 void SetCodecCreate(bool create
) { m_codcreate
= create
; }
41 int GetSampleRate() const { return m_srate
; }
42 int GetChannels() const { return m_channels
; }
43 bool GetStereo() const { return (m_channels
== 2); }
44 int GetCodecNo() const { return m_codno
; }
46 wxSoundCodec
*GetCodec();
48 wxSoundDataFormat
& operator =(const wxSoundDataFormat
& format
);
49 bool operator ==(const wxSoundDataFormat
& format
) const;
50 bool operator !=(const wxSoundDataFormat
& format
) const
51 { return !(operator ==(format
)); }
54 void SetByteOrder(int order
);
55 void SetSign(int sign
);
56 int GetByteOrder() const { return m_byteorder
; }
57 int GetSign() const { return m_sign
; }
60 int GetBps() const { return m_bps
; }
66 int m_srate
, m_bps
, m_channels
, m_codno
;
67 int m_byteorder
, m_sign
;
68 bool m_codchange
, m_codcreate
;
69 wxSoundCodec
*m_codec
;
72 class wxSoundCodec
: public wxObject
, public wxStreamBase
{
73 DECLARE_ABSTRACT_CLASS(wxSoundCodec
)
82 virtual ~wxSoundCodec();
84 void SetIOBuffer(wxSndBuffer
*sndbuf
) { m_io_sndbuf
= sndbuf
; }
87 void InitIO(const wxSoundDataFormat
& format
);
88 virtual void InitWith(const wxSoundDataFormat
& format
) {}
90 inline void SetInStream(wxStreamBuffer
*s
)
92 inline void SetOutStream(wxStreamBuffer
*s
)
94 inline wxStreamBuffer
*GetInStream() const { return m_in_sound
; }
95 inline wxStreamBuffer
*GetOutStream() const { return m_out_sound
; }
97 inline bool StreamOk() const
98 { return (m_in_sound
->Stream()->LastError() == wxStream_NOERROR
) &&
99 (m_out_sound
->Stream()->LastError() == wxStream_NOERROR
); }
101 virtual size_t GetByteRate() const = 0;
102 virtual wxSoundDataFormat
GetPreferredFormat(int codec
= 0) const = 0;
104 virtual void InitMode(ModeType mode
);
105 virtual void ExitMode();
106 virtual void Decode() = 0;
107 virtual void Encode() = 0;
109 static wxSoundCodec
*Get(int no
);
114 unsigned short Convert8_16(unsigned char s
) { return (s
& 0xff) << 8; }
115 unsigned char Convert16_8(unsigned short s
) { return (s
& 0xff00) >> 8; }
117 bool ChainCodecBefore(wxSoundDataFormat
& cod_to
);
118 bool ChainCodecAfter(wxSoundDataFormat
& cod_to
);
123 size_t OnSysWrite(const void *buffer
, size_t bsize
);
124 size_t OnSysRead(void *buffer
, size_t bsize
);
127 wxSndBuffer
*m_io_sndbuf
;
128 wxSoundDataFormat m_io_format
;
129 wxStreamBuffer
*m_in_sound
, *m_out_sound
;
130 wxSoundCodec
*m_chain_codec
;
131 bool m_init
, m_chain_before
;