X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e8482f24cfc00645607f8526fde38d39e0dcaa63..6b62c9ad448635f62b985f89aa7b6959f143099c:/contrib/src/mmedia/sndulaw.cpp?ds=sidebyside diff --git a/contrib/src/mmedia/sndulaw.cpp b/contrib/src/mmedia/sndulaw.cpp index 3ad9e5174a..fd8e731513 100644 --- a/contrib/src/mmedia/sndulaw.cpp +++ b/contrib/src/mmedia/sndulaw.cpp @@ -4,10 +4,8 @@ // Date: 08/11/1999 // Author: Guilhem Lavaux (C) 1999 // CVSID: $Id$ +// wxWindows licence // -------------------------------------------------------------------------- -#ifdef __GNUG__ -#pragma implementation "sndulaw.cpp" -#endif #include "wx/wxprec.h" @@ -82,7 +80,7 @@ bool wxSoundFormatUlaw::operator !=(const wxSoundFormatBase& frmt2) const wxSoundFormatUlaw *ulaw = (wxSoundFormatUlaw *)&frmt2; if (frmt2.GetType() != wxSOUND_ULAW) - return TRUE; + return true; return (ulaw->m_srate != m_srate); } @@ -160,11 +158,12 @@ bool wxSoundStreamUlaw::SetSoundFormat(const wxSoundFormatBase& format) { if (format.GetType() != wxSOUND_ULAW) { m_snderror = wxSOUND_INVFRMT; - return FALSE; + return false; } - // As the codec only support 16 bits, Mono we must use a wxSoundRouter to filter the data and - // to translate them to a format supported by the sound card. + // As the codec only support 16 bits, Mono we must use a wxSoundRouter + // to filter the data and to translate them to a format supported + // by the sound card. wxSoundFormatPcm pcm; wxSoundFormatUlaw *ulaw; @@ -176,10 +175,10 @@ bool wxSoundStreamUlaw::SetSoundFormat(const wxSoundFormatBase& format) pcm.SetSampleRate(ulaw->GetSampleRate()); pcm.SetBPS(16); pcm.SetChannels(ulaw->GetChannels()); - pcm.Signed(TRUE); + pcm.Signed(true); pcm.SetOrder(wxBYTE_ORDER); m_router->SetSoundFormat(pcm); - return TRUE; + return true; }