X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e8482f24cfc00645607f8526fde38d39e0dcaa63..6f0344c7ff90ee54cc03a9df0f6d9f8e1f6b4897:/contrib/src/mmedia/sndulaw.cpp diff --git a/contrib/src/mmedia/sndulaw.cpp b/contrib/src/mmedia/sndulaw.cpp index 3ad9e5174a..0c7550cc4c 100644 --- a/contrib/src/mmedia/sndulaw.cpp +++ b/contrib/src/mmedia/sndulaw.cpp @@ -4,6 +4,7 @@ // Date: 08/11/1999 // Author: Guilhem Lavaux (C) 1999 // CVSID: $Id$ +// wxWindows licence // -------------------------------------------------------------------------- #ifdef __GNUG__ #pragma implementation "sndulaw.cpp" @@ -82,7 +83,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 +161,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 +178,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; }