diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2018-03-06 17:52:07 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2018-03-06 17:52:07 +0100 |
commit | 5bea9241b246cfc4b9abef3d265a96d52a377c37 (patch) | |
tree | aab1fcb6b9a707c27283cc4f961e84244d1fe5bb /src/EtiReader.h | |
parent | 0bdd2960707a8abb5d9e435d1313aec4cf264ab1 (diff) | |
download | dabmod-5bea9241b246cfc4b9abef3d265a96d52a377c37.tar.gz dabmod-5bea9241b246cfc4b9abef3d265a96d52a377c37.tar.bz2 dabmod-5bea9241b246cfc4b9abef3d265a96d52a377c37.zip |
Verify ETI FCT continuity before modulator
Diffstat (limited to 'src/EtiReader.h')
-rw-r--r-- | src/EtiReader.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/EtiReader.h b/src/EtiReader.h index 4db5004..dfbaaa9 100644 --- a/src/EtiReader.h +++ b/src/EtiReader.h @@ -59,6 +59,9 @@ public: /* Get the current Frame Phase */ virtual unsigned getFp() = 0; + /* Get the current Frame Count */ + virtual unsigned getFct() = 0; + /* Returns true if we have valid time stamps in the ETI*/ virtual bool sourceContainsTimestamp() = 0; @@ -80,6 +83,7 @@ public: virtual unsigned getMode(); virtual unsigned getFp(); + virtual unsigned getFct(); /* Read ETI data from dataIn. Returns the number of bytes * read from the buffer. @@ -121,6 +125,7 @@ public: virtual unsigned getMode(); virtual unsigned getFp(); + virtual unsigned getFct(); virtual bool sourceContainsTimestamp(); virtual const std::vector<std::shared_ptr<SubchannelSource> > getSubchannels() const; |