msadp32.acm: Remove unused function.

This commit is contained in:
Andrew Talbot 2007-01-11 12:25:54 +00:00 committed by Alexandre Julliard
parent 0780575d51
commit 934c489956
1 changed files with 0 additions and 11 deletions

View File

@ -612,17 +612,6 @@ static LRESULT ADPCM_StreamClose(PACMDRVSTREAMINSTANCE adsi)
return MMSYSERR_NOERROR;
}
/***********************************************************************
* ADPCM_round
*
*/
static inline DWORD ADPCM_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;
}
/***********************************************************************
* ADPCM_StreamSize
*