]>
Commit | Line | Data |
---|---|---|
e8482f24 GL |
1 | // -------------------------------------------------------------------------- |
2 | // Name: sndcodec.h | |
3 | // Purpose: | |
4 | // Date: 08/11/1999 | |
5 | // Author: Guilhem Lavaux <lavaux@easynet.fr> (C) 1999 | |
6 | // CVSID: $Id$ | |
7 | // -------------------------------------------------------------------------- | |
8 | #ifndef _WX_SNDCODEC_H | |
9 | #define _WX_SNDCODEC_H | |
10 | ||
11 | #ifdef __GNUG__ | |
12 | #pragma interface "sndcodec.h" | |
13 | #endif | |
14 | ||
15 | #include "wx/defs.h" | |
15e8daec | 16 | #include "wx/mmedia/defs.h" |
e8482f24 GL |
17 | #include "wx/mmedia/sndbase.h" |
18 | ||
15e8daec | 19 | class WXDLLIMPEXP_MMEDIA wxSoundStreamCodec: public wxSoundStream { |
e8482f24 GL |
20 | public: |
21 | wxSoundStreamCodec(wxSoundStream& snd_io); | |
22 | ~wxSoundStreamCodec(); | |
23 | ||
24 | bool StartProduction(int evt); | |
25 | bool StopProduction(); | |
26 | ||
27 | wxUint32 GetBestSize() const; | |
28 | ||
29 | protected: | |
30 | wxSoundStream *m_sndio; | |
31 | }; | |
32 | ||
33 | #endif |