msadp32.acm: Remove unused function.
This commit is contained in:
parent
0780575d51
commit
934c489956
|
@ -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
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue