Skip to content

Commit 3959551

Browse files
committed
Update synchronizer params to match v1.0
1 parent 30bfc82 commit 3959551

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Source/Processors/RecordNode/Synchronizer.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ void SyncStream::syncWith(const SyncStream* mainStream)
218218
{
219219
actualSampleRate = estimatedActualSampleRate;
220220

221-
if (std::abs(estimatedGlobalStartTime) < 0.1)
221+
if (std::abs(estimatedGlobalStartTime) < 1.0)
222222
{
223223
if (!isSynchronized)
224224

Source/Processors/RecordNode/Synchronizer.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ class SyncStream
137137
const int MAX_PULSES_IN_BUFFER = 10;
138138

139139
/** Threshold for calling pulses synchronous */
140-
const int MAX_TIME_DIFFERENCE_MS = 50;
140+
const int MAX_TIME_DIFFERENCE_MS = 85;
141141

142142
/** Threshold of calling durations equal */
143143
const double MAX_DURATION_DIFFERENCE_MS = 2;

0 commit comments

Comments
 (0)