We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30bfc82 commit 3959551Copy full SHA for 3959551
Source/Processors/RecordNode/Synchronizer.cpp
@@ -218,7 +218,7 @@ void SyncStream::syncWith(const SyncStream* mainStream)
218
{
219
actualSampleRate = estimatedActualSampleRate;
220
221
- if (std::abs(estimatedGlobalStartTime) < 0.1)
+ if (std::abs(estimatedGlobalStartTime) < 1.0)
222
223
if (!isSynchronized)
224
Source/Processors/RecordNode/Synchronizer.h
@@ -137,7 +137,7 @@ class SyncStream
137
const int MAX_PULSES_IN_BUFFER = 10;
138
139
/** Threshold for calling pulses synchronous */
140
- const int MAX_TIME_DIFFERENCE_MS = 50;
+ const int MAX_TIME_DIFFERENCE_MS = 85;
141
142
/** Threshold of calling durations equal */
143
const double MAX_DURATION_DIFFERENCE_MS = 2;
0 commit comments