]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/src/mmedia/sndcpcm.cpp
corrected version number extraction
[wxWidgets.git] / contrib / src / mmedia / sndcpcm.cpp
index 3e922ba39261f1c0f05fd228946822ef7f0f5539..9f4e56c0f0217c2def07834c1507b4845b472606 100644 (file)
@@ -4,6 +4,7 @@
 // Date: 08/11/1999
 // Author: Guilhem Lavaux <lavaux@easynet.fr> (C) 1999, 2000
 // CVSID: $Id$
 // Date: 08/11/1999
 // Author: Guilhem Lavaux <lavaux@easynet.fr> (C) 1999, 2000
 // CVSID: $Id$
+// wxWindows licence
 // --------------------------------------------------------------------------
 #ifdef __GNUG__
 #pragma implementation "sndcpcm.cpp"
 // --------------------------------------------------------------------------
 #ifdef __GNUG__
 #pragma implementation "sndcpcm.cpp"
@@ -279,11 +280,11 @@ bool wxSoundStreamPcm::SetSoundFormat(const wxSoundFormatBase& format)
     if (m_sndio->SetSoundFormat(format)) {
         m_function_out = NULL;
         m_function_in = NULL;
     if (m_sndio->SetSoundFormat(format)) {
         m_function_out = NULL;
         m_function_in = NULL;
-        return TRUE;
+        return true;
     }
     if (format.GetType() != wxSOUND_PCM) {
         m_snderror = wxSOUND_INVFRMT;
     }
     if (format.GetType() != wxSOUND_PCM) {
         m_snderror = wxSOUND_INVFRMT;
-        return FALSE;
+        return false;
     }
     if (m_sndformat)
         delete m_sndformat;
     }
     if (m_sndformat)
         delete m_sndformat;
@@ -300,11 +301,11 @@ bool wxSoundStreamPcm::SetSoundFormat(const wxSoundFormatBase& format)
 
         src_rate = pcm_format->GetSampleRate();
         dst_rate = pcm_format2->GetSampleRate();
 
         src_rate = pcm_format->GetSampleRate();
         dst_rate = pcm_format2->GetSampleRate();
-        m_needResampling = TRUE;
+        m_needResampling = true;
         if (src_rate < dst_rate)
         if (src_rate < dst_rate)
-            m_expandSamples = TRUE;
+            m_expandSamples = true;
         else
         else
-            m_expandSamples = FALSE;
+            m_expandSamples = false;
         m_pitch = (src_rate << FLOATBITS) / dst_rate;
     }
 #endif
         m_pitch = (src_rate << FLOATBITS) / dst_rate;
     }
 #endif
@@ -327,7 +328,7 @@ bool wxSoundStreamPcm::SetSoundFormat(const wxSoundFormatBase& format)
             break;
         default:
             // TODO: Add something here: error, log, ...
             break;
         default:
             // TODO: Add something here: error, log, ...
-            return FALSE;
+            return false;
     }
     switch (pcm_format2->GetBPS()) {
         case 8:
     }
     switch (pcm_format2->GetBPS()) {
         case 8:
@@ -338,7 +339,7 @@ bool wxSoundStreamPcm::SetSoundFormat(const wxSoundFormatBase& format)
             break;
         default:
             // TODO: Add something here: error, log, ...
             break;
         default:
             // TODO: Add something here: error, log, ...
-            return FALSE;
+            return false;
     }
     
     if (pcm_format2->Signed() != pcm_format->Signed())
     }
     
     if (pcm_format2->Signed() != pcm_format->Signed())
@@ -399,7 +400,7 @@ bool wxSoundStreamPcm::SetSoundFormat(const wxSoundFormatBase& format)
     wxUnusedVar( SetSoundFormatReturn );
     
     m_sndformat = new_format;
     wxUnusedVar( SetSoundFormatReturn );
     
     m_sndformat = new_format;
-    return TRUE;
+    return true;
 }
 
 wxUint32 wxSoundStreamPcm::GetWriteSize(wxUint32 len) const
 }
 
 wxUint32 wxSoundStreamPcm::GetWriteSize(wxUint32 len) const