diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/OutputUHD.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/OutputUHD.cpp b/src/OutputUHD.cpp index 74ff042..3875ddb 100644 --- a/src/OutputUHD.cpp +++ b/src/OutputUHD.cpp @@ -690,9 +690,11 @@ void UHDWorker::handle_frame(const struct UHDWorkerFrameData *frame) if (expected_sec != tx_second or expected_pps != tx_pps) { - etiLog.level(warn) << "OutputUHD: tx time unexpected!" << - " exp " << expected_sec << " " << expected_pps << - " got " << tx_second << " " << tx_pps; + etiLog.level(warn) << "OutputUHD: timestamp irregularity!" << + " Expected " << expected_sec << "+" << + (double)expected_pps/16384000.0 << + " Got " << tx_second << "+" << + (double)tx_pps/16384000.0; timestamp_discontinuity = true; } |