aboutsummaryrefslogtreecommitdiffstats
path: root/lib/edi/common.hpp
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2019-09-05 17:12:04 +0200
committerMatthias P. Braendli <matthias.braendli@mpb.li>2019-09-05 17:12:04 +0200
commit4336f2bdfc36372f33a51bebbebc1f751a78cf53 (patch)
tree66f270c988e321b7d354c905375608b1faf61555 /lib/edi/common.hpp
parentb536ace6b4f48f9f9a45b66881c6e2e024ed7d93 (diff)
downloaddabmod-4336f2bdfc36372f33a51bebbebc1f751a78cf53.tar.gz
dabmod-4336f2bdfc36372f33a51bebbebc1f751a78cf53.tar.bz2
dabmod-4336f2bdfc36372f33a51bebbebc1f751a78cf53.zip
lib: update from common code cdf104a and 2847f4d
Diffstat (limited to 'lib/edi/common.hpp')
-rw-r--r--lib/edi/common.hpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/edi/common.hpp b/lib/edi/common.hpp
index 887bc3d..1aa2cb6 100644
--- a/lib/edi/common.hpp
+++ b/lib/edi/common.hpp
@@ -38,10 +38,15 @@ struct frame_timestamp_t {
bool valid() const;
std::string to_string() const;
- time_t to_unix_epoch() const;
+ std::time_t to_unix_epoch() const;
std::chrono::system_clock::time_point to_system_clock() const;
+
+ double diff_ms(const frame_timestamp_t& other) const;
+
+ static frame_timestamp_t from_unix_epoch(std::time_t time, uint32_t tai_utc_offset, uint32_t tsta);
};
+
struct decode_state_t {
decode_state_t(bool _complete, size_t _num_bytes_consumed) :
complete(_complete), num_bytes_consumed(_num_bytes_consumed) {}