diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2018-01-18 08:39:08 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2018-01-18 08:39:08 +0100 |
commit | 4325e313a85cccfd7be6fff6e14511ffc3e524f0 (patch) | |
tree | 708f735f1abd7e86f61dbb302e915484cea0a2b0 /src/TimestampDecoder.h | |
parent | 0d1c88f1168506b082984445c9d1be2d1f4ac4f3 (diff) | |
download | dabmod-4325e313a85cccfd7be6fff6e14511ffc3e524f0.tar.gz dabmod-4325e313a85cccfd7be6fff6e14511ffc3e524f0.tar.bz2 dabmod-4325e313a85cccfd7be6fff6e14511ffc3e524f0.zip |
Fix frame_timestamp get_real_secs()
Diffstat (limited to 'src/TimestampDecoder.h')
-rw-r--r-- | src/TimestampDecoder.h | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |