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:
@@ -64,12 +64,12 @@ wxSoundFormatBase *wxSoundFormatPcm::Clone() const
|
||||
return new_pcm;
|
||||
}
|
||||
|
||||
wxUint32 wxSoundFormatPcm::GetTimeFromByte(wxUint32 bytes) const
|
||||
wxUint32 wxSoundFormatPcm::GetTimeFromBytes(wxUint32 bytes) const
|
||||
{
|
||||
return (bytes / (m_srate * (m_bps / 8) * m_nchan));
|
||||
}
|
||||
|
||||
wxUint32 wxSoundFormatPcm::GetByteFromTime(wxUint32 time) const
|
||||
wxUint32 wxSoundFormatPcm::GetBytesFromTime(wxUint32 time) const
|
||||
{
|
||||
return (time * (m_srate * (m_bps / 8) * m_nchan));
|
||||
}
|
||||
|
Reference in New Issue
Block a user