MME: fix comparison of IO buffer sizes in CalculateBufferSettings() (#571)
Pull in fix from Audacity: https://bugzilla.audacityteam.org/show_bug.cgi?id=1969 The problem was some kind of typo, comparing pointers instead of the values of pointers.
This commit is contained in:
parent
39bfe6c63d
commit
febd58ebba
1 changed files with 1 additions and 1 deletions
|
|
@ -1729,7 +1729,7 @@ static PaError CalculateBufferSettings(
|
|||
|
||||
if( *hostFramesPerOutputBuffer != *hostFramesPerInputBuffer )
|
||||
{
|
||||
if( hostFramesPerInputBuffer < hostFramesPerOutputBuffer )
|
||||
if( *hostFramesPerInputBuffer < *hostFramesPerOutputBuffer )
|
||||
{
|
||||
*hostFramesPerOutputBuffer = *hostFramesPerInputBuffer;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue