X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e8482f24cfc00645607f8526fde38d39e0dcaa63..822e690b221486b63895b5f14a7fbee2bc966fe5:/contrib/src/mmedia/sndulaw.cpp diff --git a/contrib/src/mmedia/sndulaw.cpp b/contrib/src/mmedia/sndulaw.cpp index 3ad9e5174a..8898291ad0 100644 --- a/contrib/src/mmedia/sndulaw.cpp +++ b/contrib/src/mmedia/sndulaw.cpp @@ -82,7 +82,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 +160,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 +177,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; }