mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 12:49:45 +00:00
Sounds were cut off due to integer overflow. Fixed.
This commit is contained in:
parent
43c1efdee5
commit
4d713f97e0
@ -1799,9 +1799,9 @@ static DWORD DSOUND_MixInBuffer(IDirectSoundBuffer *dsb)
|
||||
|
||||
len = DSOUND_FRAGLEN; /* The most we will use */
|
||||
if (!(dsb->playflags & DSBPLAY_LOOPING)) {
|
||||
temp = ((primarybuf->wfx.nAvgBytesPerSec * dsb->buflen) /
|
||||
temp = MulDiv32(primarybuf->wfx.nAvgBytesPerSec, dsb->buflen,
|
||||
dsb->nAvgBytesPerSec) -
|
||||
((primarybuf->wfx.nAvgBytesPerSec * dsb->playpos) /
|
||||
MulDiv32(primarybuf->wfx.nAvgBytesPerSec, dsb->playpos,
|
||||
dsb->nAvgBytesPerSec);
|
||||
len = (len > temp) ? temp : len;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user