aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2020-06-30 08:29:24 +0200
committerMatthias P. Braendli <matthias.braendli@mpb.li>2020-06-30 08:29:24 +0200
commited78541c817bfa1cce8adb5bcb48687b4de95dd0 (patch)
tree724032eb83e1403166ef2f65d59e4997e1621e39
parent35867ba39effd3c40b727e90163d406d4abcd2bf (diff)
downloadODR-SourceCompanion-ed78541c817bfa1cce8adb5bcb48687b4de95dd0.tar.gz
ODR-SourceCompanion-ed78541c817bfa1cce8adb5bcb48687b4de95dd0.tar.bz2
ODR-SourceCompanion-ed78541c817bfa1cce8adb5bcb48687b4de95dd0.zip
Fix startup ok message
-rw-r--r--src/AVTInput.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/AVTInput.cpp b/src/AVTInput.cpp
index ab6be76..32f6518 100644
--- a/src/AVTInput.cpp
+++ b/src/AVTInput.cpp
@@ -540,8 +540,7 @@ void AVTInput::_info(_frameType type, size_t size)
}
if (_lastInfoFrameType != _typeCantExtract) {
_infoNbFrame++;
- if (_infoNbFrame == 100 or _infoNbFrame % 100000 == 0)
- {
+ if (_infoNbFrame == 100) {
INFO("Startup ok, %zu 24ms-frames received\n", _infoNbFrame);
}
}