Additional unit test reliability improvements. (#905)
* Additional test change. * Try reverting some changes to see if we can find root cause.v2.0-dev
parent
150b2cde7d
commit
2fcc6aa379
|
@ -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,
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue