Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion inferno_aoip/src/media_clock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ impl MediaClock {
let new_ovl_time = overlay.now_ns();
let diff = (new_ovl_time as ClockDiff).wrapping_sub(cur_ovl_time as ClockDiff);
/* if diff.abs() > 10_000_000 {
error!("clock is trying to jump dangerously by {diff} ns, ignoring update");
error!("clock is trying to jump dangerously by {diff} ns, ignoring update. This may indicate NTP collision or insufficient clock filtering.");
return;
} */
} */
Expand Down