diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2019-12-10 15:47:32 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2019-12-10 15:47:32 +0100 |
commit | 66c2acf2606877d00e056c1d1228b32d0a15c5bc (patch) | |
tree | b520bf648e8c511d772266e26bccf527859dbd1a /lib/edi/common.hpp | |
parent | e845a4188b93a31445a780ae11f33286420cb038 (diff) | |
download | dabmux-66c2acf2606877d00e056c1d1228b32d0a15c5bc.tar.gz dabmux-66c2acf2606877d00e056c1d1228b32d0a15c5bc.tar.bz2 dabmux-66c2acf2606877d00e056c1d1228b32d0a15c5bc.zip |
Make EDI input TIST delay configurable
Diffstat (limited to 'lib/edi/common.hpp')
-rw-r--r-- | lib/edi/common.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/edi/common.hpp b/lib/edi/common.hpp index 8252a7a..2a9c683 100644 --- a/lib/edi/common.hpp +++ b/lib/edi/common.hpp @@ -43,6 +43,8 @@ struct frame_timestamp_t { double diff_ms(const frame_timestamp_t& other) const; + frame_timestamp_t& operator+=(const std::chrono::milliseconds& ms); + static frame_timestamp_t from_unix_epoch(std::time_t time, uint32_t tai_utc_offset, uint32_t tsta); }; |