fix for m-audio ASIO driver
This commit is contained in:
parent
3b4eb7f605
commit
e1b949e318
2 changed files with 64 additions and 40 deletions
|
@ -7,6 +7,8 @@
|
||||||
|
|
||||||
- improvement of network buffer (jitter buffer) in case of small buffer sizes
|
- improvement of network buffer (jitter buffer) in case of small buffer sizes
|
||||||
|
|
||||||
|
- bug fix for M-Audio Delta ASIO driver
|
||||||
|
|
||||||
|
|
||||||
3.0.3
|
3.0.3
|
||||||
|
|
||||||
|
|
|
@ -337,7 +337,18 @@ int CSound::GetActualBufferSize ( const int iDesiredBufferSizeMono )
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
// General case ------------------------------------------------
|
if ( HWBufferInfo.lGranularity <= 0 )
|
||||||
|
{
|
||||||
|
// Special case (seen for EMU audio cards): granularity is
|
||||||
|
// zero or less than zero.
|
||||||
|
// There is no definition of this case in the ASIO SDK
|
||||||
|
// document. We assume here that all buffer sizes in between
|
||||||
|
// minimum and maximum buffer sizes are allowed.
|
||||||
|
iActualBufferSizeMono = iDesiredBufferSizeMono;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// General case --------------------------------------------
|
||||||
// initialization
|
// initialization
|
||||||
int iTrialBufSize = HWBufferInfo.lMinSize;
|
int iTrialBufSize = HWBufferInfo.lMinSize;
|
||||||
int iLastTrialBufSize = HWBufferInfo.lMinSize;
|
int iLastTrialBufSize = HWBufferInfo.lMinSize;
|
||||||
|
@ -365,7 +376,8 @@ int CSound::GetActualBufferSize ( const int iDesiredBufferSizeMono )
|
||||||
// store old trial buffer size
|
// store old trial buffer size
|
||||||
iLastTrialBufSize = iTrialBufSize;
|
iLastTrialBufSize = iTrialBufSize;
|
||||||
|
|
||||||
// increment trial buffer size (check for special case first)
|
// increment trial buffer size (check for special
|
||||||
|
// case first)
|
||||||
if ( HWBufferInfo.lGranularity == -1 )
|
if ( HWBufferInfo.lGranularity == -1 )
|
||||||
{
|
{
|
||||||
// special case: buffer sizes are a power of 2
|
// special case: buffer sizes are a power of 2
|
||||||
|
@ -378,11 +390,21 @@ int CSound::GetActualBufferSize ( const int iDesiredBufferSizeMono )
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// clip trial buffer size (it may happen in the while
|
||||||
|
// routine that "iTrialBufSize" is larger than "lMaxSize" in
|
||||||
|
// case "lMaxSize - lMinSize" is not divisible by the
|
||||||
|
// granularity)
|
||||||
|
if ( iTrialBufSize > HWBufferInfo.lMaxSize )
|
||||||
|
{
|
||||||
|
iTrialBufSize = HWBufferInfo.lMaxSize;
|
||||||
|
}
|
||||||
|
|
||||||
// set ASIO buffer size
|
// set ASIO buffer size
|
||||||
iActualBufferSizeMono = iTrialBufSize;
|
iActualBufferSizeMono = iTrialBufSize;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return iActualBufferSizeMono;
|
return iActualBufferSizeMono;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue