aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2016-10-24 20:29:02 +0200
committerMatthias P. Braendli <matthias.braendli@mpb.li>2016-10-24 20:29:02 +0200
commit5297666e1352be672c7dc6fe3af44950a52428da (patch)
treea39b42f48b5ae7add2b363defd6a79c2d2706e43 /src
parent024377c87f4b305332702a4715532edec03b1e2a (diff)
downloaddabmod-5297666e1352be672c7dc6fe3af44950a52428da.tar.gz
dabmod-5297666e1352be672c7dc6fe3af44950a52428da.tar.bz2
dabmod-5297666e1352be672c7dc6fe3af44950a52428da.zip
Remove useless protected: in EtiReader
Diffstat (limited to 'src')
-rw-r--r--src/EtiReader.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/EtiReader.h b/src/EtiReader.h
index 33c4230..a8399d2 100644
--- a/src/EtiReader.h
+++ b/src/EtiReader.h
@@ -65,7 +65,7 @@ public:
/* Returns true if we have valid time stamps in the ETI*/
bool sourceContainsTimestamp();
-protected:
+private:
/* Transform the ETI TIST to a PPS offset in units of 1/16384000 s */
uint32_t getPPSOffset();
@@ -83,7 +83,6 @@ protected:
std::vector<std::shared_ptr<SubchannelSource> > mySources;
TimestampDecoder myTimestampDecoder;
-private:
size_t myCurrentFrame;
bool eti_fc_valid;
};