]>
git.saurik.com Git - wxWidgets.git/blob - utils/wxMMedia2/lib/sndwav.h
1 // --------------------------------------------------------------------------
5 // Author: Guilhem Lavaux <lavaux@easynet.fr> (C) 1999
7 // --------------------------------------------------------------------------
12 #pragma interface "sndwav.h"
16 #include <wx/stream.h>
17 #include <wx/datstrm.h>
26 class wxSoundWave
: public wxSoundFileStream
{
28 wxSoundWave(wxInputStream
& stream
, wxSoundStream
& io_sound
);
29 wxSoundWave(wxOutputStream
& stream
, wxSoundStream
& io_sound
);
33 wxString
GetCodecName() const;
37 bool PrepareToRecord(unsigned long time
);
38 bool FinishRecording();
40 wxUint32
GetData(void *buffer
, wxUint32 len
);
41 wxUint32
PutData(const void *buffer
, wxUint32 len
);
43 bool HandleOutputPCM(wxDataInputStream
& data
, wxUint16 channels
,
44 wxUint32 sample_fq
, wxUint32 byte_p_sec
,
45 wxUint16 byte_p_spl
, wxUint16 bits_p_spl
);
46 bool HandleOutputG721(wxDataInputStream
& data
, wxUint16 channels
,
47 wxUint32 sample_fq
, wxUint32 byte_p_sec
,
48 wxUint16 byte_p_spl
, wxUint16 bits_p_spl
);
49 wxSoundFormatBase
*HandleInputPCM(wxDataOutputStream
& data
);
50 wxSoundFormatBase
*HandleInputG72X(wxDataOutputStream
& data
);