From 4325e313a85cccfd7be6fff6e14511ffc3e524f0 Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Thu, 18 Jan 2018 08:39:08 +0100 Subject: Fix frame_timestamp get_real_secs() --- src/TimestampDecoder.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/TimestampDecoder.h b/src/TimestampDecoder.h index 1a13394..33d9992 100644 --- a/src/TimestampDecoder.h +++ b/src/TimestampDecoder.h @@ -71,7 +71,7 @@ struct frame_timestamp double get_real_secs() const { double t = timestamp_sec; - t += timestamp_pps; + t += pps_offset(); return t; } -- cgit v1.2.3