// Date: 08/11/1999
// Author: Guilhem Lavaux <lavaux@easynet.fr> (C) 1999, 2000
// CVSID: $Id$
+// wxWindows licence
// --------------------------------------------------------------------------
-#ifdef __GNUG__
-#pragma implementation "sndoss.cpp"
-#endif
// --------------------------------------------------------------------------
// System dependent headers
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);