Additional unit test reliability improvements. (#905)

* Additional test change.

* Try reverting some changes to see if we can find root cause.
v2.0-dev
Mooneer Salem 2025-06-01 00:30:00 -07:00 committed by GitHub
parent 150b2cde7d
commit 2fcc6aa379
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 2 deletions

View File

@ -46,7 +46,7 @@ thread_local int MacAudioDevice::CurrentCoreAudioId_ = 0;
constexpr static double kOneNanosecond = 1.0e9;
// The I/O interval time in seconds.
constexpr static double AUDIO_SAMPLE_BLOCK_SEC = 0.020;
constexpr static double AUDIO_SAMPLE_BLOCK_SEC = 0.010;
static OSStatus GetIOBufferFrameSizeRange(AudioObjectID inDeviceID,
UInt32* outMinimum,

View File

@ -86,7 +86,6 @@ void AudioPipeline::appendPipelineStep(std::shared_ptr<IPipelineStep> pipelineSt
pipelineSteps_.push_back(pipelineStep);
resamplers_.resize(pipelineSteps_.size(), nullptr); // will be updated by reloadResampler_() below.
reloadResampler_(pipelineSteps_.size() - 1);
reloadResultResampler_();
}
void AudioPipeline::reloadResampler_(int index)