We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 327910d commit f31453cCopy full SHA for f31453c
Source/Processors/Synchronizer/Synchronizer.cpp
@@ -218,18 +218,11 @@ void SyncStream::syncWith (const SyncStream* mainStream)
218
{
219
actualSampleRate = estimatedActualSampleRate;
220
221
- if (std::abs (estimatedGlobalStartTime) < 0.1)
222
- {
223
- if (! isSynchronized)
+ if (! isSynchronized)
224
225
226
- globalStartTime = estimatedGlobalStartTime;
227
- isSynchronized = true;
228
- }
229
230
- else
231
232
- //LOGD ("Estimated global start time of ", estimatedGlobalStartTime, " is out of bounds. Ignoring.")
+ globalStartTime = estimatedGlobalStartTime;
+ isSynchronized = true;
233
}
234
235
else
0 commit comments