git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29144
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
return;
#else
wxSoundFormatPcm pcm_default;
return;
#else
wxSoundFormatPcm pcm_default;
// First, we make some basic test: is there ESD on this computer ?
m_esd_ok = false;
// First, we make some basic test: is there ESD on this computer ?
m_esd_ok = false;
- 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
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;
}
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);
// Close this unuseful stream.
esd_close(m_fd_output);
// Set the default audio format
SetSoundFormat(pcm_default);
// Set the default audio format
SetSoundFormat(pcm_default);
// Initialize some variable
m_snderror = wxSOUND_NOERROR;
m_esd_stop = true;
// Initialize some variable
m_snderror = wxSOUND_NOERROR;
m_esd_stop = true;
return *this;
#else
int ret;
return *this;
#else
int ret;
if (m_esd_stop) {
m_snderror = wxSOUND_NOTSTARTED;
return *this;
}
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;
if (ret < 0)
m_snderror = wxSOUND_IOERROR;
else
m_snderror = wxSOUND_NOERROR;
return *this;
#endif // defined HAVE_ESD_H
}
return *this;
#endif // defined HAVE_ESD_H
}
m_snderror = wxSOUND_NOTSTARTED;
return *this;
}
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;
if (ret < 0)
m_snderror = wxSOUND_IOERROR;
else
m_snderror = wxSOUND_NOERROR;
return *this;
#endif // defined HAVE_ESD_H
}
return *this;
#endif // defined HAVE_ESD_H
}
return false;
#else
wxSoundFormatPcm *pcm_format;
return false;
#else
wxSoundFormatPcm *pcm_format;
if (format.GetType() != wxSOUND_PCM) {
m_snderror = wxSOUND_INVFRMT;
return false;
if (format.GetType() != wxSOUND_PCM) {
m_snderror = wxSOUND_INVFRMT;
return false;
m_snderror = wxSOUND_INVDEV;
return false;
}
m_snderror = wxSOUND_INVDEV;
return false;
}
if (m_sndformat)
delete m_sndformat;
if (m_sndformat)
delete m_sndformat;
m_sndformat = format.Clone();
if (!m_sndformat) {
m_snderror = wxSOUND_MEMERROR;
return false;
}
pcm_format = (wxSoundFormatPcm *)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);
// Detect the best format
DetectBest(pcm_format);
m_snderror = wxSOUND_NOERROR;
if (*pcm_format != format) {
m_snderror = wxSOUND_NOEXACT;
m_snderror = wxSOUND_NOERROR;
if (*pcm_format != format) {
m_snderror = wxSOUND_NOEXACT;
GdkInputCondition condition)
{
wxSoundStreamESD *esd = (wxSoundStreamESD *)data;
GdkInputCondition condition)
{
wxSoundStreamESD *esd = (wxSoundStreamESD *)data;
switch (condition) {
case GDK_INPUT_READ:
esd->WakeUpEvt(wxSOUND_INPUT);
switch (condition) {
case GDK_INPUT_READ:
esd->WakeUpEvt(wxSOUND_INPUT);
m_snderror = wxSOUND_INVDEV;
return false;
}
m_snderror = wxSOUND_INVDEV;
return false;
}
if (!m_esd_stop)
StopProduction();
if (!m_esd_stop)
StopProduction();
pcm = (wxSoundFormatPcm *)m_sndformat;
pcm = (wxSoundFormatPcm *)m_sndformat;
flag |= (pcm->GetBPS() == 16) ? ESD_BITS16 : ESD_BITS8;
flag |= (pcm->GetChannels() == 2) ? ESD_STEREO : ESD_MONO;
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_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);
}
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,
#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
_wxSound_OSS_CBack, (gpointer)this);
}
#endif
m_esd_stop = false;
m_q_filled = false;
m_esd_stop = false;
m_q_filled = false;
return true;
#endif // defined HAVE_ESD_H
}
return true;
#endif // defined HAVE_ESD_H
}
#else
if (m_esd_stop)
return false;
#else
if (m_esd_stop)
return false;
if (m_fd_input != -1) {
esd_close(m_fd_input);
#ifdef __WXGTK__
if (m_fd_input != -1) {
esd_close(m_fd_input);
#ifdef __WXGTK__
gdk_input_remove(m_tag_output);
#endif
}
gdk_input_remove(m_tag_output);
#endif
}
m_fd_input = -1;
m_fd_output= -1;
m_esd_stop = true;
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.
// 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());
best_pcm.SetSampleRate(pcm->GetSampleRate());
best_pcm.SetChannels(pcm->GetChannels());
// It supports 16 bits
if (pcm->GetBPS() >= 16)
best_pcm.SetBPS(16);
// It supports 16 bits
if (pcm->GetBPS() >= 16)
best_pcm.SetBPS(16);
best_pcm.SetOrder(wxLITTLE_ENDIAN);
best_pcm.Signed(true);
best_pcm.SetOrder(wxLITTLE_ENDIAN);
best_pcm.Signed(true);
// Finally recopy the new format
*pcm = best_pcm;
#endif // defined HAVE_ESD_H
// Finally recopy the new format
*pcm = best_pcm;
#endif // defined HAVE_ESD_H
wxSoundStreamOSS::wxSoundStreamOSS(const wxString& dev_name)
{
wxSoundFormatPcm pcm_default;
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) {
// 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);
// 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_snderror = wxSOUND_NOERROR;
// Close OSS
close(m_fd);
m_oss_ok = true;
m_oss_stop = true;
m_q_filled = true;
m_oss_ok = true;
m_oss_stop = true;
m_q_filled = true;
m_lastcount = 0;
return *this;
}
m_lastcount = 0;
return *this;
}
-
- m_lastcount = (wxUint32)ret = read(m_fd, buffer, len);
+
+ ret = read(m_fd, buffer, len);
+ m_lastcount = (wxUint32)ret;
if (ret < 0)
m_snderror = wxSOUND_IOERROR;
else
m_snderror = wxSOUND_NOERROR;
if (ret < 0)
m_snderror = wxSOUND_IOERROR;
else
m_snderror = wxSOUND_NOERROR;
ret = write(m_fd, buffer, len);
m_q_filled = true;
ret = write(m_fd, buffer, len);
m_q_filled = true;
if (ret < 0) {
m_lastcount = 0;
m_snderror = wxSOUND_IOERROR;
if (ret < 0) {
m_lastcount = 0;
m_snderror = wxSOUND_IOERROR;
m_snderror = wxSOUND_NOERROR;
m_lastcount = (wxUint32)ret;
}
m_snderror = wxSOUND_NOERROR;
m_lastcount = (wxUint32)ret;
}
{
int tmp;
wxSoundFormatPcm *pcm_format;
{
int tmp;
wxSoundFormatPcm *pcm_format;
if (format.GetType() != wxSOUND_PCM) {
m_snderror = wxSOUND_INVFRMT;
return false;
}
if (format.GetType() != wxSOUND_PCM) {
m_snderror = wxSOUND_INVFRMT;
return false;
}
if (!m_oss_ok) {
m_snderror = wxSOUND_INVDEV;
return false;
}
if (!m_oss_ok) {
m_snderror = wxSOUND_INVDEV;
return false;
}
if (m_sndformat)
delete m_sndformat;
if (m_sndformat)
delete m_sndformat;
m_sndformat = format.Clone();
if (!m_sndformat) {
m_snderror = wxSOUND_MEMERROR;
m_sndformat = format.Clone();
if (!m_sndformat) {
m_snderror = wxSOUND_MEMERROR;
// Set the sample rate field.
tmp = pcm_format->GetSampleRate();
ioctl(m_fd, SNDCTL_DSP_SPEED, &tmp);
// Set the sample rate field.
tmp = pcm_format->GetSampleRate();
ioctl(m_fd, SNDCTL_DSP_SPEED, &tmp);
pcm_format->SetSampleRate(tmp);
pcm_format->SetSampleRate(tmp);
// Detect the best format
DetectBest(pcm_format);
// Try to apply it
SetupFormat(pcm_format);
// 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);
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);
// Close the OSS device
if (m_oss_stop)
close(m_fd);
m_snderror = wxSOUND_NOERROR;
if (*pcm_format != format) {
m_snderror = wxSOUND_NOEXACT;
m_snderror = wxSOUND_NOERROR;
if (*pcm_format != format) {
m_snderror = wxSOUND_NOEXACT;
bool wxSoundStreamOSS::SetupFormat(wxSoundFormatPcm *pcm_format)
{
int tmp;
bool wxSoundStreamOSS::SetupFormat(wxSoundFormatPcm *pcm_format)
{
int tmp;
switch(pcm_format->GetBPS()) {
case 8:
if (pcm_format->Signed())
switch(pcm_format->GetBPS()) {
case 8:
if (pcm_format->Signed())
ioctl(m_fd, SNDCTL_DSP_SETFMT, &tmp);
ioctl(m_fd, SNDCTL_DSP_SETFMT, &tmp);
// Demangling.
switch (tmp) {
case AFMT_U8:
// Demangling.
switch (tmp) {
case AFMT_U8:
GdkInputCondition condition)
{
wxSoundStreamOSS *oss = (wxSoundStreamOSS *)data;
GdkInputCondition condition)
{
wxSoundStreamOSS *oss = (wxSoundStreamOSS *)data;
switch (condition) {
case GDK_INPUT_READ:
oss->WakeUpEvt(wxSOUND_INPUT);
switch (condition) {
case GDK_INPUT_READ:
oss->WakeUpEvt(wxSOUND_INPUT);
bool wxSoundStreamOSS::StartProduction(int evt)
{
wxSoundFormatBase *old_frmt;
bool wxSoundStreamOSS::StartProduction(int evt)
{
wxSoundFormatBase *old_frmt;
if (!m_oss_stop)
StopProduction();
if (!m_oss_stop)
StopProduction();
old_frmt = m_sndformat->Clone();
if (!old_frmt) {
m_snderror = wxSOUND_MEMERROR;
return false;
}
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 (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;
}
if (m_fd == -1) {
m_snderror = wxSOUND_INVDEV;
return false;
}
SetSoundFormat(*old_frmt);
delete old_frmt;
SetSoundFormat(*old_frmt);
delete old_frmt;
if (evt == wxSOUND_OUTPUT) {
#ifdef __WXGTK__
m_tag = gdk_input_add(m_fd, GDK_INPUT_WRITE, _wxSound_OSS_CBack, (gpointer)this);
if (evt == wxSOUND_OUTPUT) {
#ifdef __WXGTK__
m_tag = gdk_input_add(m_fd, GDK_INPUT_WRITE, _wxSound_OSS_CBack, (gpointer)this);