msg711.acm: Remove unused function.

This commit is contained in:
Andrew Talbot 2007-01-11 12:26:48 +00:00 committed by Alexandre Julliard
parent 0678c87b3b
commit 0780575d51
1 changed files with 0 additions and 11 deletions

View File

@ -981,17 +981,6 @@ static LRESULT G711_StreamClose(PACMDRVSTREAMINSTANCE adsi)
return MMSYSERR_NOERROR;
}
/***********************************************************************
* G711_round
*
*/
static inline DWORD G711_round(DWORD a, DWORD b, DWORD c)
{
assert(a && b && c);
/* to be sure, always return an entire number of c... */
return ((double)a * (double)b + (double)c - 1) / (double)c;
}
/***********************************************************************
* G711_StreamSize
*