aboutsummaryrefslogtreecommitdiffstats
path: root/src/EtiReader.h
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2014-01-20 22:09:21 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2014-01-20 22:09:21 +0100
commit64105cd84307c091e3dd2bea2727edf6bdf58ed6 (patch)
tree4722e8e75b9fe859aa6e53697df612a1e05a5693 /src/EtiReader.h
parent3f094996520fbf006a567873bc9da4d1b430345f (diff)
downloaddabmod-64105cd84307c091e3dd2bea2727edf6bdf58ed6.tar.gz
dabmod-64105cd84307c091e3dd2bea2727edf6bdf58ed6.tar.bz2
dabmod-64105cd84307c091e3dd2bea2727edf6bdf58ed6.zip
fix some errors seen by cppcheck
Diffstat (limited to 'src/EtiReader.h')
-rw-r--r--src/EtiReader.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/EtiReader.h b/src/EtiReader.h
index 5833a25..b3c1f94 100644
--- a/src/EtiReader.h
+++ b/src/EtiReader.h
@@ -57,7 +57,7 @@ public:
void calculateTimestamp(struct frame_timestamp& ts)
{
- myTimestampDecoder->calculateTimestamp(ts);
+ myTimestampDecoder.calculateTimestamp(ts);
}
/* Return the frame counter */
@@ -85,7 +85,7 @@ protected:
eti_TIST eti_tist;
FicSource* myFicSource;
std::vector<SubchannelSource*> mySources;
- TimestampDecoder* myTimestampDecoder;
+ TimestampDecoder myTimestampDecoder;
private:
size_t myCurrentFrame;