]>
git.saurik.com Git - wxWidgets.git/blob - utils/wxMMedia2/lib/sndcodec.cpp
1 // --------------------------------------------------------------------------
5 // Author: Guilhem Lavaux <lavaux@easynet.fr> (C) 1999
7 // --------------------------------------------------------------------------
9 #pragma implementation "sndcodec.cpp"
12 #include <wx/wxprec.h>
16 wxSoundStreamCodec::wxSoundStreamCodec(wxSoundStream
& snd_io
)
21 wxSoundStreamCodec::~wxSoundStreamCodec()
25 bool wxSoundStreamCodec::StartProduction(int evt
)
27 return m_sndio
->StartProduction(evt
);
30 bool wxSoundStreamCodec::StopProduction()
32 return m_sndio
->StopProduction();
35 void wxSoundStreamCodec::SetDuplexMode(bool duplex
)
37 m_sndio
->SetDuplexMode(duplex
);