diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2017-01-20 12:13:43 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2017-01-20 12:13:43 +0100 |
commit | ceb14883102e52daff611077adfe1b63837c3a76 (patch) | |
tree | 0a37d9d08065406fb83e401e68badb6a9b367edd /src/TimestampDecoder.h | |
parent | 01c0f656cafd657abc4c9d538101cf1170619951 (diff) | |
download | dabmod-ceb14883102e52daff611077adfe1b63837c3a76.tar.gz dabmod-ceb14883102e52daff611077adfe1b63837c3a76.tar.bz2 dabmod-ceb14883102e52daff611077adfe1b63837c3a76.zip |
EDI input: decode timestamps
Diffstat (limited to 'src/TimestampDecoder.h')
-rw-r--r-- | src/TimestampDecoder.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/TimestampDecoder.h b/src/TimestampDecoder.h index a822ee5..f2299f2 100644 --- a/src/TimestampDecoder.h +++ b/src/TimestampDecoder.h @@ -121,7 +121,7 @@ class TimestampDecoder : public RemoteControllable time_secs = 0; latestFCT = 0; enableDecode = false; - full_timestamp_received_mnsc = false; + full_timestamp_received = false; gmtime_r(0, &temp_time); offset_changed = false; @@ -193,8 +193,8 @@ class TimestampDecoder : public RemoteControllable */ bool enableDecode; - /* Disable timstamps until full time has been received in mnsc */ - bool full_timestamp_received_mnsc; + /* Disable timstamps until full time has been received */ + bool full_timestamp_received; /* when pipelining, we must shift the calculated timestamps * through this queue. Otherwise, it would not be possible to |