diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2022-10-14 22:10:30 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2022-10-14 22:10:30 +0200 |
commit | 56e046c3390a15aab4baddb502a490bb4505942a (patch) | |
tree | aa6b51bb531dc9ea0b5e2f4f6e34c0b52503349f /src/TimestampDecoder.cpp | |
parent | 388d247d6799bc3ba9fda7b208a620d13db8f8ad (diff) | |
download | dabmod-56e046c3390a15aab4baddb502a490bb4505942a.tar.gz dabmod-56e046c3390a15aab4baddb502a490bb4505942a.tar.bz2 dabmod-56e046c3390a15aab4baddb502a490bb4505942a.zip |
Rework timestamp_refresh
Since we have the 'timestamp in the past' warning refresh requests can be lost
Diffstat (limited to 'src/TimestampDecoder.cpp')
-rw-r--r-- | src/TimestampDecoder.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/TimestampDecoder.cpp b/src/TimestampDecoder.cpp index 3cfa0cc..2133125 100644 --- a/src/TimestampDecoder.cpp +++ b/src/TimestampDecoder.cpp @@ -85,7 +85,7 @@ std::shared_ptr<frame_timestamp> TimestampDecoder::getTimestamp() ts->fct = latestFCT; ts->fp = latestFP; - ts->timestamp_refresh = offset_changed; + ts->offset_changed = offset_changed; offset_changed = false; *ts += timestamp_offset; |