return;
#else
wxSoundFormatPcm pcm_default;
-
+
// First, we make some basic test: is there ESD on this computer ?
m_esd_ok = false;
-
+
if (hostname.IsNull())
- m_fd_output = esd_play_stream(ESD_PLAY | ESD_STREAM, 22050,
+ m_fd_output = esd_play_stream(ESD_PLAY | ESD_STREAM, 22050,
hostname.mb_str(), MY_ESD_NAME);
else
- m_fd_output = esd_play_stream(ESD_PLAY | ESD_STREAM, 22050,
+ m_fd_output = esd_play_stream(ESD_PLAY | ESD_STREAM, 22050,
NULL, MY_ESD_NAME);
if (m_fd_output == -1) {
// Answer: no. We return with an error.
m_snderror = wxSOUND_INVDEV;
return;
}
-
+
// Close this unuseful stream.
esd_close(m_fd_output);
-
+
m_hostname = hostname;
-
+
// Set the default audio format
SetSoundFormat(pcm_default);
-
+
// Initialize some variable
m_snderror = wxSOUND_NOERROR;
m_esd_stop = true;
return *this;
#else
int ret;
-
+
if (m_esd_stop) {
m_snderror = wxSOUND_NOTSTARTED;
return *this;
}
-
- m_lastcount = (wxUint32)ret = read(m_fd_input, buffer, len);
-
+
+ ret = read(m_fd_input, buffer, len);
+ m_lastcount = (wxUint32)ret;
+
if (ret < 0)
m_snderror = wxSOUND_IOERROR;
else
m_snderror = wxSOUND_NOERROR;
-
+
return *this;
#endif // defined HAVE_ESD_H
}
m_snderror = wxSOUND_NOTSTARTED;
return *this;
}
-
- m_lastcount = (wxUint32)ret = write(m_fd_output, buffer, len);
-
+
+ ret = write(m_fd_output, buffer, len);
+ m_lastcount = (wxUint32)ret;
+
if (ret < 0)
m_snderror = wxSOUND_IOERROR;
else
m_snderror = wxSOUND_NOERROR;
-
+
m_q_filled = true;
-
+
return *this;
#endif // defined HAVE_ESD_H
}
return false;
#else
wxSoundFormatPcm *pcm_format;
-
+
if (format.GetType() != wxSOUND_PCM) {
m_snderror = wxSOUND_INVFRMT;
return false;
m_snderror = wxSOUND_INVDEV;
return false;
}
-
+
if (m_sndformat)
delete m_sndformat;
-
+
m_sndformat = format.Clone();
if (!m_sndformat) {
m_snderror = wxSOUND_MEMERROR;
return false;
}
pcm_format = (wxSoundFormatPcm *)m_sndformat;
-
+
// Detect the best format
DetectBest(pcm_format);
-
+
m_snderror = wxSOUND_NOERROR;
if (*pcm_format != format) {
m_snderror = wxSOUND_NOEXACT;
GdkInputCondition condition)
{
wxSoundStreamESD *esd = (wxSoundStreamESD *)data;
-
+
switch (condition) {
case GDK_INPUT_READ:
esd->WakeUpEvt(wxSOUND_INPUT);
m_snderror = wxSOUND_INVDEV;
return false;
}
-
+
if (!m_esd_stop)
StopProduction();
-
+
pcm = (wxSoundFormatPcm *)m_sndformat;
-
+
flag |= (pcm->GetBPS() == 16) ? ESD_BITS16 : ESD_BITS8;
flag |= (pcm->GetChannels() == 2) ? ESD_STEREO : ESD_MONO;
-
+
if ((evt & wxSOUND_OUTPUT) != 0) {
flag |= ESD_PLAY | ESD_STREAM;
m_fd_output = esd_play_stream(flag, pcm->GetSampleRate(), NULL,
MY_ESD_NAME);
- }
-
+ }
+
if ((evt & wxSOUND_INPUT) != 0) {
flag |= ESD_RECORD | ESD_STREAM;
m_fd_input = esd_record_stream(flag, pcm->GetSampleRate(), NULL,
MY_ESD_NAME);
}
-
+
#ifdef __WXGTK__
if ((evt & wxSOUND_OUTPUT) != 0) {
m_tag_output = gdk_input_add(m_fd_output, GDK_INPUT_WRITE,
_wxSound_OSS_CBack, (gpointer)this);
}
#endif
-
+
m_esd_stop = false;
m_q_filled = false;
-
+
return true;
#endif // defined HAVE_ESD_H
}
#else
if (m_esd_stop)
return false;
-
+
if (m_fd_input != -1) {
esd_close(m_fd_input);
#ifdef __WXGTK__
gdk_input_remove(m_tag_output);
#endif
}
-
+
m_fd_input = -1;
m_fd_output= -1;
m_esd_stop = true;
// We change neither the number of channels nor the sample rate
// because ESD is clever.
-
+
best_pcm.SetSampleRate(pcm->GetSampleRate());
best_pcm.SetChannels(pcm->GetChannels());
-
+
// It supports 16 bits
if (pcm->GetBPS() >= 16)
best_pcm.SetBPS(16);
best_pcm.SetOrder(wxLITTLE_ENDIAN);
best_pcm.Signed(true);
-
+
// Finally recopy the new format
*pcm = best_pcm;
#endif // defined HAVE_ESD_H
wxSoundStreamOSS::wxSoundStreamOSS(const wxString& dev_name)
{
wxSoundFormatPcm pcm_default;
-
+
// Open the OSS device
m_fd = open(dev_name.mb_str(), O_WRONLY);
if (m_fd == -1) {
// Get the default best size for OSS
ioctl(m_fd, SNDCTL_DSP_GETBLKSIZE, &m_bufsize);
-
+
m_snderror = wxSOUND_NOERROR;
// Close OSS
close(m_fd);
-
+
m_oss_ok = true;
m_oss_stop = true;
m_q_filled = true;
m_lastcount = 0;
return *this;
}
-
- m_lastcount = (wxUint32)ret = read(m_fd, buffer, len);
+
+ ret = read(m_fd, buffer, len);
+ m_lastcount = (wxUint32)ret;
m_q_filled = true;
-
+
if (ret < 0)
m_snderror = wxSOUND_IOERROR;
else
m_snderror = wxSOUND_NOERROR;
-
+
return *this;
}
ret = write(m_fd, buffer, len);
m_q_filled = true;
-
+
if (ret < 0) {
m_lastcount = 0;
m_snderror = wxSOUND_IOERROR;
m_snderror = wxSOUND_NOERROR;
m_lastcount = (wxUint32)ret;
}
-
+
return *this;
}
{
int tmp;
wxSoundFormatPcm *pcm_format;
-
+
if (format.GetType() != wxSOUND_PCM) {
m_snderror = wxSOUND_INVFRMT;
return false;
}
-
+
if (!m_oss_ok) {
m_snderror = wxSOUND_INVDEV;
return false;
}
-
+
if (m_sndformat)
delete m_sndformat;
-
+
m_sndformat = format.Clone();
if (!m_sndformat) {
m_snderror = wxSOUND_MEMERROR;
return false;
}
}
-
+
// Set the sample rate field.
tmp = pcm_format->GetSampleRate();
ioctl(m_fd, SNDCTL_DSP_SPEED, &tmp);
-
+
pcm_format->SetSampleRate(tmp);
-
+
// Detect the best format
DetectBest(pcm_format);
// Try to apply it
SetupFormat(pcm_format);
-
+
tmp = pcm_format->GetChannels();
ioctl(m_fd, SNDCTL_DSP_CHANNELS, &tmp);
pcm_format->SetChannels(tmp);
// Close the OSS device
if (m_oss_stop)
close(m_fd);
-
+
m_snderror = wxSOUND_NOERROR;
if (*pcm_format != format) {
m_snderror = wxSOUND_NOEXACT;
bool wxSoundStreamOSS::SetupFormat(wxSoundFormatPcm *pcm_format)
{
int tmp;
-
+
switch(pcm_format->GetBPS()) {
case 8:
if (pcm_format->Signed())
}
break;
}
-
+
ioctl(m_fd, SNDCTL_DSP_SETFMT, &tmp);
-
+
// Demangling.
switch (tmp) {
case AFMT_U8:
GdkInputCondition condition)
{
wxSoundStreamOSS *oss = (wxSoundStreamOSS *)data;
-
+
switch (condition) {
case GDK_INPUT_READ:
oss->WakeUpEvt(wxSOUND_INPUT);
bool wxSoundStreamOSS::StartProduction(int evt)
{
wxSoundFormatBase *old_frmt;
-
+
if (!m_oss_stop)
StopProduction();
-
+
old_frmt = m_sndformat->Clone();
if (!old_frmt) {
m_snderror = wxSOUND_MEMERROR;
return false;
}
-
+
if (evt == wxSOUND_OUTPUT)
m_fd = open(m_devname.mb_str(), O_WRONLY);
else if (evt == wxSOUND_INPUT)
m_fd = open(m_devname.mb_str(), O_RDONLY);
-
+
if (m_fd == -1) {
m_snderror = wxSOUND_INVDEV;
return false;
}
-
+
SetSoundFormat(*old_frmt);
delete old_frmt;
-
+
int trig;
-
+
if (evt == wxSOUND_OUTPUT) {
#ifdef __WXGTK__
m_tag = gdk_input_add(m_fd, GDK_INPUT_WRITE, _wxSound_OSS_CBack, (gpointer)this);