56dc1ffd50
Fixed wxStreamBuffer to support features of wxMemoryOutputStream wxMMedia2 updates (various fixes) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4406 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
54 lines
1.1 KiB
C++
54 lines
1.1 KiB
C++
// --------------------------------------------------------------------------
|
|
// Name: sndesd.h
|
|
// Purpose:
|
|
// Date: 08/11/1999
|
|
// Author: Guilhem Lavaux <lavaux@easynet.fr> (C) 1999
|
|
// CVSID: $Id$
|
|
// --------------------------------------------------------------------------
|
|
#ifndef _WX_SNDESD_H
|
|
#define _WX_SNDESD_H
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface "sndesd.h"
|
|
#endif
|
|
|
|
#include <wx/string.h>
|
|
#include "sndbase.h"
|
|
#include "sndpcm.h"
|
|
|
|
//
|
|
// ESD output class
|
|
//
|
|
|
|
class wxSoundStreamESD : public wxSoundStream {
|
|
public:
|
|
wxSoundStreamESD(const wxString& hostname = _T("localhost"));
|
|
~wxSoundStreamESD();
|
|
|
|
wxSoundStream& Read(void *buffer, wxUint32 len);
|
|
wxSoundStream& Write(const void *buffer, wxUint32 len);
|
|
|
|
bool SetSoundFormat(const wxSoundFormatBase& format);
|
|
|
|
bool StartProduction(int evt);
|
|
bool StopProduction();
|
|
|
|
void SetDuplexMode(bool duplex) {}
|
|
|
|
// You should not call this.
|
|
void WakeUpEvt(int evt);
|
|
|
|
bool QueueFilled() const { return m_q_filled; }
|
|
protected:
|
|
int m_fd;
|
|
int m_tag;
|
|
bool m_esd_stop;
|
|
wxString m_hostname;
|
|
bool m_q_filled;
|
|
|
|
private:
|
|
void DetectBest(wxSoundFormatPcm *pcm);
|
|
};
|
|
|
|
#endif
|