]>
git.saurik.com Git - wxWidgets.git/blob - contrib/src/mmedia/sndcodec.cpp
1 // --------------------------------------------------------------------------
5 // Author: Guilhem Lavaux <lavaux@easynet.fr> (C) 1999
8 // --------------------------------------------------------------------------
10 #include "wx/wxprec.h"
20 #include "wx/mmedia/sndbase.h"
21 #include "wx/mmedia/sndcodec.h"
23 wxSoundStreamCodec::wxSoundStreamCodec(wxSoundStream
& snd_io
)
28 wxSoundStreamCodec::~wxSoundStreamCodec()
32 bool wxSoundStreamCodec::StartProduction(int evt
)
34 return m_sndio
->StartProduction(evt
);
37 bool wxSoundStreamCodec::StopProduction()
39 return m_sndio
->StopProduction();
42 wxUint32
wxSoundStreamCodec::GetBestSize() const
44 return m_sndio
->GetBestSize();