Added utils/Makefile.in for utils makefiles

Changed some name in wxMMedia2


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3385 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Guilhem Lavaux
1999-08-15 10:15:05 +00:00
parent a3736ef475
commit 622e48cbd2
9 changed files with 25 additions and 14 deletions

View File

@@ -46,12 +46,12 @@ wxSoundFormatBase *wxSoundFormatUlaw::Clone() const
return ulaw;
}
wxUint32 wxSoundFormatUlaw::GetTimeFromByte(wxUint32 bytes) const
wxUint32 wxSoundFormatUlaw::GetTimeFromBytes(wxUint32 bytes) const
{
return (bytes / m_srate);
}
wxUint32 wxSoundFormatUlaw::GetByteFromTime(wxUint32 time) const
wxUint32 wxSoundFormatUlaw::GetBytesFromTime(wxUint32 time) const
{
return time * m_srate;
}