imaadp32.acm: Remove unused function.

This commit is contained in:
Andrew Talbot 2007-01-10 15:21:06 +00:00 committed by Alexandre Julliard
parent ca2c987caf
commit 39e6c8c9b6
1 changed files with 0 additions and 11 deletions

View File

@ -769,17 +769,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
*